HomeSort by relevance Sort by last modified time
    Searched refs:XY (Results 1 - 24 of 24) sorted by null

  /device/asus/fugu/
wpa_supplicant.conf 2 country=XY
  /external/skia/src/core/
SkBitmapProcState_sample.h 29 const uint32_t* SK_RESTRICT xy,
32 const uint32_t* SK_RESTRICT xy,
35 const uint32_t* SK_RESTRICT xy,
38 const uint32_t* SK_RESTRICT xy,
42 const uint32_t* SK_RESTRICT xy,
54 uint32_t XY;
58 XY = *xy++;
59 SkASSERT((XY >> 16) < (unsigned)s.fBitmap->height() &&
60 (XY & 0xFFFF) < (unsigned)s.fBitmap->width())
    [all...]
SkBitmapProcState.cpp 663 uint32_t xy[2];
665 mproc(s, xy, 1, x, y);
667 iY0 = xy[0] >> 18;
668 iY1 = xy[0] & 0x3FFF;
669 iSubY = (xy[0] >> 14) & 0xF;
869 uint32_t XY = bitmapXY[i];
870 unsigned x = XY & 0xFFFF;
871 unsigned y = XY >> 16;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 127 XY RN 8
173 LDR XY,=LOOP_COUNT
177 M_STRD XY, pBS, pXYBS
266 M_LDRD XY, pBS, pXYBS
270 ADDS XY, XY, XY
271 M_STR XY, pXYBS
283 M_LDRD XY, pBS, pXYBS
288 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 100 XY RN 8
141 LDR XY,=LOOP_COUNT
142 M_STRD XY, pBS, pXYBS
241 M_LDRD XY, pBS, pXYBS
246 ADDS XY, XY, XY
247 M_STR XY, pXYBS
321 M_LDRD XY, pBS, pXYBS
326 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 124 XY RN 8
165 LDR XY,=LOOP_COUNT
166 M_STRD XY, pBS, pXYBS
321 M_LDRD XY, pBS, pXYBS
326 ADDS XY, XY, XY
327 M_STR XY, pXYBS
417 M_LDRD XY, pBS, pXYBS
423 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 153 XY RN 8
198 LDR XY,=LOOP_COUNT
202 M_STRD XY, pBS, pXYBS
437 M_LDRD XY, pBS, pXYBS
441 ADDS XY, XY, XY
444 M_STR XY, pXYBS
455 M_LDRD XY, pBS, pXYBS
460 ADDS XY, XY, X
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 61 XY RN 9
192 LDR XY,=LOOP_COUNT
250 ADDS XY, XY, XY
259 ADDS XY, XY, XY
275 ADDS XY,XY,X
    [all...]
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 55 XY RN 7
128 LDR XY, =LOOP_COUNT
190 ADDS XY, XY, XY
203 ADDS XY, XY, XY
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 62 XY RN 9
236 LDR XY,=LOOP_COUNT
367 ADDS XY, XY, XY
382 ADDS XY, XY, XY
420 ADDS XY,XY,X
    [all...]
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 60 XY RN 7
147 LDR XY, =LOOP_COUNT
247 ADDS XY, XY, XY
282 ADDS XY, XY, XY
  /external/scrypt/lib/crypto/
crypto_scrypt-neon.c 128 * smix(B, r, N, V, XY):
131 * XY must be 256r bytes in length. The value N must be a power of 2.
134 smix(uint8_t * B, size_t r, uint64_t N, void * V, void * XY)
136 uint8x16_t * X = XY;
137 uint8x16_t * Y = (void *)((uintptr_t)(XY) + 128 * r);
138 uint8x16_t * Z = (void *)((uintptr_t)(XY) + 256 * r);
200 uint32_t * XY;
234 XY = (uint32_t *)(XY0);
246 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
275 smix(&B[i * 128 * r], r, N, V, XY);
    [all...]
crypto_scrypt-ref.c 171 * smix(B, r, N, V, XY):
174 * XY must be 256r bytes in length. The value N must be a power of 2.
177 smix(uint8_t * B, size_t r, uint64_t N, uint8_t * V, uint8_t * XY)
179 uint8_t * X = XY;
180 uint8_t * Y = &XY[128 * r];
226 uint8_t * XY;
256 if ((XY = malloc(256 * r)) == NULL)
271 smix(&B[i * 128 * r], r, N, V, XY);
283 free(XY);
290 free(XY);
    [all...]
crypto_scrypt-sse.c 189 * smix(B, r, N, V, XY):
192 * storage XY must be 256r + 64 bytes in length. The value N must be a
193 * power of 2 greater than 1. The arrays B, V, and XY must be aligned to a
197 smix(uint8_t * B, size_t r, uint64_t N, void * V, void * XY)
199 __m128i * X = XY;
200 __m128i * Y = (void *)((uintptr_t)(XY) + 128 * r);
201 __m128i * Z = (void *)((uintptr_t)(XY) + 256 * r);
273 uint32_t * XY;
307 XY = (uint32_t *)(XY0);
319 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63))
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.cpp 15 const uint32_t* xy,
24 uint32_t XY = *xy++;
25 unsigned y0 = XY >> 14;
27 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
54 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
121 const uint32_t* xy,
130 uint32_t XY = *xy++;
131 unsigned y0 = XY >> 14
    [all...]
SkBitmapProcState_opts_SSSE3.cpp 35 // @param xy is the location where the xy parameters for four pixels should be
39 // suitable to mask the bottom 14 bits of a XY value.
41 // suitable to mask the bottom 4 bits of a XY value.
49 inline void PrepareConstantsTwoPixelPairs(const uint32_t* xy,
58 const __m128i xx = _mm_loadu_si128(reinterpret_cast<const __m128i *>(xy));
81 // @param xy is the location where the xy parameters for four pixels should be
85 // suitable to mask the bottom 14 bits of a XY value.
87 // suitable to mask the bottom 4 bits of a XY value
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY;
44 XY *xy = a1; local
  /external/v8/test/mjsunit/regress/
regress-95485.js 42 assertEquals('XY', Test());
  /external/clang/test/Sema/
designated-initializers.c 145 struct XY { int before; struct XX xx, *xp; float* after; } xy[] = { variable in typeref:struct:XY
146 0, 0, &xy[0].xx.a, &xy[0].xx, &global_float,
147 [1].xx = 0, &xy[1].xx.a, &xy[1].xx, &global_float,
152 &xy[2].xx.a, &xy[2].xx, &global_float
  /external/libvorbis/lib/
psy.c 554 float *XY=alloca(n*sizeof(*N));
581 XY[0] = tXY;
600 XY[i] = tXY;
613 tXY = XY[hi] - XY[-lo];
635 tXY = XY[hi] - XY[lo];
664 tXY = XY[hi] - XY[-lo];
684 tXY = XY[hi] - XY[lo]
    [all...]
  /external/valgrind/none/tests/s390x/
xor.h 129 asm volatile( XY(1,0,2,000,00) \
135 printf("xy %16.16lX ^ %16.16lX = %16.16lX (cc=%d)\n", s1, s2, tmp, cc); \
opcodes.h 376 #define XY(r1,x2,b2,dl2,dh2) RXY_RRRD(e3,r1,x2,b2,dl2,dh2,57)
  /external/libopus/src/
opus_encoder.c 56 opus_val32 XX, XY, YY;
853 opus_val32 xx, xy, yy; local
862 xx=xy=yy=0;
891 xy += SHR32(pxy, 10);
895 mem->XY += MULT16_32_Q15(short_alpha, xy-mem->XY);
898 mem->XY = MAX32(0, mem->XY);
907 mem->XY = MIN32(mem->XY, sqrt_xx*sqrt_yy)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/css-element-queries/test/
mootools-core-full-nocompat.js     [all...]

Completed in 404 milliseconds