Searched refs:IntType (Results 1 – 3 of 3) sorted by relevance
31 template<typename IntType, typename RoundType>32 inline IntType33 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 IntType43 round_down(const IntType& value, const RoundType& to) in round_down()45 return value & ~((IntType)to - 1); in round_down()
109 u_int IntType; member167 u_int IntType; member
174 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()