Searched refs:SCHAR_MIN (Results 1 – 24 of 24) sorted by relevance
/external/clang/lib/Headers/ |
D | limits.h | 42 #undef SCHAR_MIN 65 #define SCHAR_MIN (-__SCHAR_MAX__-1) macro 85 #define CHAR_MIN SCHAR_MIN
|
/external/clang/test/Headers/ |
D | limits.cpp | 8 _Static_assert(SCHAR_MAX == -(SCHAR_MIN+1), ""); 18 _Static_assert(SCHAR_MIN == -SCHAR_MAX-1, "");
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 18 #ifndef SCHAR_MIN 19 #error SCHAR_MIN not defined
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 18 #ifndef SCHAR_MIN 19 #error SCHAR_MIN not defined
|
/external/libcxx/include/ |
D | climits | 20 SCHAR_MIN
|
D | module.modulemap | 114 SCHAR_MIN, SCHAR_MAX, UCHAR_MAX,
|
/external/opencv3/modules/hal/include/opencv2/hal/ |
D | defs.h | 635 …v) { return (schar)((unsigned)(v-SCHAR_MIN) <= (unsigned)UCHAR_MAX ? v : v > 0 ? SCHAR_MA… 640 … { return (schar)((uint64)((int64)v-SCHAR_MIN) <= (uint64)UCHAR_MAX ? v : v > 0 ? SCHAR_MAX…
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | lowest.pass.cpp | 38 test<signed char>(SCHAR_MIN); in main()
|
D | min.pass.cpp | 38 test<signed char>(SCHAR_MIN); in main()
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | limits.hpp | 69 __device__ __forceinline__ static signed char min() { return SCHAR_MIN; } in min()
|
/external/safe-iop/src/ |
D | safe_iop.c | 184 a=SCHAR_MIN; b=-1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8() 188 a=SCHAR_MIN; b=SCHAR_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 189 a=SCHAR_MIN+1; b=-1; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 378 a=SCHAR_MIN; b=1; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_s8() 379 a=SCHAR_MIN; b=SCHAR_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_s8() 380 a=SCHAR_MIN/2; b=SCHAR_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_s8() 556 a=SCHAR_MIN; b=-1; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_s8() 557 a=SCHAR_MIN; b=-2; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_s8() 564 a=SCHAR_MIN; b=0; EXPECT_TRUE(safe_mul(NULL, a, b)); in T_mul_s8() 566 a=0; b=SCHAR_MIN; EXPECT_TRUE(safe_mul(NULL, a, b)); in T_mul_s8() [all …]
|
/external/opencv3/modules/cudev/include/opencv2/cudev/util/ |
D | limits.hpp | 69 __device__ __forceinline__ static schar min() { return SCHAR_MIN; } in min()
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathLimits.h | 146 static signed char min() {return SCHAR_MIN;}
|
/external/safe-iop/include/ |
D | safe_iop.h | 594 MAKE_SSUB(s, 8, int8_t, SCHAR_MIN, SCHAR_MAX) 611 MAKE_SMUL(s, 8, int8_t, SCHAR_MAX, SCHAR_MIN) 628 MAKE_SDIV(s, 8, int8_t, SCHAR_MIN) 645 MAKE_SMOD(s, 8, int8_t, SCHAR_MIN)
|
/external/bison/darwin-lib/ |
D | stdint.h | 433 #define INT_FAST8_MIN SCHAR_MIN
|
/external/bison/lib/ |
D | stdint.in.h | 432 #define INT_FAST8_MIN SCHAR_MIN
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | morph.cl | 62 #define MIN_VAL SCHAR_MIN
|
D | filterSmall.cl | 232 #define MIN_VAL SCHAR_MIN
|
/external/opencv3/modules/core/src/opencl/ |
D | minmaxloc.cl | 20 #define MIN_VAL SCHAR_MIN
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | NCVPixelOperations.hpp | 64 template<> inline __host__ __device__ Ncv8s _pixMinVal<Ncv8s>() {return SCHAR_MIN;} in _pixMinVal()
|
/external/mdnsresponder/mDNSShared/ |
D | CommonServices.h | 748 #define INT8_MIN SCHAR_MIN
|
/external/opencv3/modules/core/src/ |
D | mathfuncs.cpp | 1543 static const type min_allowable = SCHAR_MIN;
|
D | arithm.cpp | 1797 minval >= (int)SCHAR_MIN && maxval <= (int)SCHAR_MAX ? CV_8S : in actualScalarDepth()
|
/external/opencv3/modules/ts/src/ |
D | ts_func.cpp | 91 double val = depth == CV_8U ? 0 : depth == CV_8S ? SCHAR_MIN : depth == CV_16U ? 0 : in getMinVal()
|