Searched refs:z2 (Results 1 - 12 of 12) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/router/jpeg-6b/
H A Djidctint.c154 INT32 z1, z2, z3, z4, z5; local
206 z2 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]);
209 z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
211 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865);
213 z2 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
216 tmp0 = (z2 + z3) << CONST_BITS;
217 tmp1 = (z2 - z3) << CONST_BITS;
234 z2 = tmp1 + tmp2;
244 z2 = MULTIPLY(z2,
[all...]
H A Djfdctint.c144 INT32 z1, z2, z3, z4, z5; local
188 z2 = tmp5 + tmp6;
198 z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
206 dataptr[5] = (DCTELEM) DESCALE(tmp5 + z2 + z4, CONST_BITS-PASS1_BITS);
207 dataptr[3] = (DCTELEM) DESCALE(tmp6 + z2 + z3, CONST_BITS-PASS1_BITS);
253 z2 = tmp5 + tmp6;
263 z2 = MULTIPLY(z2, - FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
272 dataptr[DCTSIZE*5] = (DCTELEM) DESCALE(tmp5 + z2
[all...]
H A Djfdctflt.c63 FAST_FLOAT z1, z2, z3, z4, z5, z11, z13; local
102 z2 = ((FAST_FLOAT) 0.541196100) * tmp10 + z5; /* c2-c6 */
109 dataptr[5] = z13 + z2; /* phase 6 */
110 dataptr[3] = z13 - z2;
152 z2 = ((FAST_FLOAT) 0.541196100) * tmp10 + z5; /* c2-c6 */
159 dataptr[DCTSIZE*5] = z13 + z2; /* phase 6 */
160 dataptr[DCTSIZE*3] = z13 - z2;
H A Djfdctfst.c118 DCTELEM z1, z2, z3, z4, z5, z11, z13; local
158 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
165 dataptr[5] = z13 + z2; /* phase 6 */
166 dataptr[3] = z13 - z2;
208 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
215 dataptr[DCTSIZE*5] = z13 + z2; /* phase 6 */
216 dataptr[DCTSIZE*3] = z13 - z2;
H A Djidctred.c123 INT32 z1, z2, z3, z4; local
161 z2 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]);
164 tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, - FIX_0_765366865);
172 z2 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
177 + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) */
182 + MULTIPLY(z2, - FIX_0_601344887) /* sqrt(2) * (c5-c1) */
231 z2 = (INT32) wsptr[5];
236 + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) */
241 + MULTIPLY(z2, - FIX_0_601344887) /* sqrt(2) * (c5-c1) */
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/hisax/
H A Dhfc_2bs0.c100 int rcnt, z1, z2; local
118 z2 = ReadZReg(bcs, HFC_Z2 | HFC_REC | HFC_CHANNEL(bcs->channel));
120 while (((f1 != f2) || (z1 != z2)) && cnt--) {
124 rcnt = z1 - z2;
130 debugl1(cs, "hfc clear %d z1(%x) z2(%x) cnt(%d)",
131 bcs->channel, z1, z2, rcnt);
151 z2 = ReadZReg(bcs, HFC_Z2 | HFC_REC | HFC_CHANNEL(bcs->channel));
259 int z1, z2; local
299 z2 = ReadZReg(bcs, HFC_Z2 | HFC_REC | HFC_CHANNEL(bcs->channel));
300 count = z1 - z2;
346 int z1, z2, rcnt; local
[all...]
H A Dhfc_pci.c248 bzr->za[MAX_B_FRAMES].z2 = bzr->za[MAX_B_FRAMES].z1;
274 bzt->za[MAX_B_FRAMES].z2 = bzt->za[MAX_B_FRAMES].z1;
301 new_z2 = zp->z2 + count; /* new position in fifo */
312 bz->za[new_f2].z2 = new_z2;
322 if (zp->z2 + count <= B_FIFO_SIZE + B_SUB_VAL)
325 maxlen = B_FIFO_SIZE + B_SUB_VAL - zp->z2; /* maximum */
327 ptr1 = bdata + (zp->z2 - B_SUB_VAL); /* start of data */
336 bz->za[new_f2].z2 = new_z2;
366 rcnt = zp->z1 - zp->z2;
371 debugl1(cs, "hfcpci recd f1(%d) f2(%d) z1(%x) z2(
[all...]
H A Dhfc_sx.c136 int fifo_size, count, z1, z2; local
158 z2 = Read_hfc(cs, HFCSX_FIF_Z2H);
159 z2 = ((z2 << 8) | Read_hfc(cs, HFCSX_FIF_Z2L));
160 count = z2 - z1;
224 { int fifo_size, count, z1, z2; local
244 z2 = Read_hfc(cs, HFCSX_FIF_Z2H);
245 z2 = ((z2 << 8) | Read_hfc(cs, HFCSX_FIF_Z2L));
247 count = z1 - z2;
[all...]
H A Dhfc_pci.h187 unsigned short z2; /* Z2 pointer 16 Bit */ member in struct:__anon1513
H A Dhfc_2bds0.c406 int z1, z2, rcnt; local
434 z2 = ReadZReg(cs, HFCB_FIFO | HFCB_Z2 | HFCB_REC | HFCB_CHANNEL(bcs->channel));
436 rcnt = z1 - z2;
441 debugl1(cs, "hfc rec %d z1(%x) z2(%x) cnt(%d)",
442 bcs->channel, z1, z2, rcnt);
660 int rcnt, z1, z2; local
682 z2 = ReadZReg(cs, HFCD_FIFO | HFCD_Z2 | HFCD_REC);
683 rcnt = z1 - z2;
688 debugl1(cs, "hfcd recd f1(%d) f2(%d) z1(%x) z2(%x) cnt(%d)",
689 f1, f2, z1, z2, rcn
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/
H A Dclgenfb.c2620 struct zorro_dev *z = NULL, *z2 = NULL; local
2626 if (clgen_zorro_find (&z, &z2, btype, &size))
2630 assert (z2 >= 0);
2660 printk (" REG at $%lx\n", (unsigned long) z2->resource.start);
2669 info->regs = (caddr_t) ZTWO_VADDR (z2->resource.start);
2670 info->fbregs_phys = z2->resource.start;
H A Dcgsixfb.c167 volatile u32 x2, y2, z2, color2; member in struct:cg6_fbc

Completed in 69 milliseconds