Searched refs:UINT16_MAX (Results 1 - 25 of 77) sorted by relevance

1234

/external/llvm/include/llvm/Support/
H A DDataTypes.h89 #define UINT16_MAX 65535 macro
130 #ifndef UINT16_MAX
131 # define UINT16_MAX 65535 macro
/external/bison/lib/
H A Dbitrotate.h95 return ((x << n) | (x >> (16 - n))) & UINT16_MAX;
106 return ((x >> n) | (x << (16 - n))) & UINT16_MAX;
H A Dinttypes.in.h125 # ifdef UINT16_MAX
131 # ifdef UINT16_MAX
137 # ifdef UINT16_MAX
143 # ifdef UINT16_MAX
630 # ifdef UINT16_MAX
636 # ifdef UINT16_MAX
642 # ifdef UINT16_MAX
H A Dstdint.in.h361 #undef UINT16_MAX
364 #define UINT16_MAX 65535
402 #define UINT_LEAST16_MAX UINT16_MAX
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dumachine.h153 #ifndef UINT16_MAX
155 # define UINT16_MAX ((uint16_t)(65535U)) macro
/external/icu/icu4c/source/common/unicode/
H A Dumachine.h153 #ifndef UINT16_MAX
155 # define UINT16_MAX ((uint16_t)(65535U)) macro
/external/chromium_org/third_party/libusb/src/msvc/
H A Dstdint.h138 #define UINT16_MAX 65535 macro
154 #define UINT_LEAST16_MAX UINT16_MAX
170 #define UINT_FAST16_MAX UINT16_MAX
/external/chromium_org/third_party/mesa/src/include/c99/
H A Dstdint.h141 #define UINT16_MAX _UI16_MAX macro
155 #define UINT_LEAST16_MAX UINT16_MAX
169 #define UINT_FAST16_MAX UINT16_MAX
/external/jemalloc/include/msvc_compat/C99/
H A Dstdint.h141 #define UINT16_MAX _UI16_MAX macro
155 #define UINT_LEAST16_MAX UINT16_MAX
169 #define UINT_FAST16_MAX UINT16_MAX
/external/mesa3d/include/c99/
H A Dstdint.h141 #define UINT16_MAX _UI16_MAX macro
155 #define UINT_LEAST16_MAX UINT16_MAX
169 #define UINT_FAST16_MAX UINT16_MAX
/external/iptables/extensions/
H A Dlibxt_TCPMSS.c42 .min = 0, .max = UINT16_MAX - sizeof(struct iphdr),
50 .min = 0, .max = UINT16_MAX - SIZEOF_STRUCT_IP6_HDR,
H A Dlibip6t_MASQUERADE.c48 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX))
58 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX))
H A Dlibip6t_REDIRECT.c47 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX) &&
58 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX) &&
H A Dlibipt_MASQUERADE.c49 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX))
59 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX))
H A Dlibipt_REDIRECT.c48 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX) &&
59 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX) &&
/external/llvm/include/llvm/MC/
H A DMCSchedule.h102 static const unsigned short InvalidNumMicroOps = UINT16_MAX;
103 static const unsigned short VariantNumMicroOps = UINT16_MAX - 1;
/external/clang/test/Preprocessor/
H A Dstdint.c1331 UINT16_MAX_ UINT16_MAX
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dbasictypes.h45 const uint16 kuint16max = UINT16_MAX;
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dbasictypes.h34 const uint16 kuint16max = UINT16_MAX;
/external/chromium_org/third_party/smhasher/src/
H A Dpstdint.h330 #ifndef UINT16_MAX
331 # define UINT16_MAX 0xffff macro
334 #if (UINT_MAX == UINT16_MAX) || defined (S_SPLINT_S)
340 #elif (USHRT_MAX == UINT16_MAX)
594 # define UINT_LEAST16_MAX UINT16_MAX
/external/bison/darwin-lib/
H A Dstdint.h362 #undef UINT16_MAX macro
365 #define UINT16_MAX 65535 macro
403 #define UINT_LEAST16_MAX UINT16_MAX
/external/bison/src/
H A Dsystem.h33 # undef UINT16_MAX macro
/external/chromium_org/apps/
H A Dsaved_devices_service.cc101 vendor_id < 0 || vendor_id > UINT16_MAX) {
107 product_id < 0 || product_id > UINT16_MAX) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-events-flex.h82 #ifndef UINT16_MAX
83 #define UINT16_MAX (65535U) macro
/external/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h106 assert(id < UINT16_MAX && "PSetID overflow.");
115 // If PSetID is invalid, return UINT16_MAX to give it lowest priority.
116 unsigned getPSetOrMax() const { return (PSetID - 1) & UINT16_MAX; }

Completed in 789 milliseconds

1234