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 287 /// isUInt - Checks if an unsigned integer fits into the given bit width.
289 inline bool isUInt(uint64_t x) {
294 inline bool isUInt<8>(uint64_t x) {
298 inline bool isUInt<16>(uint64_t x) {
302 inline bool isUInt<32>(uint64_t x) {
310 return isUInt<N+S>(x) && (x % (1<<S) == 0);
  /external/jsoncpp/src/lib_json/
json_value.cpp 578 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
581 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
734 return isUInt() ||
1111 bool Value::isUInt() const {
    [all...]

Completed in 135 milliseconds