Searched refs:diff (Results 1 - 25 of 69) sorted by relevance

123

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
H A Dvpx_timer.h79 LARGE_INTEGER freq, diff; local
81 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
84 return diff.QuadPart * 1000000 / freq.QuadPart;
86 struct timeval diff;
88 timersub(&t->end, &t->begin, &diff);
89 return diff.tv_sec * 1000000 + diff.tv_usec;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
H A Dvp9_idct32x32_1_add_neon.asm32 ADD_DIFF_16x8 $diff
33 vqadd.u8 q8, q8, $diff
34 vqadd.u8 q9, q9, $diff
35 vqadd.u8 q10, q10, $diff
36 vqadd.u8 q11, q11, $diff
37 vqadd.u8 q12, q12, $diff
38 vqadd.u8 q13, q13, $diff
39 vqadd.u8 q14, q14, $diff
40 vqadd.u8 q15, q15, $diff
44 SUB_DIFF_16x8 $diff
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
H A Dftfy.sh14 -n, --dry-run Shows a diff of the changes to be made.
71 diff -u "$ORIG_COMMIT_MSG" "$NEW_COMMIT_MSG" | tail -n +3
94 ORIG_DIFF=orig.diff.$$
95 MODIFIED_DIFF=modified.diff.$$
96 FINAL_DIFF=final.diff.$$
111 if ! git diff --quiet HEAD; then
119 # Collect the original diff
122 # Apply the style guide on new and modified files and collect its diff
123 for f in $(git diff HEAD^ --name-only -M90 --diff
[all...]
H A Dintersect-diffs.py21 import diff namespace
53 old_hunks = [x for x in diff.ParseDiffHunks(open(sys.argv[1], "r"))]
54 new_hunks = [x for x in diff.ParseDiffHunks(open(sys.argv[2], "r"))]
57 # Join the right hand side of the older diff with the left hand side of the
58 # newer diff.
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dinvtrans.h28 static void eob_adjust(char *eobs, short *diff) argument
34 if((eobs[js] == 0) && (diff[0] != 0))
36 diff+=16;
H A Dvariance_c.c45 int diff; local
54 diff = src_ptr[j] - ref_ptr[j];
55 *sum += diff;
56 *sse += diff * diff;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_sse2.c34 short *diff, unsigned char *predictor,
40 short *diff = &be->src_diff[0]; local
42 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
H A Dvp8_enc_stubs_mmx.c69 short *diff, unsigned char *predictor,
75 short *diff = &be->src_diff[0]; local
77 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
H A Dsubtract_mmx.asm15 ; short *diff, unsigned char *Predictor,
27 mov rdi, arg(2) ;diff
76 ;void vp8_subtract_mby_mmx(short *diff, unsigned char *src, int src_stride,
87 mov rdi, arg(0) ;diff
149 ;vp8_subtract_mbuv_mmx(short *diff, unsigned char *usrc, unsigned char *vsrc,
162 mov rdi, arg(0) ;diff
166 add rdi, 256*2 ;diff = diff + 256 (shorts)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dvp9_subtract_test.cc44 int16_t *diff = reinterpret_cast<int16_t *>( local
45 vpx_memalign(16, sizeof(*diff) * block_width * block_height * 2));
59 GetParam()(block_height, block_width, diff, block_width,
64 EXPECT_EQ(diff[r * block_width + c],
72 GetParam()(block_height, block_width, diff, block_width * 2,
77 EXPECT_EQ(diff[r * block_width * 2 + c],
85 vpx_free(diff);
H A Dfdct8x8_test.cc83 const int diff = abs(count_sign_block[j][0] - count_sign_block[j][1]); local
85 EXPECT_LT(diff, max_diff)
91 << " diff: " << diff; local
112 const int diff = abs(count_sign_block[j][0] - count_sign_block[j][1]); local
114 EXPECT_LT(diff, max_diff)
120 << " diff: " << diff; local
159 const int diff = dst[j] - src[j]; local
160 const int error = diff * dif
200 const int diff = dst[j] - src[j]; local
[all...]
H A Ddct32x32_test.cc119 const uint32_t diff = dst[j] - src[j]; local
120 const uint32_t error = diff * diff;
234 const int diff = dst[j] - src[j]; local
235 const int error = diff * diff;
H A Didct8x8_test.cc129 const int diff = dst[j] - src[j]; local
130 const int error = diff * diff;
H A Dpartial_idct_test.cc107 const int diff = dst1[j] - dst2[j]; local
108 const int error = diff * diff;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_subtract_armv6.asm60 str r0, [r6, #0] ; diff
61 str r1, [r6, #4] ; diff
63 add r6, r6, r2, lsl #1 ; update diff pointer
72 ; r0 short *diff
83 add r0, r0, #512 ; set *diff point to Cb
107 str r8, [r0], #4 ; diff (A)
109 str r9, [r0], #4 ; diff (A)
124 str r8, [r0], #4 ; diff (B)
126 str r9, [r0], #4 ; diff (B)
152 str r8, [r0], #4 ; diff (
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ppc/
H A Dcsystemdependent.c47 void (*vp8_subtract_mby)(short *diff, unsigned char *src, unsigned char *pred, int stride);
48 void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
64 extern void subtract_mby_c(short *diff, unsigned char *src, unsigned char *pred, int stride);
65 extern void subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
96 extern void vp8_subtract_mby_ppc(short *diff, unsigned char *src, unsigned char *pred, int stride);
97 extern void vp8_subtract_mbuv_ppc(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
H A Dencodemb_altivec.asm15 ;# r3 short *diff
56 stvx v3, 0, r3 ;# store out diff
65 stvx v3, r10, r3 ;# store out diff
93 stvx v3, 0, r3 ;# store out diff
102 stvx v3, r10, r3 ;# store out diff
112 ;# r3 short *diff
138 stvx v3, 0, r3 ;# store out diff
145 stvx v3, r10, r3 ;# store out diff
/hardware/akm/AK8975_FS/akmdfs/
H A DAKFS_Measure.c162 int64_t diff; local
168 diff = minimum;
170 diff -= (endL - startL);
173 if (diff < 0) {
174 diff = 0;
178 if (diff > 1000000000) {
179 ret.tv_sec = diff / 1000000000;
180 ret.tv_nsec = diff % 1000000000;
183 ret.tv_nsec = diff;
/hardware/qcom/display/msm8084/libqdutils/
H A Dprofiler.cpp152 nsecs_t diff = currtime_us - oldtime_us; local
157 diff > debug_fps_metadata.ignorethresh_us) {
162 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
169 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
187 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
/hardware/qcom/display/msm8226/libqdutils/
H A Dprofiler.cpp152 nsecs_t diff = currtime_us - oldtime_us; local
157 diff > debug_fps_metadata.ignorethresh_us) {
162 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
169 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
187 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
/hardware/qcom/display/msm8960/libqdutils/
H A Dprofiler.cpp147 nsecs_t diff = currtime_us - oldtime_us; local
152 diff > debug_fps_metadata.ignorethresh_us) {
157 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
163 unsigned int currstep = (diff + debug_fps_metadata.margin_us) / 16666;
180 debug_fps_metadata.time_elapsed += ((float)diff/1000.0);
/hardware/qcom/display/msm8974/libqdutils/
H A Dprofiler.cpp147 nsecs_t diff = currtime_us - oldtime_us; local
152 diff > debug_fps_metadata.ignorethresh_us) {
157 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
163 unsigned int currstep = (diff + debug_fps_metadata.margin_us) / 16666;
180 debug_fps_metadata.time_elapsed += ((float)diff/1000.0);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
H A Dsubtract_neon.asm52 vst1.16 {d20}, [r5], r2 ;store diff
64 ;void vp8_subtract_mby_neon(short *diff, unsigned char *src, int src_stride
70 mov r6, #32 ; "diff" stride x2
71 add r5, r0, #16 ; second diff pointer
92 vst1.16 {q8}, [r0], r6 ;store diff
109 ;void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc,
118 add r0, r0, #512 ; short *udiff = diff + 256;
119 mov r12, #32 ; "diff" stride x2
120 add r7, r0, #16 ; second diff pointer
149 vst1.16 {q8}, [r0], r12 ;store diff
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dpickinter.c110 int diff = src_ptr[c] - ref_ptr[c]; local
111 distortion += diff * diff;
265 int diff; local
340 diff = u_p - expected_udc;
341 pred_error[DC_PRED] += diff * diff;
342 diff = v_p - expected_vdc;
343 pred_error[DC_PRED] += diff * diff;
[all...]
H A Ddenoising.c29 * pixel adjustments vs. pixel diff value ahead of time.
31 * = (filter_coefficient * diff + 128) >> 8
39 * The adjustment vs. diff curve becomes flat very quick when diff increases.
44 * diff adjustment w/o motion correction adjustment w/ motion correction
48 * [-3, 3] diff diff
82 int diff = 0; local
86 diff = mc_running_avg_y[c] - sig[c];
87 absdiff = abs(diff);
[all...]

Completed in 547 milliseconds

123