Lines Matching defs:max
1944 /* The max key in each bucket. */
1945 uintptr_t max[UPB_MAXARRSIZE + 1] = {0};
1956 max[bucket] = UPB_MAX(max[bucket], key);
1979 size_t arr_size = max[size_lg2] + 1; /* +1 so arr[max] will fit. */
4025 /* Calculate field size: the max of all field sizes. */
7952 bool upb_pbdecoder_setmaxnesting(upb_pbdecoder *d, size_t max) {
7955 if (max < (size_t)(d->top - d->stack)) {
7960 if (max > d->stack_size) {
7963 size_t new_size = stacksize(d, max);
7971 new_size = callstacksize(d, max);
7978 d->stack_size = max;
7981 d->limit = d->stack + max - 1;
8005 ** 3. buffer directly into the output buffer, allocating a max length
9989 #define CASE(capitaltype, smalltype, ctype, min, max) \
9991 if (modf(val, &dummy) != 0 || val > max || val < min) { \