Lines Matching defs:high
3108 static bool upb_isbetween(char c, char low, char high) {
3109 return c >= low && c <= high;
3588 static bool between(int32_t x, int32_t low, int32_t high) {
3589 return x >= low && x <= high;
8921 uint32_t high = 0;
8926 high = (b & 0x7fU) >> 4; if (!(b & 0x80)) goto done;
8927 b = *(p++); high |= (b & 0x7fU) << 3; if (!(b & 0x80)) goto done;
8928 b = *(p++); high |= (b & 0x7fU) << 10; if (!(b & 0x80)) goto done;
8929 b = *(p++); high |= (b & 0x7fU) << 17; if (!(b & 0x80)) goto done;
8930 b = *(p++); high |= (b & 0x7fU) << 24; if (!(b & 0x80)) goto done;
8931 b = *(p++); high |= (b & 0x7fU) << 31; if (!(b & 0x80)) goto done;
8935 r.val = ((uint64_t)high << 32) | low;
8976 ** - handling of unicode escape sequences (including high surrogate pairs).
9820 /* TODO(haberman): Handle high surrogates: if codepoint is a high surrogate