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

1 2 3 4

  /external/chromium_org/third_party/libyuv/source/
compare_neon.cc 21 volatile uint32 sse; local
57 "=r"(sse)
60 return sse;
compare_common.cc 19 uint32 sse = 0u; local
23 sse += (uint32)(diff * diff);
25 return sse;
compare_posix.cc 22 uint32 sse; local
55 "=g"(sse) // %3
62 return sse;
  /external/libyuv/files/source/
compare_neon.cc 21 volatile uint32 sse; local
50 "=r"(sse)
53 return sse;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodeframe.h 24 unsigned int sse; member in struct:__anon16794
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);
vp9_mbgraph.c 56 unsigned int sse; local
60 &sse);
vp9_pickmode.c 155 unsigned int sse; local
163 pd->dst.buf, pd->dst.stride, &sse);
168 if ((sse >> 3) > var)
169 sse = var;
171 vp9_model_rd_from_var_lapndz(var + sse, 1 << num_pels_log2_lookup[bsize],
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.h 24 unsigned int sse; member in struct:__anon28746
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);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_error_intrin_avx2.c 23 int64_t sse; local
27 // init sse and ssz registerd to zero
68 _mm_storel_epi64((__m128i*)(&sse), sse_reg128);
71 return sse;
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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLEngineTest.java 128 SSLEngine sse = getEngine(); local
130 String[] res = sse.getSupportedProtocols();
140 SSLEngine sse = getEngine(); local
141 String[] pr = sse.getSupportedProtocols();
143 sse.setEnabledProtocols(pr);
144 String[] res = sse.getEnabledProtocols();
150 sse.setEnabledProtocols(null);
160 SSLEngine sse = getEngine(); local
162 String[] res = sse.getSupportedCipherSuites();
172 SSLEngine sse = getEngine() local
193 SSLEngine sse = getEngine(); local
210 SSLEngine sse = getEngine(); local
226 SSLEngine sse = getEngine(); local
237 SSLEngine sse = getEngine(); local
259 SSLEngine sse = getEngine(); local
279 SSLEngine sse = getEngine(); local
287 SSLEngine sse = getEngine(); local
298 SSLEngine sse = getEngine(); local
331 SSLEngine sse = getEngine(host, port); local
368 SSLEngine sse = getEngine(host, port); local
391 SSLEngine sse = getEngine(host, port); local
427 SSLEngine sse = getEngine(host, port); local
446 SSLEngine sse = getEngine(host, port); local
472 SSLEngine sse = getEngine(host, port); local
507 SSLEngine sse = getEngine(host, port); local
554 SSLEngine sse = getEngine(host, port); local
572 SSLEngine sse = getEngine(host, port); local
586 SSLEngine sse = getEngine(); local
598 SSLEngine sse = getEngine(); local
632 SSLEngine sse = getEngine(host, port); local
656 SSLEngine sse = getEngine(host, port); local
687 SSLEngine sse = getEngine(host, port); local
704 SSLEngine sse = getEngine(host, port); local
740 SSLEngine sse = getEngine(host, port); local
762 SSLEngine sse = getEngine(host, port); local
799 SSLEngine sse = getEngine(host, port); local
816 SSLEngine sse = getEngine(host, port); local
841 SSLEngine sse = getEngine(host, port); local
862 SSLEngine sse = getEngine(host, port); local
893 SSLEngine sse = getEngine(host, port); local
908 SSLEngine sse = getEngine(host, port); local
940 SSLEngine sse = getEngine(host, port); local
961 SSLEngine sse = getEngine(host, port); local
992 SSLEngine sse = getEngine(host, port); local
1006 SSLEngine sse = getEngine(host, port); local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
picture_psnr.c 43 const double sse = (double)(s[i] - value) * (s[i] - value); local
44 if (sse < best_sse) best_sse = sse;
94 float sse[4]; local
95 sse[0] = AccumulateLSIM(src->y, src->y_stride,
97 sse[1] = AccumulateLSIM(src->u, src->uv_stride,
99 sse[2] = AccumulateLSIM(src->v, src->uv_stride,
101 sse[3] = has_alpha ? AccumulateLSIM(src->a, src->a_stride,
105 result[0] = GetPSNR(sse[0] / (src->width * src->height));
106 result[1] = GetPSNR(sse[1] / (uv_w * uv_h))
    [all...]
  /external/chromium_org/third_party/libyuv/util/
psnr.cc 37 // PSNR formula: psnr = 10 * log10 (Peak Signal^2 * size / sse)
38 double ComputePSNR(double sse, double size) {
40 if (sse <= kMINSSE)
41 sse = kMINSSE; // Produces max PSNR of 128
42 return 10.0 * log10(65025.0 * size / sse);
49 volatile uint32 sse; local
77 "=r"(sse)
80 return sse;
125 uint32 sse; local
158 "=g"(sse) // %
202 uint32 sse = 0u; local
223 uint64 sse = 0; local
    [all...]
  /external/flac/libFLAC/include/private/
cpu.h 53 FLAC__bool sse; member in struct:__anon25319
  /external/libvpx/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/webp/src/enc/
picture_psnr.c 43 const double sse = (double)(s[i] - value) * (s[i] - value); local
44 if (sse < best_sse) best_sse = sse;
94 float sse[4]; local
95 sse[0] = AccumulateLSIM(src->y, src->y_stride,
97 sse[1] = AccumulateLSIM(src->u, src->uv_stride,
99 sse[2] = AccumulateLSIM(src->v, src->uv_stride,
101 sse[3] = has_alpha ? AccumulateLSIM(src->a, src->a_stride,
105 result[0] = GetPSNR(sse[0] / (src->width * src->height));
106 result[1] = GetPSNR(sse[1] / (uv_w * uv_h))
    [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/chromium_org/third_party/libjingle/source/talk/session/media/
yuvscaler_unittest.cc 165 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize); local
166 *error = sse / osize; // Mean Squared Error.
167 double PSNR = cricket::ComputePSNR(sse, osize);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
picklpf.c 85 unsigned int sse; local
88 &sse);
  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 85 unsigned int sse; local
88 &sse);
  /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);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
mfqe.c 149 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local
153 actd = (vp8_variance16x16(yd, yd_stride, VP8_ZEROS, 0, &sse)+128)>>8;
154 act = (vp8_variance16x16(y, y_stride, VP8_ZEROS, 0, &sse)+128)>>8;
156 sad = (vp8_variance16x16(y, y_stride, yd, yd_stride, &sse));
157 sad = (sse + 128)>>8;
158 usad = (vp8_variance8x8(u, uv_stride, ud, uvd_stride, &sse));
159 usad = (sse + 32)>>6;
160 vsad = (vp8_variance8x8(v, uv_stride, vd, uvd_stride, &sse));
161 vsad = (sse + 32)>>6;
170 actd = (vp8_variance8x8(yd, yd_stride, VP8_ZEROS, 0, &sse)+32)>>6
    [all...]

Completed in 562 milliseconds

1 2 3 4