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

  /external/scrypt/lib/crypto/
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-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-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/chromium_org/third_party/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...]
  /external/chromium_org/third_party/skia/src/opts/
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...]
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...]
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY;
44 XY *xy = a1; local
  /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...]
  /external/skia/src/opts/
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...]
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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 86 XY RN 8
127 LDR XY,=LOOP_COUNT
128 M_STRD XY, pBS, pXYBS
227 M_LDRD XY, pBS, pXYBS
232 ADDS XY, XY, XY
233 M_STR XY, pXYBS
307 M_LDRD XY, pBS, pXYBS
312 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 110 XY RN 8
151 LDR XY,=LOOP_COUNT
152 M_STRD XY, pBS, pXYBS
307 M_LDRD XY, pBS, pXYBS
312 ADDS XY, XY, XY
313 M_STR XY, pXYBS
403 M_LDRD XY, pBS, pXYBS
409 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 113 XY RN 8
159 LDR XY,=LOOP_COUNT
163 M_STRD XY, pBS, pXYBS
252 M_LDRD XY, pBS, pXYBS
256 ADDS XY, XY, XY
257 M_STR XY, pXYBS
269 M_LDRD XY, pBS, pXYBS
274 ADDS XY, XY, X
    [all...]
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 139 XY RN 8
184 LDR XY,=LOOP_COUNT
188 M_STRD XY, pBS, pXYBS
423 M_LDRD XY, pBS, pXYBS
427 ADDS XY, XY, XY
430 M_STR XY, pXYBS
441 M_LDRD XY, pBS, pXYBS
446 ADDS XY, XY, X
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s 41 XY RN 7
114 LDR XY, =LOOP_COUNT
176 ADDS XY, XY, XY
189 ADDS XY, XY, XY
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 46 XY RN 7
133 LDR XY, =LOOP_COUNT
233 ADDS XY, XY, XY
268 ADDS XY, XY, XY
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 47 XY RN 9
178 LDR XY,=LOOP_COUNT
236 ADDS XY, XY, XY
245 ADDS XY, XY, XY
261 ADDS XY,XY,X
    [all...]
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s 48 XY RN 9
222 LDR XY,=LOOP_COUNT
353 ADDS XY, XY, XY
368 ADDS XY, XY, XY
406 ADDS XY,XY,X
    [all...]
  /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/chromium_org/third_party/opus/src/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/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/valgrind/main/none/tests/s390x/
opcodes.h 376 #define XY(r1,x2,b2,dl2,dh2) RXY_RRRD(e3,r1,x2,b2,dl2,dh2,57)

Completed in 1688 milliseconds