Lines Matching refs:bytes

3206 static SLJIT_INLINE void add_prefix_byte(pcre_uint8 byte, pcre_uint8 *bytes)  in add_prefix_byte()  argument
3208 pcre_uint8 len = bytes[0]; in add_prefix_byte()
3216 bytes[0] = 1; in add_prefix_byte()
3217 bytes[1] = byte; in add_prefix_byte()
3222 if (bytes[i] == byte) in add_prefix_byte()
3227 bytes[0] = 255; in add_prefix_byte()
3232 bytes[len] = byte; in add_prefix_byte()
3233 bytes[0] = len; in add_prefix_byte()
3236 …(compiler_common *common, pcre_uchar *cc, pcre_uint32 *chars, pcre_uint8 *bytes, int max_chars, pc… in scan_prefix() argument
3323 max_chars = scan_prefix(common, cc + len, chars, bytes, max_chars, rec_count); in scan_prefix()
3346 … max_chars = scan_prefix(common, alternative + 1 + LINK_SIZE, chars, bytes, max_chars, rec_count); in scan_prefix()
3472 bytes[0] = 255; in scan_prefix()
3478 bytes += MAX_N_BYTES; in scan_prefix()
3522 add_prefix_byte((pcre_uint8)chr, bytes); in scan_prefix()
3527 add_prefix_byte((pcre_uint8)*oc, bytes); in scan_prefix()
3554 bytes += MAX_N_BYTES; in scan_prefix()
3579 pcre_uint8 bytes[MAX_N_CHARS * MAX_N_BYTES]; in fast_forward_first_n_chars() local
3594 bytes[i * MAX_N_BYTES] = 0; in fast_forward_first_n_chars()
3598 max = scan_prefix(common, common->start, chars, bytes, MAX_N_CHARS, &rec_count); in fast_forward_first_n_chars()
3619 if (in_range && (i - from) > range_len && (bytes[(i - 1) * MAX_N_BYTES] <= 4)) in fast_forward_first_n_chars()
3625 if (i < max && bytes[i * MAX_N_BYTES] < 255) in fast_forward_first_n_chars()
3646 byte_set = bytes + ((range_right - i) * MAX_N_BYTES); in fast_forward_first_n_chars()