Home
last modified time | relevance | path

Searched refs:IntType (Results 1 – 3 of 3) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/bfs/
H A DUtility.h31 template<typename IntType, typename RoundType>
32 inline IntType
33 round_up(const IntType& value, const RoundType& to) in round_up()
35 return (value + (to - 1)) & ~((IntType)to - 1); in round_up()
41 template<typename IntType, typename RoundType>
42 inline IntType
43 round_down(const IntType& value, const RoundType& to) in round_down()
45 return value & ~((IntType)to - 1); in round_down()
/haiku/headers/os/drivers/pcmcia/
H A Dcs.h109 u_int IntType; member
167 u_int IntType; member
/haiku/src/bin/pcmcia-cs/
H A Dcardctl.c174 switch (config->IntType) { in print_config()
231 if (config->IntType == INT_CARDBUS) { in print_config()
345 (config.IntType == INT_CARDBUS) && config.ConfigBase) in print_ident()