HomeSort by relevance Sort by last modified time
    Searched refs:z4 (Results 1 - 25 of 32) sorted by null

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
Well19937c.java 98 int z4 = z0 ^ (z1 ^ (z1 << 9)) ^ (z2 ^ (z2 << 21)) ^ (z3 ^ (z3 >>> 21)); local
101 v[indexRm1] = z4;
108 z4 = z4 ^ ((z4 << 7) & 0xe46e1700);
109 z4 = z4 ^ ((z4 << 15) & 0x9b868000);
111 return z4 >>> (32 - bits);
Well44497b.java 103 int z4 = z0 ^ (z1 ^ (z1 >>> 20)) ^ z2Second ^ z3; local
106 v[indexRm1] = z4;
112 z4 = z4 ^ ((z4 << 7) & 0x93dd1400);
113 z4 = z4 ^ ((z4 << 15) & 0xfa118000);
115 return z4 >>> (32 - bits);
Well1024a.java 97 final int z4 = (z0 ^ (z0 << 11)) ^ (z1 ^ (z1 << 7)) ^ (z2 ^ (z2 << 13)); local
100 v[indexRm1] = z4;
103 return z4 >>> (32 - bits);
Well19937a.java 98 final int z4 = z0 ^ (z1 ^ (z1 << 9)) ^ (z2 ^ (z2 << 21)) ^ (z3 ^ (z3 >>> 21)); local
101 v[indexRm1] = z4;
105 return z4 >>> (32 - bits);
Well44497a.java 101 final int z4 = z0 ^ (z1 ^ (z1 >>> 20)) ^ z2Second ^ z3; local
104 v[indexRm1] = z4;
108 return z4 >>> (32 - bits);
Well512a.java 97 final int z4 = (z0 ^ (z0 << 2)) ^ (z1 ^ (z1 << 18)) ^ (z2 << 28) ^ (z3 ^ ((z3 << 5) & 0xda442d24)); local
100 v[indexRm1] = z4;
103 return z4 >>> (32 - bits);
  /external/jpeg/
jfdctint.c 144 INT32 z1, z2, z3, z4, z5; local
190 z4 = tmp5 + tmp7;
191 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
200 z4 = MULTIPLY(z4, - FIX_0_390180644); /* sqrt(2) * (c5-c3) */
203 z4 += z5;
206 dataptr[5] = (DCTELEM) DESCALE(tmp5 + z2 + z4, CONST_BITS-PASS1_BITS);
208 dataptr[1] = (DCTELEM) DESCALE(tmp7 + z1 + z4, CONST_BITS-PASS1_BITS);
255 z4 = tmp5 + tmp7;
256 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 *
    [all...]
jidctint.c 154 INT32 z1, z2, z3, z4, z5; local
236 z4 = tmp1 + tmp3;
237 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
246 z4 = MULTIPLY(z4, - FIX_0_390180644); /* sqrt(2) * (c5-c3) */
249 z4 += z5;
252 tmp1 += z2 + z4;
254 tmp3 += z1 + z4;
338 z4 = tmp1 + tmp3;
339 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 *
    [all...]
jfdctflt.c 63 FAST_FLOAT z1, z2, z3, z4, z5, z11, z13; local
103 z4 = ((FAST_FLOAT) 1.306562965) * tmp12 + z5; /* c2+c6 */
111 dataptr[1] = z11 + z4;
112 dataptr[7] = z11 - z4;
153 z4 = ((FAST_FLOAT) 1.306562965) * tmp12 + z5; /* c2+c6 */
161 dataptr[DCTSIZE*1] = z11 + z4;
162 dataptr[DCTSIZE*7] = z11 - z4;
jfdctfst.c 118 DCTELEM z1, z2, z3, z4, z5, z11, z13; local
159 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
167 dataptr[1] = z11 + z4;
168 dataptr[7] = z11 - z4;
209 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
217 dataptr[DCTSIZE*1] = z11 + z4;
218 dataptr[DCTSIZE*7] = z11 - z4;
jidctred.c 123 INT32 z1, z2, z3, z4; local
174 z4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
179 + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
184 + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
233 z4 = (INT32) wsptr[1];
238 + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
243 + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jfdctint.c 145 INT32 z1, z2, z3, z4, z5; local
191 z4 = tmp5 + tmp7;
192 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
201 z4 = MULTIPLY(z4, - FIX_0_390180644); /* sqrt(2) * (c5-c3) */
204 z4 += z5;
207 dataptr[5] = (DCTELEM) DESCALE(tmp5 + z2 + z4, CONST_BITS-PASS1_BITS);
209 dataptr[1] = (DCTELEM) DESCALE(tmp7 + z1 + z4, CONST_BITS-PASS1_BITS);
256 z4 = tmp5 + tmp7;
257 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 *
    [all...]
fpdfapi_jidctint.c 155 INT32 z1, z2, z3, z4, z5; local
237 z4 = tmp1 + tmp3;
238 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
247 z4 = MULTIPLY(z4, - FIX_0_390180644); /* sqrt(2) * (c5-c3) */
250 z4 += z5;
253 tmp1 += z2 + z4;
255 tmp3 += z1 + z4;
339 z4 = tmp1 + tmp3;
340 z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 *
    [all...]
fpdfapi_jfdctfst.c 119 DCTELEM z1, z2, z3, z4, z5, z11, z13; local
160 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
168 dataptr[1] = z11 + z4;
169 dataptr[7] = z11 - z4;
210 z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
218 dataptr[DCTSIZE*1] = z11 + z4;
219 dataptr[DCTSIZE*7] = z11 - z4;
fpdfapi_jidctred.c 124 INT32 z1, z2, z3, z4; local
175 z4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
180 + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
185 + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
234 z4 = (INT32) wsptr[1];
239 + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
244 + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
  /external/clang/test/CodeGenCXX/
microsoft-abi-vtables-multiple-nonvirtual-inheritance-vdtors.cpp 34 virtual void z4();
41 // CHECK-NEXT: 0 | void D::z4()
61 // CHECK-NEXT: 0 | void D::z4()
79 // CHECK-NEXT: 0 | void D::z4()
  /external/compiler-rt/test/asan/TestCases/
stack-overflow.cc 30 volatile int z0, z1, z2, z3, z4, z5, z6, z7, z8, z9, z10, z11, z12, z13; variable
42 t4 = z4;
57 z4 = t4;
  /external/clang/test/Index/
load-stmts.cpp 8 switch (T z4 = x) {
149 // CHECK: load-stmts.cpp:8:13: VarDecl=z4:8:13 (Definition) Extent=[8:11 - 8:19]
152 // CHECK: load-stmts.cpp:8:13: DeclRefExpr=z4:8:13 Extent=[8:13 - 8:15]
  /frameworks/rs/driver/
rsdGL.h 93 float x4, float y4, float z4, float u4, float v4);
rsdRuntimeStubs.cpp 558 float x4, float y4, float z4, float u4, float v4) {
574 //ALOGE("%4.2f, %4.2f, %4.2f", x4, y4, z4);
576 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
592 float x4, float y4, float z4) {
596 x4, y4, z4, 0, 0);
730 float x4, float y4, float z4) {
734 x4, y4, z4);
740 float x4, float y4, float z4, float u4, float v4) {
744 x4, y4, z4, u4, v4);
    [all...]
rsdGL.cpp 538 float x4, float y4, float z4, float u4, float v4) {
540 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
  /external/mesa3d/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
572 z4 = z0 - 1.0f + 4.0f * G4;
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4;
633 y4, z4, w4);
  /frameworks/rs/
rsFont.h 252 float x4, float y4, float z4,
  /frameworks/rs/scriptc/
rs_graphics.rsh 817 float z3, float x4, float y4, float z4);
838 float v3, float x4, float y4, float z4, float u4, float v4);
    [all...]
  /prebuilts/sdk/renderscript/include/
rs_graphics.rsh 817 float z3, float x4, float y4, float z4);
838 float v3, float x4, float y4, float z4, float u4, float v4);
    [all...]

Completed in 543 milliseconds

1 2