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

  /external/llvm/include/llvm/Support/
MathExtras.h 296 /// isUInt - Checks if an unsigned integer fits into the given bit width.
298 inline bool isUInt(uint64_t x) {
303 inline bool isUInt<8>(uint64_t x) {
307 inline bool isUInt<16>(uint64_t x) {
311 inline bool isUInt<32>(uint64_t x) {
319 return isUInt<N+S>(x) && (x % (1<<S) == 0);
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 769 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
772 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
951 return isUInt()
    [all...]
  /external/jsoncpp/chromium-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...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 759 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
762 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
941 return isUInt()
    [all...]

Completed in 290 milliseconds