/external/valgrind/none/tests/s390x/ |
D | comp-1.c | 89 SCOMP_REG_REG(insn, INT16_MIN, INT16_MIN); \ 90 SCOMP_REG_REG(insn, INT16_MIN, INT16_MAX); \ 91 SCOMP_REG_REG(insn, INT16_MAX, INT16_MIN); \ 119 SCOMP_REG_MEM(insn, INT16_MIN, INT16_MIN, op2_t); \ 120 SCOMP_REG_MEM(insn, INT16_MIN, INT16_MAX, op2_t); \ 121 SCOMP_REG_MEM(insn, INT16_MAX, INT16_MIN, op2_t); \ 149 SCOMP_REG_IMM(insn, INT16_MIN, INT16_MIN); \ 150 SCOMP_REG_IMM(insn, INT16_MIN, INT16_MAX); \ 151 SCOMP_REG_IMM(insn, INT16_MAX, INT16_MIN); \
|
/external/llvm/include/llvm/Support/ |
D | DataTypes.h | 88 #define INT16_MIN -32768 macro 127 #ifndef INT16_MIN 128 # define INT16_MIN -32768 macro
|
/external/opencv3/3rdparty/include/ |
D | msc_stdint.h | 105 #define INT16_MIN _I16_MIN macro 119 #define INT_LEAST16_MIN INT16_MIN 133 #define INT_FAST16_MIN INT16_MIN
|
/external/libvncserver/compat/msvc/ |
D | stdint.h | 134 #define INT16_MIN ((int16_t)_I16_MIN) macro 148 #define INT_LEAST16_MIN INT16_MIN 162 #define INT_FAST16_MIN INT16_MIN
|
/external/jemalloc/include/msvc_compat/C99/ |
D | stdint.h | 134 #define INT16_MIN ((int16_t)_I16_MIN) macro 148 #define INT_LEAST16_MIN INT16_MIN 162 #define INT_FAST16_MIN INT16_MIN
|
/external/mesa3d/include/c99/ |
D | stdint.h | 134 #define INT16_MIN ((int16_t)_I16_MIN) macro 148 #define INT_LEAST16_MIN INT16_MIN 162 #define INT_FAST16_MIN INT16_MIN
|
/external/icu/icu4c/source/common/unicode/ |
D | umachine.h | 161 #ifndef INT16_MIN 163 # define INT16_MIN ((int16_t)(-32767-1)) macro
|
/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 29 tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX); in vpx_quantize_dc() 81 INT16_MIN, INT16_MAX); in vpx_quantize_dc_32x32() 158 int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX); in vpx_quantize_b_c() 267 abs_coeff = clamp(abs_coeff, INT16_MIN, INT16_MAX); in vpx_quantize_b_32x32_c()
|
D | inv_txfm.h | 32 assert(INT16_MIN <= input); in check_range()
|
/external/bison/darwin-lib/ |
D | stdint.h | 360 #undef INT16_MIN 363 #define INT16_MIN (~ INT16_MAX) macro 401 #define INT_LEAST16_MIN INT16_MIN
|
/external/bison/lib/ |
D | stdint.in.h | 359 #undef INT16_MIN 362 #define INT16_MIN (~ INT16_MAX) 400 #define INT_LEAST16_MIN INT16_MIN
|
/external/libvpx/libvpx/vpx/ |
D | vpx_integer.h | 43 #define INT16_MIN _I16_MIN macro
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 144 EXPECT_EQ(Full.getSignedMin(), APInt(16, (uint64_t)INT16_MIN)); in TEST_F() 147 EXPECT_EQ(Wrap.getSignedMin(), APInt(16, (uint64_t)INT16_MIN)); in TEST_F() 208 EXPECT_EQ(SFull, ConstantRange(APInt(20, (uint64_t)INT16_MIN, true), in TEST_F() 215 EXPECT_EQ(SWrap, ConstantRange(APInt(20, (uint64_t)INT16_MIN, true), in TEST_F() 446 APInt(16, (uint64_t)INT16_MIN))); in TEST_F() 449 APInt(16, (uint64_t)INT16_MIN))); in TEST_F()
|
/external/clang/lib/Headers/ |
D | stdint.h | 614 #define INT16_MIN (-INT16_C(32767)-1) macro 616 # define __INT_LEAST16_MIN INT16_MIN 619 # define __INT_LEAST8_MIN INT16_MIN
|
/external/clang/test/Preprocessor/ |
D | stdint.c | 1437 INT16_MIN_ INT16_MIN
|
/external/bison/src/ |
D | system.h | 27 # undef INT16_MIN
|
/external/tpm2/ |
D | CryptoEngine.h | 205 #define CRYPT_RESULT_MIN INT16_MIN
|
/external/libcxx/include/ |
D | cstdint | 20 INT16_MIN
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFI386.h | 168 assert(static_cast<int32_t>(RE.SectionID) >= INT16_MIN && in resolveRelocation()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 50 int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX); in vp9_quantize_fp_c() 137 abs_coeff = clamp(abs_coeff, INT16_MIN, INT16_MAX); in vp9_quantize_fp_32x32_c()
|
/external/libcxx/test/std/input.output/file.streams/c.files/ |
D | cinttypes.pass.cpp | 19 #ifndef INT16_MIN 20 #error INT16_MIN not defined
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | stdint_h.pass.cpp | 173 static_assert(INT16_MIN == -32768, "INT16_MIN == -32768"); in main()
|
/external/libcxx/test/std/language.support/cstdint/cstdint.syn/ |
D | cstdint.pass.cpp | 174 static_assert(INT16_MIN == -32768, "INT16_MIN == -32768"); in main()
|
/external/android-clat/ |
D | config.c | 86 if(conf_int > INT16_MAX || conf_int < INT16_MIN) { in config_item_int16_t()
|
/external/bison/examples/calc++/ |
D | calc++-scanner.cc | 86 #ifndef INT16_MIN 87 #define INT16_MIN (-32767-1) macro
|