Home
last modified time | relevance | path

Searched refs:prev2 (Results 1 - 15 of 15) sorted by relevance

/third_party/ffmpeg/libavfilter/
H A Dvf_bwdif.c71 int d = (prev2[0] + next2[0]) >> 1; \
73 int temporal_diff0 = FFABS(prev2[0] - next2[0]); \
83 int b = ((prev2[mrefs2] + next2[mrefs2]) >> 1) - c; \
84 int f = ((prev2[prefs2] + next2[prefs2]) >> 1) - e; \
94 interpol = (((coef_hf[0] * (prev2[0] + next2[0]) \
95 - coef_hf[1] * (prev2[mrefs2] + next2[mrefs2] + prev2[prefs2] + next2[prefs2]) \
96 + coef_hf[2] * (prev2[mrefs4] + next2[mrefs4] + prev2[prefs4] + next2[prefs4])) >> 2) \
121 prev2
144 uint8_t *prev2 = parity ? prev : cur ; filter_line_c() local
161 uint8_t *prev2 = parity ? prev : cur ; filter_edge() local
189 uint16_t *prev2 = parity ? prev : cur ; filter_line_c_16bit() local
206 uint16_t *prev2 = parity ? prev : cur ; filter_edge_16bit() local
[all...]
H A Dvf_yadif.c53 int d = (prev2[0] + next2[0])>>1; \
55 int temporal_diff0 = FFABS(prev2[0] - next2[0]); \
69 int b = (prev2[2 * mrefs] + next2[2 * mrefs])>>1; \
70 int f = (prev2[2 * prefs] + next2[2 * prefs])>>1; \
88 prev2++; \
101 uint8_t *prev2 = parity ? prev : cur ; in filter_line_c() local
120 uint8_t *prev2 = parity ? prev : cur ; in filter_edges() local
134 prev2 = (uint8_t*)(parity ? prev : cur); in filter_edges()
153 uint16_t *prev2 = parity ? prev : cur ; in filter_line_c_16bit() local
169 uint16_t *prev2 in filter_edges_16bit() local
[all...]
H A Dvf_estdif.c63 const uint8_t *const prev2,
71 const uint16_t *const prev2,
168 const type *const prev2, \
184 const type *const prev2, \
193 1 * (prev2[av_clip(x + k*3, 0, end)] + \
204 const type *const prev2, \
213 5 * (prev2[av_clip(x + k*3, 0, end)] + \
/third_party/ffmpeg/libavcodec/
H A Dmace.c155 int16_t index, factor, prev2, previous, level; member
219 output[0] = QT_8S_2_16S(chd->previous + chd->prev2 - in chomp6()
220 ((chd->prev2-current) >> 2)); in chomp6()
222 ((chd->prev2-current) >> 2)); in chomp6()
223 chd->prev2 = chd->previous; in chomp6()
H A Dsanm.c771 uint8_t *prev2, int stride, int tbl, int size) in process_block()
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()
800 prev2 += 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()
843 int index = prev2 - (const uint8_t *)ctx->frm2; in process_block()
854 memcpy(dst + k * stride, prev2 + mx + (my + k) * stride, size); in process_block()
868 uint8_t *prev2 = (uint8_t *)ctx->frm2; in old_codec47() local
889 memset(prev2, in old_codec47()
770 process_block(SANMVideoContext *ctx, uint8_t *dst, uint8_t *prev1, uint8_t *prev2, int stride, int tbl, int size) process_block() argument
[all...]
H A Dadpcm.c1966 int prev2 = c->status[channel].sample2; in adpcm_decode_frame()
1988 sampledat = ((prev1 * factor1 + prev2 * factor2) >> 11) + in adpcm_decode_frame()
1991 prev2 = prev1; in adpcm_decode_frame()
1997 c->status[channel].sample2 = prev2; in adpcm_decode_frame()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dwritesrc.cpp314 int prev2, prev, c; in usrc_writeArrayOfMostlyInvChars() local
319 prev2=prev=-1; in usrc_writeArrayOfMostlyInvChars()
328 (col>=24 && prev2>=0x20 && prev==0) || in usrc_writeArrayOfMostlyInvChars()
339 prev2=prev; in usrc_writeArrayOfMostlyInvChars()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dwritesrc.cpp457 int prev2, prev, c; in usrc_writeArrayOfMostlyInvChars() local
462 prev2=prev=-1; in usrc_writeArrayOfMostlyInvChars()
471 (col>=24 && prev2>=0x20 && prev==0) || in usrc_writeArrayOfMostlyInvChars()
482 prev2=prev; in usrc_writeArrayOfMostlyInvChars()
/third_party/icu/icu4c/source/tools/toolutil/
H A Dwritesrc.cpp448 int prev2, prev, c; in usrc_writeArrayOfMostlyInvChars() local
453 prev2=prev=-1; in usrc_writeArrayOfMostlyInvChars()
462 (col>=24 && prev2>=0x20 && prev==0) || in usrc_writeArrayOfMostlyInvChars()
473 prev2=prev; in usrc_writeArrayOfMostlyInvChars()
/third_party/icu/tools/unicode/c/genprops/
H A Dcasepropsbuilder.cpp285 UBool addClosure(UChar32 orig, UChar32 prev2, UChar32 prev, UChar32 c, uint32_t value,
723 * prev2 is the code point that case-mapped to prev.
725 * The initial function call has prev2<0, prev<0, and c==orig
729 * The second-level function call has prev2<0, prev==orig, and c is
738 * The third-level function call has prev2==orig, prev>=0, and c is
740 * (And prev is the destination of one of prev2's case mappings.)
759 CasePropsBuilder::addClosure(UChar32 orig, UChar32 prev2, UChar32 prev, UChar32 c, uint32_t value, in addClosure() argument
808 } else if(prev2<0 && next!=prev) { in addClosure()
811 * we have reached maximum depth (prev2>=0) or in addClosure()
829 * we have reached maximum depth (prev2> in addClosure()
[all...]
/third_party/vixl/src/aarch64/
H A Dinstructions-aarch64.h548 const Instruction* prev2 = GetInstructionAtOffset(-2 * isize); in IsConsistentMOPSTriplet() local
571 return prev2->IsMOPSPrologueOf(this, mops_type) && in IsConsistentMOPSTriplet()
/third_party/node/deps/brotli/c/enc/
H A Dencode.c441 uint8_t prev2 = input[start_pos & mask]; in ShouldUseComplexStaticContextMap() local
449 BROTLI_CONTEXT(prev1, prev2, utf8_lut)]; in ShouldUseComplexStaticContextMap()
453 prev2 = prev1; in ShouldUseComplexStaticContextMap()
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dencode.c441 uint8_t prev2 = input[start_pos & mask]; in ShouldUseComplexStaticContextMap() local
449 BROTLI_CONTEXT(prev1, prev2, utf8_lut)]; in ShouldUseComplexStaticContextMap()
453 prev2 = prev1; in ShouldUseComplexStaticContextMap()
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp12581 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
12583 simd8<bool> is_third_byte = prev2 >= uint8_t(0b11100000u); in must_be_continuation()
12593 simdutf_really_inline simd8<bool> must_be_2_3_continuation(const simd8<uint8_t> prev2, const simd8<uint8_t> prev3) { in must_be_2_3_continuation() argument
12594 simd8<bool> is_third_byte = prev2 >= uint8_t(0b11100000u); in must_be_2_3_continuation()
15311 simd8<uint8_t> prev2 = input.prev<2>(prev_input);
15313 simd8<uint8_t> must23 = simd8<uint8_t>(must_be_2_3_continuation(prev2, prev3));
15702 simd8<uint8_t> prev2 = input.prev<2>(prev_input);
15704 simd8<uint8_t> must23 = simd8<uint8_t>(must_be_2_3_continuation(prev2, prev3));
16054 simd8<uint8_t> prev2 = input.prev<2>(prev_input);
16056 simd8<uint8_t> must23 = simd8<uint8_t>(must_be_2_3_continuation(prev2, prev
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_image_writer.cpp2869 uint8 prev2 = bytePtr [-1]; in EncodeDeltaBytes() local
2873 this2 -= prev2; in EncodeDeltaBytes()
2881 this2 = prev2; in EncodeDeltaBytes()

Completed in 66 milliseconds