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

/external/llvm/include/llvm/Support/
H A DMathExtras.h296 /// isUInt - Checks if an unsigned integer fits into the given bit width.
298 inline bool isUInt(uint64_t x) { function in namespace:llvm
303 inline bool isUInt<8>(uint64_t x) { function in namespace:llvm
307 inline bool isUInt<16>(uint64_t x) { function in namespace:llvm
311 inline bool isUInt<32>(uint64_t x) { function in namespace:llvm
319 return isUInt<N+S>(x) && (x % (1<<S) == 0);
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp769 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
772 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
951 return isUInt()
1420 Value::isUInt() const function in class:Json::Value
1493 return isInt() || isUInt();
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp763 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
766 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
945 return isUInt()
1414 Value::isUInt() const function in class:Json::Value
1487 return isInt() || isUInt();
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp759 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
762 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
941 return isUInt()
1410 Value::isUInt() const function in class:Json::Value
1483 return isInt() || isUInt();

Completed in 208 milliseconds