OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
769
JSON_ASSERT_MESSAGE(
isUInt
(), "LargestInt out of UInt range");
772
JSON_ASSERT_MESSAGE(
isUInt
(), "LargestUInt out of UInt range");
951
return
isUInt
()
[
all
...]
Completed in 426 milliseconds