Home
last modified time | relevance | path

Searched refs:UINT8_MAX (Results 1 – 25 of 102) sorted by relevance

12345

/third_party/grpc/src/core/lib/iomgr/
Derror.cc145 while (slot != UINT8_MAX) { in unref_errs()
149 GPR_ASSERT(err->last_err == slot ? lerr->next == UINT8_MAX in unref_errs()
150 : lerr->next != UINT8_MAX); in unref_errs()
158 if (slot != UINT8_MAX) { in unref_strs()
198 UINT8_MAX - 1, (3 * (*err)->arena_capacity / 2)); in get_placement()
200 return UINT8_MAX; in get_placement()
223 if (slot == UINT8_MAX) { in internal_set_int()
225 if (slot == UINT8_MAX) { in internal_set_int()
238 if (slot == UINT8_MAX) { in internal_set_str()
240 if (slot == UINT8_MAX) { in internal_set_str()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/StatisticsFunctions/
Darm_min_q7.c138 if (totalSize <= UINT8_MAX) in arm_min_q7()
151 while (totalSize >= UINT8_MAX) in arm_min_q7()
155 arm_small_blk_min_q7(curSrc, UINT8_MAX, pResult, pIndex); in arm_min_q7()
166 pSrc += UINT8_MAX; in arm_min_q7()
167 totalSize -= UINT8_MAX; in arm_min_q7()
179 *pIndex = curBlkIdx * UINT8_MAX + curBlkPos; in arm_min_q7()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/Support/
DDataTypes.h85 #define UINT8_MAX 255 macro
121 #ifndef UINT8_MAX
122 #define UINT8_MAX 255 macro
/third_party/musl/ndk_musl_include/
Dstdint.h48 #define UINT8_MAX (0xff) macro
69 #define UINT_FAST8_MAX UINT8_MAX
72 #define UINT_LEAST8_MAX UINT8_MAX
/third_party/musl/porting/liteos_m/kernel/include/
Dstdint.h48 #define UINT8_MAX (0xff) macro
69 #define UINT_FAST8_MAX UINT8_MAX
72 #define UINT_LEAST8_MAX UINT8_MAX
/third_party/musl/include/
Dstdint.h48 #define UINT8_MAX (0xff) macro
69 #define UINT_FAST8_MAX UINT8_MAX
72 #define UINT_LEAST8_MAX UINT8_MAX
/third_party/musl/porting/uniproton/kernel/include/
Dstdint.h48 #define UINT8_MAX (0xff) macro
69 #define UINT_FAST8_MAX UINT8_MAX
72 #define UINT_LEAST8_MAX UINT8_MAX
/third_party/musl/porting/liteos_a/kernel/include/
Dstdint.h48 #define UINT8_MAX (0xff) macro
69 #define UINT_FAST8_MAX UINT8_MAX
72 #define UINT_LEAST8_MAX UINT8_MAX
/third_party/musl/porting/liteos_m/user/include/
Dstdint.h48 #define UINT8_MAX (0xff) macro
69 #define UINT_FAST8_MAX UINT8_MAX
72 #define UINT_LEAST8_MAX UINT8_MAX
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackWriter.cpp66 if (u <= UINT8_MAX) { in write()
106 else if (!Compatible && Size <= UINT8_MAX) { in write()
126 if (Size <= UINT8_MAX) { in write()
193 if (Size <= UINT8_MAX) { in writeExt()
/third_party/libuv/include/uv/
Dstdint-msvc2008.h140 #define UINT8_MAX _UI8_MAX macro
154 #define UINT_LEAST8_MAX UINT8_MAX
168 #define UINT_FAST8_MAX UINT8_MAX
/third_party/ffmpeg/libavfilter/
Dvf_colorlevels.c215 int imin = lrint(r->in_min * UINT8_MAX); in filter_frame()
216 int imax = lrint(r->in_max * UINT8_MAX); in filter_frame()
217 int omin = lrint(r->out_min * UINT8_MAX); in filter_frame()
218 int omax = lrint(r->out_max * UINT8_MAX); in filter_frame()
222 imin = UINT8_MAX; in filter_frame()
Dvf_readvitc.c162 s->threshold_black = s->thr_b * UINT8_MAX; in init()
163 s->threshold_white = s->thr_w * UINT8_MAX; in init()
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Dumachine.h174 #ifndef UINT8_MAX
176 # define UINT8_MAX ((uint8_t)(255U)) macro
/third_party/icu/icu4c/source/common/unicode/
Dumachine.h211 #ifndef UINT8_MAX
213 # define UINT8_MAX ((uint8_t)(255U)) macro
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dumachine.h211 #ifndef UINT8_MAX
213 # define UINT8_MAX ((uint8_t)(255U)) macro
/third_party/node/deps/icu-small/source/common/unicode/
Dumachine.h211 #ifndef UINT8_MAX
213 # define UINT8_MAX ((uint8_t)(255U)) macro
/third_party/grpc/src/core/lib/transport/
Derror_utils.cc38 while (slot != UINT8_MAX) { in recursively_find_error_with_field()
145 while (slot != UINT8_MAX) { in grpc_error_has_clear_grpc_status()
/third_party/iptables/extensions/
Dlibipt_icmp.c129 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX)) in parse_icmp()
134 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX)) in parse_icmp()
Dlibip6t_icmp6.c109 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX)) in parse_icmpv6()
114 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX)) in parse_icmpv6()
/third_party/flutter/engine/flutter/flow/ohos_layers/
Dtexture_layer.h34 uint8_t opacity_ { UINT8_MAX };
/third_party/mesa3d/src/util/tests/
Dint_min_max.cpp68 EXPECT_EQ(UINT8_MAX, u_uintN_max(8)); in TEST()
/third_party/openssl/include/internal/
Dnumbers.h42 # define UINT8_MAX __MAXUINT__(uint8_t) macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
DPackedVersion.cpp48 if (Num > UINT8_MAX) in parse32()
/third_party/libphonenumber/cpp/src/phonenumbers/base/
Dbasictypes.h33 const uint8 kuint8max = UINT8_MAX;

12345