/third_party/rust/crates/aho-corasick/src/packed/teddy/ |
H A D | runtime.rs | 791 let (mut prev0, mut prev1) = (ones128(), ones128()); in find_at() 793 let c = self.candidate(haystack, at, &mut prev0, &mut prev1); in find_at() 804 prev1 = ones128(); in find_at() 806 let c = self.candidate(haystack, at, &mut prev0, &mut prev1); in find_at() 822 prev1: &mut __m128i, in candidate() 830 let res1prev1 = _mm_alignr_epi8(res1, *prev1, 15); in candidate() 833 *prev1 = res1; in candidate() 861 let (mut prev0, mut prev1) = (ones256(), ones256()); in find_at() 863 let c = self.candidate(haystack, at, &mut prev0, &mut prev1); in find_at() 874 prev1 in find_at() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_yadif.c | 93 void *prev1, void *cur1, void *next1, in filter_line_c() 97 uint8_t *prev = prev1; in filter_line_c() 112 static void filter_edges(void *dst1, void *prev1, void *cur1, void *next1, in filter_edges() argument 116 uint8_t *prev = prev1; in filter_edges() 131 prev = (uint8_t*)prev1 + offset; in filter_edges() 144 void *prev1, void *cur1, void *next1, in filter_line_c_16bit() 149 uint16_t *prev = prev1; in filter_line_c_16bit() 161 static void filter_edges_16bit(void *dst1, void *prev1, void *cur1, void *next1, in filter_edges_16bit() argument 165 uint16_t *prev = prev1; in filter_edges_16bit() 181 prev = (uint16_t*)prev1 in filter_edges_16bit() 92 filter_line_c(void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode) filter_line_c() argument 143 filter_line_c_16bit(void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode) filter_line_c_16bit() argument [all...] |
H A D | vf_bwdif.c | 135 static void filter_line_c(void *dst1, void *prev1, void *cur1, void *next1, in filter_line_c() argument 141 uint8_t *prev = prev1; in filter_line_c() 153 static void filter_edge(void *dst1, void *prev1, void *cur1, void *next1, in filter_edge() argument 158 uint8_t *prev = prev1; in filter_edge() 180 static void filter_line_c_16bit(void *dst1, void *prev1, void *cur1, void *next1, in filter_line_c_16bit() argument 186 uint16_t *prev = prev1; in filter_line_c_16bit() 198 static void filter_edge_16bit(void *dst1, void *prev1, void *cur1, void *next1, in filter_edge_16bit() argument 203 uint16_t *prev = prev1; in filter_edge_16bit()
|
/third_party/ffmpeg/libavcodec/ |
H A D | sanm.c | 770 static int process_block(SANMVideoContext *ctx, uint8_t *dst, uint8_t *prev1, in process_block() argument 793 if (process_block(ctx, dst, prev1, prev2, stride, tbl, size)) in process_block() 795 if (process_block(ctx, dst + size, prev1 + size, prev2 + size, in process_block() 799 prev1 += size * stride; in process_block() 801 if (process_block(ctx, dst, prev1, prev2, stride, tbl, size)) in process_block() 803 if (process_block(ctx, dst + size, prev1 + size, prev2 + size, in process_block() 830 memcpy(dst + k * stride, prev1 + k * stride, size); in process_block() 867 uint8_t *prev1 = (uint8_t *)ctx->frm1; in old_codec47() local 888 memset(prev1, 0, ctx->height * stride); in old_codec47() 918 if (process_block(ctx, dst + i, prev1 in old_codec47() [all...] |
H A D | adpcm.c | 1965 int prev1 = c->status[channel].sample1; in adpcm_decode_frame() 1988 sampledat = ((prev1 * factor1 + prev2 * factor2) >> 11) + in adpcm_decode_frame() 1991 prev2 = prev1; in adpcm_decode_frame() 1992 prev1 = *samples++; in adpcm_decode_frame() 1996 c->status[channel].sample1 = prev1; in adpcm_decode_frame()
|
/third_party/vixl/src/aarch64/ |
H A D | instructions-aarch64.h | 549 const Instruction* prev1 = GetInstructionAtOffset(-1 * isize); in IsConsistentMOPSTriplet() local 568 return prev1->IsMOPSPrologueOf(this, mops_type) && in IsConsistentMOPSTriplet() 572 prev1->IsMOPSMainOf(this, mops_type); in IsConsistentMOPSTriplet()
|
/third_party/node/deps/simdutf/ |
H A D | simdutf.cpp | 12581 simdutf_unused simdutf_really_inline simd8<bool> must_be_continuation(const simd8<uint8_t> prev1, const simd8<uint8_t> prev2, const simd8<uint8_t> prev3) { in must_be_continuation() argument 12582 simd8<bool> is_second_byte = prev1 >= uint8_t(0b11000000u); in must_be_continuation() 15219 simdutf_really_inline simd8<uint8_t> check_special_cases(const simd8<uint8_t> input, const simd8<uint8_t> prev1) { 15247 const simd8<uint8_t> byte_1_high = prev1.shr<4>().lookup_16<uint8_t>( 15263 const simd8<uint8_t> byte_1_low = (prev1 & 0x0F).lookup_16<uint8_t>( 15347 // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ lead bytes 15349 simd8<uint8_t> prev1 = input.prev<1>(prev_input); 15350 simd8<uint8_t> sc = check_special_cases(input, prev1); 15610 simdutf_really_inline simd8<uint8_t> check_special_cases(const simd8<uint8_t> input, const simd8<uint8_t> prev1) { 15638 const simd8<uint8_t> byte_1_high = prev1 [all...] |
/third_party/node/deps/brotli/c/enc/ |
H A D | encode.c | 442 uint8_t prev1 = input[(start_pos + 1) & mask]; in ShouldUseComplexStaticContextMap() local 449 BROTLI_CONTEXT(prev1, prev2, utf8_lut)]; in ShouldUseComplexStaticContextMap() 453 prev2 = prev1; in ShouldUseComplexStaticContextMap() 454 prev1 = literal; in ShouldUseComplexStaticContextMap()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | encode.c | 442 uint8_t prev1 = input[(start_pos + 1) & mask]; in ShouldUseComplexStaticContextMap() local 449 BROTLI_CONTEXT(prev1, prev2, utf8_lut)]; in ShouldUseComplexStaticContextMap() 453 prev2 = prev1; in ShouldUseComplexStaticContextMap() 454 prev1 = literal; in ShouldUseComplexStaticContextMap()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_lossless_jpeg.cpp | 2424 int32 prev1 = dPtr [-1]; in DecodeImage() local 2469 prev1 += d; in DecodeImage() 2474 dPtr [1] = (uint16) prev1; in DecodeImage()
|
H A D | dng_image_writer.cpp | 2868 uint8 prev1 = bytePtr [-2]; in EncodeDeltaBytes() local 2872 this1 -= prev1; in EncodeDeltaBytes() 2880 this1 = prev1; in EncodeDeltaBytes()
|