HomeSort by relevance Sort by last modified time
    Searched defs:isUInt (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Support/
MathExtras.h 286 /// isUInt - Checks if an unsigned integer fits into the given bit width.
288 inline bool isUInt(uint64_t x) {
293 inline bool isUInt<8>(uint64_t x) {
297 inline bool isUInt<16>(uint64_t x) {
301 inline bool isUInt<32>(uint64_t x) {
309 return isUInt<N+S>(x) && (x % (1<<S) == 0);
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 763 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
766 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
945 return isUInt()
    [all...]

Completed in 5005 milliseconds