/third_party/rust/crates/aho-corasick/src/packed/teddy/ |
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 = ones256(); in find_at() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_yadif.c | 95 void *prev1, void *cur1, void *next1, in filter_line_c() argument 99 uint8_t *prev = prev1; in filter_line_c() 114 static void filter_edges(void *dst1, void *prev1, void *cur1, void *next1, in filter_edges() argument 118 uint8_t *prev = prev1; in filter_edges() 133 prev = (uint8_t*)prev1 + offset; in filter_edges() 146 void *prev1, void *cur1, void *next1, in filter_line_c_16bit() argument 151 uint16_t *prev = prev1; in filter_line_c_16bit() 163 static void filter_edges_16bit(void *dst1, void *prev1, void *cur1, void *next1, in filter_edges_16bit() argument 167 uint16_t *prev = prev1; in filter_edges_16bit() 183 prev = (uint16_t*)prev1 + offset; in filter_edges_16bit()
|
D | vf_bwdif.c | 136 static void filter_line_c(void *dst1, void *prev1, void *cur1, void *next1, in filter_line_c() argument 142 uint8_t *prev = prev1; in filter_line_c() 154 static void filter_edge(void *dst1, void *prev1, void *cur1, void *next1, in filter_edge() argument 159 uint8_t *prev = prev1; in filter_edge() 181 static void filter_line_c_16bit(void *dst1, void *prev1, void *cur1, void *next1, in filter_line_c_16bit() argument 187 uint16_t *prev = prev1; in filter_line_c_16bit() 199 static void filter_edge_16bit(void *dst1, void *prev1, void *cur1, void *next1, in filter_edge_16bit() argument 204 uint16_t *prev = prev1; in filter_edge_16bit()
|
D | vf_yadif_cuda.cu | 143 cudaTextureObject_t prev1 = is_second_field ? cur : prev; in yadif_single() local 149 T C = tex2D<T>(prev1, xo, yo - 2); in yadif_single() 150 T D = tex2D<T>(prev1, xo, yo + 0); in yadif_single() 151 T E = tex2D<T>(prev1, xo, yo + 2); in yadif_single() 214 cudaTextureObject_t prev1 = is_second_field ? cur : prev; in yadif_double() local 220 T C = tex2D<T>(prev1, xo, yo - 2); in yadif_double() 221 T D = tex2D<T>(prev1, xo, yo + 0); in yadif_double() 222 T E = tex2D<T>(prev1, xo, yo + 2); in yadif_double()
|
/third_party/ffmpeg/libavcodec/ |
D | sanm.c | 769 static int process_block(SANMVideoContext *ctx, uint8_t *dst, uint8_t *prev1, in process_block() argument 792 if (process_block(ctx, dst, prev1, prev2, stride, tbl, size)) in process_block() 794 if (process_block(ctx, dst + size, prev1 + size, prev2 + size, in process_block() 798 prev1 += size * stride; in process_block() 800 if (process_block(ctx, dst, prev1, prev2, stride, tbl, size)) in process_block() 802 if (process_block(ctx, dst + size, prev1 + size, prev2 + size, in process_block() 829 memcpy(dst + k * stride, prev1 + k * stride, size); in process_block() 866 uint8_t *prev1 = (uint8_t *)ctx->frm1; in old_codec47() local 887 memset(prev1, 0, ctx->height * stride); in old_codec47() 917 if (process_block(ctx, dst + i, prev1 + i, prev2 + i, stride, in old_codec47() [all …]
|
D | adpcm.c | 1838 int prev1 = c->status[channel].sample1; in adpcm_decode_frame() local 1861 sampledat = ((prev1 * factor1 + prev2 * factor2) >> 11) + in adpcm_decode_frame() 1864 prev2 = prev1; in adpcm_decode_frame() 1865 prev1 = *samples++; in adpcm_decode_frame() 1869 c->status[channel].sample1 = prev1; in adpcm_decode_frame()
|
/third_party/vk-gl-cts/framework/xexml/ |
D | xeXMLParser.cpp | 251 int prev1 = m_curTokenLen > 4 ? getChar(m_curTokenLen-1) : 0; in advance() local 253 if (prev2 == '-' && prev1 == '-') in advance()
|
/third_party/node/deps/simdutf/ |
D | simdutf.cpp | 11645 simdutf_unused simdutf_really_inline simd8<bool> must_be_continuation(const simd8<uint8_t> prev1, c… in must_be_continuation() argument 11646 simd8<bool> is_second_byte = prev1 >= uint8_t(0b11000000u); in must_be_continuation() 13876 …inline simd8<uint8_t> check_special_cases(const simd8<uint8_t> input, const simd8<uint8_t> prev1) { in check_special_cases() argument 13904 const simd8<uint8_t> byte_1_high = prev1.shr<4>().lookup_16<uint8_t>( in check_special_cases() 13920 const simd8<uint8_t> byte_1_low = (prev1 & 0x0F).lookup_16<uint8_t>( in check_special_cases() 14006 simd8<uint8_t> prev1 = input.prev<1>(prev_input); in check_utf8_bytes() local 14007 simd8<uint8_t> sc = check_special_cases(input, prev1); in check_utf8_bytes() 14269 …inline simd8<uint8_t> check_special_cases(const simd8<uint8_t> input, const simd8<uint8_t> prev1) { in check_special_cases() argument 14297 const simd8<uint8_t> byte_1_high = prev1.shr<4>().lookup_16<uint8_t>( in check_special_cases() 14313 const simd8<uint8_t> byte_1_low = (prev1 & 0x0F).lookup_16<uint8_t>( in check_special_cases() [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
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()
|
D | dng_image_writer.cpp | 2868 uint8 prev1 = bytePtr [-2]; in EncodeDeltaBytes() local 2872 this1 -= prev1; in EncodeDeltaBytes() 2880 this1 = prev1; in EncodeDeltaBytes()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
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/node/deps/brotli/c/enc/ |
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()
|