HomeSort by relevance Sort by last modified time
    Searched defs:sse (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/libvpx/libvpx/third_party/libyuv/source/
compare_neon.cc 23 volatile uint32 sse; local
54 "=r"(sse)
57 return sse;
compare_neon64.cc 22 volatile uint32 sse; local
52 "=r"(sse)
55 return sse;
compare_common.cc 19 uint32 sse = 0u; local
23 sse += (uint32)(diff * diff);
25 return sse;
compare_gcc.cc 22 uint32 sse; local
55 "=g"(sse) // %3
58 return sse;
compare.cc 156 uint64 sse = 0; local
178 #pragma omp parallel for reduction(+: sse)
181 sse += SumSquareError(src_a + i, src_b + i, kBlockSize);
186 sse += SumSquareError(src_a, src_b, remainder);
192 sse += SumSquareError_C(src_a, src_b, remainder);
194 return sse;
201 uint64 sse = 0; local
211 sse += ComputeSumSquareError(src_a, src_b, width);
215 return sse;
219 double SumSquareErrorToPsnr(uint64 sse, uint64 count)
239 const uint64 sse = ComputeSumSquareErrorPlane(src_a, stride_a, local
265 const uint64 sse = sse_y + sse_u + sse_v; local
    [all...]
  /external/libyuv/files/source/
compare_neon.cc 25 volatile uint32 sse; local
55 "=r"(sse)
58 return sse;
compare_neon64.cc 24 volatile uint32 sse; local
53 "=r"(sse)
56 return sse;
compare_common.cc 21 uint32 sse = 0u; local
25 sse += (uint32)(diff * diff);
27 return sse;
compare_gcc.cc 26 uint32 sse; local
59 "=g"(sse) // %3
62 return sse;
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_error_intrin_avx2.c 24 int64_t sse; local
28 // init sse and ssz registerd to zero
69 _mm_storel_epi64((__m128i*)(&sse), sse_reg128);
72 return sse;
  /external/webrtc/webrtc/modules/video_processing/test/
denoiser_test.cc 51 uint32_t sum = 0, sse = 0, var; local
61 sse += (i * 32 + j) * (i * 32 + j);
64 var = sse - ((sum * sum) >> 7);
66 EXPECT_EQ(var, df_c->Variance16x8(src, 16, dst, 16, &sse));
67 EXPECT_EQ(var, df_sse_neon->Variance16x8(src, 16, dst, 16, &sse));
135 // Create SSE or NEON denoiser.
150 // Denoising results should be the same for C and SSE/NEON denoiser.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLEngineTest.java 129 SSLEngine sse = getEngine(); local
131 String[] res = sse.getSupportedProtocols();
141 SSLEngine sse = getEngine(); local
142 String[] pr = sse.getSupportedProtocols();
144 sse.setEnabledProtocols(pr);
145 String[] res = sse.getEnabledProtocols();
151 sse.setEnabledProtocols(null);
161 SSLEngine sse = getEngine(); local
163 String[] res = sse.getSupportedCipherSuites();
173 SSLEngine sse = getEngine() local
194 SSLEngine sse = getEngine(); local
211 SSLEngine sse = getEngine(); local
227 SSLEngine sse = getEngine(); local
238 SSLEngine sse = getEngine(); local
260 SSLEngine sse = getEngine(); local
280 SSLEngine sse = getEngine(); local
288 SSLEngine sse = getEngine(); local
299 SSLEngine sse = getEngine(); local
332 SSLEngine sse = getEngine(host, port); local
369 SSLEngine sse = getEngine(host, port); local
392 SSLEngine sse = getEngine(host, port); local
428 SSLEngine sse = getEngine(host, port); local
447 SSLEngine sse = getEngine(host, port); local
473 SSLEngine sse = getEngine(host, port); local
508 SSLEngine sse = getEngine(host, port); local
555 SSLEngine sse = getEngine(host, port); local
573 SSLEngine sse = getEngine(host, port); local
587 SSLEngine sse = getEngine(); local
599 SSLEngine sse = getEngine(); local
633 SSLEngine sse = getEngine(host, port); local
657 SSLEngine sse = getEngine(host, port); local
688 SSLEngine sse = getEngine(host, port); local
705 SSLEngine sse = getEngine(host, port); local
741 SSLEngine sse = getEngine(host, port); local
763 SSLEngine sse = getEngine(host, port); local
800 SSLEngine sse = getEngine(host, port); local
817 SSLEngine sse = getEngine(host, port); local
842 SSLEngine sse = getEngine(host, port); local
863 SSLEngine sse = getEngine(host, port); local
894 SSLEngine sse = getEngine(host, port); local
909 SSLEngine sse = getEngine(host, port); local
941 SSLEngine sse = getEngine(host, port); local
962 SSLEngine sse = getEngine(host, port); local
993 SSLEngine sse = getEngine(host, port); local
1007 SSLEngine sse = getEngine(host, port); local
    [all...]
  /external/libyuv/files/util/
psnr.cc 43 volatile uint32 sse; local
71 "=r"(sse)
74 return sse;
80 volatile uint32 sse; local
107 "=r"(sse)
110 return sse;
155 uint32 sse; local
188 "=g"(sse) // %3
195 return sse;
233 uint32 sse = 0u local
254 uint64 sse = 0; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_variance_avx2.c 21 unsigned int *SSE,
31 unsigned int *SSE,
41 unsigned int *SSE,
54 unsigned int *sse
73 int w, int h, unsigned int *sse, int *sum,
79 *sse = 0;
87 *sse += sse0;
99 unsigned int *sse) {
105 *sse = var;
114 unsigned int *sse) {
193 unsigned int sse; local
217 unsigned int sse; local
234 unsigned int sse; local
260 unsigned int sse; local
    [all...]
  /external/flac/libFLAC/include/private/
cpu.h 43 /* SSE intrinsics support by ICC/MSVC/GCC */
123 FLAC__bool sse; member in struct:__anon11227
  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 86 unsigned int sse; local
89 &sse);
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_avg_neon.c 124 int32x4_t sse = vdupq_n_s32(0); local
136 sse = vmlal_s16(sse, diff_lo, diff_lo); // dynamic range 26 bits.
137 sse = vmlal_s16(sse, diff_hi, diff_hi);
148 // with the summation of 'sse' performed better on a Cortex-A15.
153 const int64x2_t s0 = vpaddlq_s32(sse); // cascading summation of 'sse'.
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_variance.c 90 int w, int h, unsigned int *sse, int *sum) {
94 *sse = 0;
100 *sse += diff * diff;
111 int w, int h, uint64_t *sse, uint64_t *sum) {
117 *sse = 0;
123 *sse += diff * diff;
132 int w, int h, unsigned int *sse, int *sum) {
136 *sse = (unsigned int)sse_long;
144 unsigned int var, sse; local
158 &sse, &avg)
    [all...]
  /external/webp/src/enc/
picture_psnr.c 46 const double sse = diff * diff; local
47 if (sse < best_sse) best_sse = sse;
  /external/webrtc/talk/session/media/
yuvscaler_unittest.cc 168 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize); local
169 *error = sse / osize; // Mean Squared Error.
170 double PSNR = cricket::ComputePSNR(sse, osize);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
picklpf.c 85 unsigned int sse; local
88 &sse);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_aq_variance.c 118 unsigned int var, sse; local
129 vp9_64_zeros, 0, bw, bh, &sse, &avg);
130 var = sse - (((int64_t)avg * avg) / (bw * bh));
135 vp9_64_zeros, 0, &sse);
  /prebuilts/go/darwin-x86/src/runtime/
asm_amd64p32.s 1033 // DI is 16-byte aligned; get ready to search using SSE instructions
1047 sse: label
1060 JLT sse
  /prebuilts/go/linux-x86/src/runtime/
asm_amd64p32.s 1033 // DI is 16-byte aligned; get ready to search using SSE instructions
1047 sse: label
1060 JLT sse
  /external/libvpx/libvpx/vp8/common/
mfqe.c 150 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local
154 actd = (vpx_variance16x16(yd, yd_stride, VP8_ZEROS, 0, &sse)+128)>>8;
155 act = (vpx_variance16x16(y, y_stride, VP8_ZEROS, 0, &sse)+128)>>8;
157 vpx_variance16x16(y, y_stride, yd, yd_stride, &sse);
158 sad = (sse + 128)>>8;
159 vpx_variance8x8(u, uv_stride, ud, uvd_stride, &sse);
160 usad = (sse + 32)>>6;
161 vpx_variance8x8(v, uv_stride, vd, uvd_stride, &sse);
162 vsad = (sse + 32)>>6;
171 actd = (vpx_variance8x8(yd, yd_stride, VP8_ZEROS, 0, &sse)+32)>>6
    [all...]

Completed in 436 milliseconds

1 2 3 4