Home
last modified time | relevance | path

Searched refs:z1 (Results 1 – 25 of 42) sorted by relevance

12

/linux/arch/arm/nwfpe/
H A Dsoftfloat-macros111 z1 = a1;
127 *z1Ptr = z1;
149 z1 = a1;
160 *z1Ptr = z1;
185 z1 = a1;
204 *z1Ptr = z1;
348 bits64 z1;
505 add128( z0, more1, 0, z1, &z0, &z1 );
537 add128( z1, more2, 0, z2, &z1, &z2 );
539 add128( z0, more1, 0, z1, &z0, &z1 );
[all …]
/linux/drivers/isdn/mISDN/
H A Ddsp_biquad.h22 int32_t z1; member
35 bq->z1 = 0; in biquad2_init()
44 z0 = sample * bq->gain + bq->z1 * bq->a1 + bq->z2 * bq->a2; in biquad2()
45 y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2; in biquad2()
47 bq->z2 = bq->z1; in biquad2()
48 bq->z1 = z0 >> 15; in biquad2()
/linux/Documentation/devicetree/bindings/input/touchscreen/
H A Dresistive-adc-touch.yaml30 - description: z1 (optional)
43 - enum: [x, y, z1, z2]
44 - enum: [x, y, z1, z2]
45 - enum: [x, y, z1, z2]
46 - enum: [x, y, z1, z2]
84 io-channel-names = "x", "z1", "z2", "y";
/linux/tools/memory-model/litmus-tests/
H A Ddep+plain.litmus8 * The data stored to *z1 and *z2 by P0() originates from P0()'s
16 P0(int *x, int *y, int *z1, int *z2)
19 *z1 = a;
20 *z2 = *z1;
/linux/drivers/input/touchscreen/
H A Dbu21029_ts.c167 u16 x, y, z1, z2; in bu21029_touch_report() local
183 z1 = (buf[4] << 4) | (buf[5] >> 4); in bu21029_touch_report()
186 if (z1 && z2) { in bu21029_touch_report()
194 rz = z2 - z1; in bu21029_touch_report()
197 rz /= z1; in bu21029_touch_report()
H A D88pm860x-ts.c54 int z1, z2, rt = 0; in pm860x_touch_handler() local
64 z1 = ((buf[4] & 0xFF) << 4) | (buf[5] & 0x0F); in pm860x_touch_handler()
68 if ((x != 0) && (z1 != 0) && (touch->res_x != 0)) { in pm860x_touch_handler()
69 rt = z2 / z1 - 1; in pm860x_touch_handler()
72 z1, z2, rt); in pm860x_touch_handler()
H A Dtsc200x-core.c70 u16 z1; member
155 if (unlikely(tsdata.z1 == 0 || tsdata.z2 > MAX_12BIT)) in tsc200x_irq_thread()
157 if (unlikely(tsdata.z1 >= tsdata.z2)) in tsc200x_irq_thread()
166 ts->in_z1 == tsdata.z1 && ts->in_z2 == tsdata.z2) { in tsc200x_irq_thread()
176 ts->in_z1 = tsdata.z1; in tsc200x_irq_thread()
180 pressure = tsdata.x * (tsdata.z2 - tsdata.z1) / tsdata.z1; in tsc200x_irq_thread()
H A Dti_am335x_tsc.c224 u32 *x, u32 *y, u32 *z1, u32 *z2) in titsc_read_coordinates() argument
235 *z1 = titsc_readl(ts_dev, REG_FIFO0); in titsc_read_coordinates()
236 *z1 &= 0xfff; in titsc_read_coordinates()
281 unsigned int z1, z2, z; in titsc_irq() local
313 titsc_read_coordinates(ts_dev, &x, &y, &z1, &z2); in titsc_irq()
315 if (ts_dev->pen_down && z1 != 0 && z2 != 0) { in titsc_irq()
321 z = z1 - z2; in titsc_irq()
H A Dresistive-adc-touch.c70 unsigned int z1 = touch_info[st->ch_map[GRTS_CH_Z1]]; in grts_cb() local
74 if (likely(x && z1)) { in grts_cb()
76 Rt -= z1; in grts_cb()
80 Rt /= z1; in grts_cb()
H A Dtsc2007_core.c62 tc->z1 = tsc2007_xfer(tsc, READ_Z1); in tsc2007_read_values()
77 if (likely(tc->x && tc->z1)) { in tsc2007_calculate_resistance()
79 rt = tc->z2 - tc->z1; in tsc2007_calculate_resistance()
82 rt /= tc->z1; in tsc2007_calculate_resistance()
H A Dads7846.c91 u16 x, y, z1, z2; member
189 #define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref))
711 packet->z1 = val; in ads7846_set_cmd_val()
825 u16 x, y, z1, z2; in ads7846_report_state() local
830 z1 = 0; in ads7846_report_state()
833 z1 = packet->z1; in ads7846_report_state()
843 } else if (likely(x && z1)) { in ads7846_report_state()
846 Rt -= z1; in ads7846_report_state()
850 Rt /= z1; in ads7846_report_state()
H A Dad7879.c169 u16 x, y, z1, z2; in ad7879_report() local
173 z1 = ts->conversion_data[AD7879_SEQ_Z1] & MAX_12BIT; in ad7879_report()
191 if (likely(x && z1)) { in ad7879_report()
193 Rt = (z2 - z1) * x * ts->x_plate_ohms; in ad7879_report()
194 Rt /= z1; in ad7879_report()
H A Dad7877.c323 u16 x, y, z1, z2; in ad7877_process_data() local
327 z1 = ts->conversion_data[AD7877_SEQ_Z1] & MAX_12BIT; in ad7877_process_data()
340 if (likely(x && z1)) { in ad7877_process_data()
342 Rt = (z2 - z1) * x * ts->x_plate_ohms; in ad7877_process_data()
343 Rt /= z1; in ad7877_process_data()
H A Dtsc2007.h57 u16 z1, z2; member
H A Dtsc2007_iio.c74 tc.z1 = tsc2007_xfer(tsc, READ_Z1); in tsc2007_read_raw()
/linux/crypto/
H A Decc.c1138 if (vli_is_zero(z1, ndigits)) in ecc_point_double_jacobian()
1148 vli_mod_mult_fast(y1, y1, z1, curve); in ecc_point_double_jacobian()
1150 vli_mod_square_fast(z1, z1, curve); in ecc_point_double_jacobian()
1155 vli_mod_add(z1, z1, z1, curve_prime, ndigits); in ecc_point_double_jacobian()
1157 vli_mod_sub(z1, x1, z1, curve_prime, ndigits); in ecc_point_double_jacobian()
1159 vli_mod_mult_fast(x1, x1, z1, curve); in ecc_point_double_jacobian()
1176 vli_mod_square_fast(z1, x1, curve); in ecc_point_double_jacobian()
1178 vli_mod_sub(z1, z1, t5, curve_prime, ndigits); in ecc_point_double_jacobian()
1180 vli_mod_sub(z1, z1, t5, curve_prime, ndigits); in ecc_point_double_jacobian()
1188 vli_set(x1, z1, ndigits); in ecc_point_double_jacobian()
[all …]
H A Decrdsa.c83 u64 z1[ECRDSA_MAX_DIGITS]; in ecrdsa_verify() local
133 vli_mod_mult_slow(z1, s, v, ctx->curve->n, ndigits); in ecrdsa_verify()
138 ecc_point_mult_shamir(&cc, z1, &ctx->curve->g, z2, &ctx->pub_key, in ecrdsa_verify()
/linux/lib/crypto/mpi/
H A Dec.c689 MPI z1, z2, z3; in mpi_ec_get_affine() local
691 z1 = mpi_new(0); in mpi_ec_get_affine()
694 ec_mulm(z2, z1, z1, ctx); /* z2 = z^(-2) mod p */ in mpi_ec_get_affine()
707 mpi_free(z1); in mpi_ec_get_affine()
940 #define z1 (p1->z) in add_points_weierstrass() macro
987 ec_pow2(l2, z1, ctx); in add_points_weierstrass()
1038 #undef z1 in add_points_weierstrass()
1217 MPI x1, y1, z1, k, h, yy; in mpi_ec_mul_point() local
1308 z1 = mpi_new(0); in mpi_ec_mul_point()
1312 mpi_free(z1); in mpi_ec_mul_point()
[all …]
/linux/drivers/isdn/hardware/mISDN/
H A Dhfcpci.c343 le16_to_cpu(bzr->za[MAX_B_FRAMES].z1)); in hfcpci_clear_fifo_rx()
371 le16_to_cpu(bzt->za[MAX_B_FRAMES].z1), in hfcpci_clear_fifo_tx()
385 le16_to_cpu(bzt->za[MAX_B_FRAMES].z1), in hfcpci_clear_fifo_tx()
473 le16_to_cpu(zp->z1), in receive_dmsg()
478 (df->data[le16_to_cpu(zp->z1)])) { in receive_dmsg()
484 df->data[le16_to_cpu(zp->z1)]); in receive_dmsg()
543 z1t = &txbz->za[MAX_B_FRAMES].z1; in hfcpci_empty_fifo_trans()
633 bch->nr, le16_to_cpu(zp->z1), in main_rec_hfcpci()
768 z1t = &bz->za[MAX_B_FRAMES].z1; in hfcpci_fill_fifo()
851 bz->za[bz->f1].z1); in hfcpci_fill_fifo()
[all …]
/linux/arch/sh/kernel/cpu/sh4/
H A Dsoftfloat.c641 bits64 z1; in add128() local
643 z1 = a1 + b1; in add128()
644 *z1Ptr = z1; in add128()
645 *z0Ptr = a0 + b0 + (z1 < a1); in add128()
685 bits64 z0, zMiddleA, zMiddleB, z1; in mul64To128() local
691 z1 = ((bits64) aLow) * bLow; in mul64To128()
698 z1 += zMiddleA; in mul64To128()
699 z0 += (z1 < zMiddleA); in mul64To128()
700 *z1Ptr = z1; in mul64To128()
/linux/arch/x86/crypto/
H A Dcurve25519-x86_64.c1541 u64 *z1 = &tmp[4]; in curve25519_ever64_base() local
1560 z1[0] = 1, z1[1] = z1[2] = z1[3] = 0; in curve25519_ever64_base()
1572 fsub(b, x1, z1); in curve25519_ever64_base()
1573 fadd(a, x1, z1); in curve25519_ever64_base()
H A Daria-gfni-avx512-asm_64.S425 z0, z1, z2, z3, \ argument
436 z0, z1, z2, z3, \
439 aria_diff_m(x0, x1, x2, x3, z0, z1, z2, z3); \
440 aria_diff_m(x4, x5, x6, x7, z0, z1, z2, z3); \
441 aria_diff_m(y0, y1, y2, y3, z0, z1, z2, z3); \
442 aria_diff_m(y4, y5, y6, y7, z0, z1, z2, z3); \
465 z0, z1, z2, z3, \ argument
476 z0, z1, z2, z3, \
479 aria_diff_m(x0, x1, x2, x3, z0, z1, z2, z3); \
504 z0, z1, z2, z3, \ argument
[all …]
/linux/Documentation/input/devices/
H A Dalps.rst114 byte 5: 0 z6 z5 z4 z3 z2 z1 z0
126 byte 5: 0 z6 z5 z4 z3 z2 z1 z0
147 byte 8: 0 z6 z5 z4 z3 z2 z1 z0
168 byte 5: 0 z6 z5 z4 z3 z2 z1 z0
196 byte 4: 0 z6 z5 z4 z3 z2 z1 z0
212 byte 5: 0 z6 z5 z4 z3 z2 z1 z0
260 byte 5: 0 z6 z5 z4 z3 z2 z1 z0
290 byte 5: z7 z6 z5 z4 z3 z2 z1 z0
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6qdl-skov-cpu-revc.dtsi9 io-channel-names = "y", "z1", "z2", "x";
/linux/arch/arm64/boot/dts/freescale/
H A Dimx8mp-skov-revb-lt6.dts14 io-channel-names = "y", "z1", "z2", "x";

12