Searched refs:z4 (Results 1 - 24 of 24) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DWell19937c.java98 int z4 = z0 ^ (z1 ^ (z1 << 9)) ^ (z2 ^ (z2 << 21)) ^ (z3 ^ (z3 >>> 21));
101 v[indexRm1] = z4;
108 z4 = z4 ^ ((z4 << 7) & 0xe46e1700);
109 z4 = z4 ^ ((z4 << 15) & 0x9b868000);
111 return z4 >>> (32 - bits);
H A DWell44497b.java103 int z4 = z0 ^ (z1 ^ (z1 >>> 20)) ^ z2Second ^ z3;
106 v[indexRm1] = z4;
112 z4 = z4 ^ ((z4 << 7) & 0x93dd1400);
113 z4 = z4 ^ ((z4 << 15) & 0xfa118000);
115 return z4 >>> (32 - bits);
H A DWell1024a.java97 final int z4 = (z0 ^ (z0 << 11)) ^ (z1 ^ (z1 << 7)) ^ (z2 ^ (z2 << 13));
100 v[indexRm1] = z4;
103 return z4 >>> (32 - bits);
H A DWell19937a.java98 final int z4 = z0 ^ (z1 ^ (z1 << 9)) ^ (z2 ^ (z2 << 21)) ^ (z3 ^ (z3 >>> 21));
101 v[indexRm1] = z4;
105 return z4 >>> (32 - bits);
H A DWell44497a.java101 final int z4 = z0 ^ (z1 ^ (z1 >>> 20)) ^ z2Second ^ z3;
104 v[indexRm1] = z4;
108 return z4 >>> (32 - bits);
H A DWell512a.java97 final int z4 = (z0 ^ (z0 << 2)) ^ (z1 ^ (z1 << 18)) ^ (z2 << 28) ^ (z3 ^ ((z3 << 5) & 0xda442d24));
100 v[indexRm1] = z4;
103 return z4 >>> (32 - bits);
/external/jpeg/
H A Djfdctint.c144 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_17587560
[all...]
H A Djidctint.c154 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_17587560
[all...]
H A Djfdctflt.c63 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;
H A Djfdctfst.c118 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;
H A Djidctred.c123 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/
H A Dfpdfapi_jfdctint.c145 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_17587560
[all...]
H A Dfpdfapi_jidctint.c155 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_17587560
[all...]
H A Dfpdfapi_jfdctfst.c119 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;
H A Dfpdfapi_jidctred.c124 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/
H A Dmicrosoft-abi-vtables-multiple-nonvirtual-inheritance-vdtors.cpp34 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/
H A Dstack-overflow.cc30 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/
H A Dload-stmts.cpp8 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]
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c529 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);
/external/v8/test/mjsunit/
H A Dlarge-object-allocation.js161 this.z4 = i;
/external/libavc/common/arm/
H A Dih264_iquant_itrans_recon_a9.s629 vsub.s16 q2, q9, q6 @ Q2 = z4
751 vsub.s16 q2, q9, q6 @ Q2 = z4
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js[all...]

Completed in 344 milliseconds