Searched defs:XY (Results 1 - 15 of 15) sorted by relevance

/external/scrypt/lib/crypto/
H A Dcrypto_scrypt-neon.c127 * smix(B, r, N, V, XY):
130 * XY must be 256r bytes in length. The value N must be a power of 2.
133 smix(uint8_t * B, size_t r, uint64_t N, void * V, void * XY) argument
135 uint8x16_t * X = XY;
136 uint8x16_t * Y = (void *)((uintptr_t)(XY) + 128 * r);
137 uint8x16_t * Z = (void *)((uintptr_t)(XY) + 256 * r);
199 uint32_t * XY; local
233 XY = (uint32_t *)(XY0);
245 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
274 smix(&B[i * 128 * r], r, N, V, XY);
[all...]
H A Dcrypto_scrypt-ref.c171 * 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) argument
179 uint8_t * X = XY;
180 uint8_t * Y = &XY[128 * r];
226 uint8_t * XY; local
256 if ((XY = malloc(256 * r)) == NULL)
271 smix(&B[i * 128 * r], r, N, V, XY);
283 free(XY);
290 free(XY);
[all...]
H A Dcrypto_scrypt-sse.c189 * 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) argument
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; local
307 XY = (uint32_t *)(XY0);
319 XY
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
H A Dfetch_jit.h66 XY = 0x3, enumerator in enum:ComponentEnable
/external/skia/gm/
H A Dtilemodes.cpp297 const struct XY { struct
/external/skia/src/core/
H A DSkBitmapProcState_sample.h37 uint32_t XY; local
41 XY = *xy++;
42 SkASSERT((XY >> 16) < (unsigned)s.fPixmap.height() &&
43 (XY & 0xFFFF) < (unsigned)s.fPixmap.width());
44 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
47 XY = *xy++;
48 SkASSERT((XY >> 16) < (unsigned)s.fPixmap.height() &&
49 (XY & 0xFFFF) < (unsigned)s.fPixmap.width());
50 src = ((const SRCTYPE*)(srcAddr + (XY >> 1
139 uint32_t XY = *xy++; local
[all...]
/external/skia/src/opts/
H A DSkBitmapProcState_opts_SSE2.cpp25 uint32_t XY = *xy++; local
26 unsigned y0 = XY >> 14;
28 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
131 uint32_t XY = *xy++; local
132 unsigned y0 = XY >> 14;
134 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
H A DSkBitmapProcState_opts_SSSE3.cpp33 // suitable to mask the bottom 14 bits of a XY value.
35 // suitable to mask the bottom 4 bits of a XY value.
79 // suitable to mask the bottom 14 bits of a XY value.
81 // suitable to mask the bottom 4 bits of a XY value.
402 const uint32_t XY = *xy++; local
403 const unsigned y0 = XY >> 14;
407 reinterpret_cast<const uint32_t*>(src_addr + (XY & 0x3FFF) * rb);
/external/skqp/src/core/
H A DSkBitmapProcState_sample.h37 uint32_t XY; local
41 XY = *xy++;
42 SkASSERT((XY >> 16) < (unsigned)s.fPixmap.height() &&
43 (XY & 0xFFFF) < (unsigned)s.fPixmap.width());
44 src = ((const SRCTYPE*)(srcAddr + (XY >> 16) * rb))[XY & 0xFFFF];
47 XY = *xy++;
48 SkASSERT((XY >> 16) < (unsigned)s.fPixmap.height() &&
49 (XY & 0xFFFF) < (unsigned)s.fPixmap.width());
50 src = ((const SRCTYPE*)(srcAddr + (XY >> 1
139 uint32_t XY = *xy++; local
[all...]
/external/skqp/src/opts/
H A DSkBitmapProcState_opts_SSE2.cpp25 uint32_t XY = *xy++; local
26 unsigned y0 = XY >> 14;
28 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
131 uint32_t XY = *xy++; local
132 unsigned y0 = XY >> 14;
134 const uint32_t* row1 = reinterpret_cast<const uint32_t*>(srcAddr + (XY & 0x3FFF) * rb);
H A DSkBitmapProcState_opts_SSSE3.cpp33 // suitable to mask the bottom 14 bits of a XY value.
35 // suitable to mask the bottom 4 bits of a XY value.
79 // suitable to mask the bottom 14 bits of a XY value.
81 // suitable to mask the bottom 4 bits of a XY value.
402 const uint32_t XY = *xy++; local
403 const unsigned y0 = XY >> 14;
407 reinterpret_cast<const uint32_t*>(src_addr + (XY & 0x3FFF) * rb);
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-2.cpp43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY; typedef
44 XY *xy = a1;
/external/clang/test/Sema/
H A Ddesignated-initializers.c145 struct XY { int before; struct XX xx, *xp; float* after; } xy[] = { struct
/external/libopus/src/
H A Dopus_encoder.c61 opus_val32 XX, XY, YY; member in struct:__anon12275
703 mem->XY += MULT16_32_Q15(short_alpha, xy-mem->XY);
706 mem->XY = MAX32(0, mem->XY);
718 mem->XY = MIN32(mem->XY, sqrt_xx*sqrt_yy);
719 corr = SHR32(frac_div32(mem->XY,EPSILON+MULT16_16(sqrt_xx,sqrt_yy)),16);
/external/valgrind/none/tests/s390x/
H A Dopcodes.h380 #define XY(r1,x2,b2,dl2,dh2) RXY_RRRD(e3,r1,x2,b2,dl2,dh2,57) macro

Completed in 1981 milliseconds