Searched defs:isUInt (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Support/
H A DMathExtras.h65 /// isUInt - Checks if an unsigned integer fits into the given bit width.
67 inline bool isUInt(uint64_t x) { function in namespace:llvm
72 inline bool isUInt<8>(uint64_t x) { function in namespace:llvm
76 inline bool isUInt<16>(uint64_t x) { function in namespace:llvm
80 inline bool isUInt<32>(uint64_t x) { function in namespace:llvm
88 return isUInt<N+S>(x) && (x % (1<<S) == 0);

Completed in 56 milliseconds