Searched refs:start_bits (Results 1 – 8 of 8) sorted by relevance
/third_party/rust/crates/unicode-ident/generate/src/ |
D | main.rs | 64 let mut start_bits = empty_chunk; in main() localVariable 67 let this_start = &mut start_bits[j as usize]; in main() 79 index_start.push(new_chunk(start_bits)); in main()
|
/third_party/mbedtls/library/ |
D | ssl_msg.c | 2923 unsigned int start_bits, end_bits; in ssl_bitmask_set() local 2925 start_bits = 8 - (offset % 8); in ssl_bitmask_set() 2926 if (start_bits != 8) { in ssl_bitmask_set() 2930 if (len <= start_bits) { in ssl_bitmask_set() 2932 mask[first_byte_idx] |= 1 << (start_bits - len); in ssl_bitmask_set() 2939 offset += start_bits; /* Now offset % 8 == 0 */ in ssl_bitmask_set() 2940 len -= start_bits; in ssl_bitmask_set() 2942 for (; start_bits != 0; start_bits--) { in ssl_bitmask_set() 2943 mask[first_byte_idx] |= 1 << (start_bits - 1); in ssl_bitmask_set()
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_dfa_match.c | 3325 const uint8_t *start_bits = NULL; in pcre2_dfa_match() local 3602 start_bits = re->start_bitmap; in pcre2_dfa_match() 3691 if (has_first_cu || start_bits != NULL) in pcre2_dfa_match() 3698 if (!ok && start_bits != NULL) in pcre2_dfa_match() 3703 ok = (start_bits[c/8] & (1u << (c&7))) != 0; in pcre2_dfa_match() 3846 else if (start_bits != NULL) in pcre2_dfa_match() 3854 if ((start_bits[c/8] & (1u << (c&7))) != 0) break; in pcre2_dfa_match()
|
D | pcre2_match.c | 6317 const uint8_t *start_bits = NULL; in pcre2_match() local 6891 start_bits = re->start_bitmap; in pcre2_match() 6973 if (has_first_cu || start_bits != NULL) in pcre2_match() 6980 if (!ok && start_bits != NULL) in pcre2_match() 6985 ok = (start_bits[c/8] & (1u << (c&7))) != 0; in pcre2_match() 7135 else if (start_bits != NULL) in pcre2_match() 7143 if ((start_bits[c/8] & (1u << (c&7))) != 0) break; in pcre2_match()
|
D | pcre2test.c | 4464 uint8_t *start_bits; in show_pattern_info() local 4525 pattern_info(PCRE2_INFO_FIRSTBITMAP, &start_bits, FALSE) + in show_pattern_info() 4728 else if (start_bits != NULL) in show_pattern_info() 4735 if ((start_bits[i/8] & (1u << (i&7))) != 0) in show_pattern_info()
|
D | pcre2_jit_compile.c | 6419 const sljit_u8 *start_bits = common->re->start_bitmap; in fast_forward_start_bits() local 6445 if (!optimize_class(common, start_bits, (start_bits[31] & 0x80) != 0, FALSE, &matches)) in fast_forward_start_bits() 6448 if ((start_bits[31] & 0x80) != 0) in fast_forward_start_bits() 6453 if (common->utf && is_char7_bitset(start_bits, FALSE)) in fast_forward_start_bits() 6458 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)start_bits); in fast_forward_start_bits()
|
/third_party/ffmpeg/libavcodec/ |
D | bink.c | 503 int start_bits, int has_sign) in read_dcs() argument 510 if (get_bits_left(gb) < start_bits - has_sign) in read_dcs() 512 v = get_bits(gb, start_bits - has_sign); in read_dcs()
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
D | vid_dec_av1.c | 2223 unsigned start_bits = vl_vlc_valid_bits(vlc); in dec_av1_Decode() local 2224 unsigned start_bytes = start_bits / 8; in dec_av1_Decode() 2239 vl_vlc_peekbits(vlc, start_bits) >> ((start_bytes - i - 1) * 8); in dec_av1_Decode()
|