/openbmc/linux/arch/arm/nwfpe/ |
H A D | softfloat-macros | 107 bits64 z0, z1; 111 z1 = a1; 115 z1 = ( a0<<negCount ) | ( a1 != 0 ); 120 z1 = a0 | ( a1 != 0 ); 123 z1 = ( ( a0 | a1 ) != 0 ); 127 *z1Ptr = z1; 145 bits64 z0, z1; 149 z1 = a1; 153 z1 = ( a0<<negCount ) | ( a1>>count ); 157 z1 = ( count < 64 ) ? ( a0>>( count & 63 ) ) : 0; [all …]
|
/openbmc/linux/drivers/isdn/mISDN/ |
H A D | dsp_biquad.h | 22 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()
|
/openbmc/linux/Documentation/devicetree/bindings/input/touchscreen/ |
H A D | resistive-adc-touch.yaml | 30 - 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";
|
/openbmc/linux/tools/memory-model/litmus-tests/ |
H A D | dep+plain.litmus | 8 * 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;
|
/openbmc/qemu/include/fpu/ |
H A D | softfloat-macros.h | 192 uint64_t z0, z1; in shift64ExtraRightJamming() local 196 z1 = a1; in shift64ExtraRightJamming() 200 z1 = ( a0<<negCount ) | ( a1 != 0 ); in shift64ExtraRightJamming() 205 z1 = a0 | ( a1 != 0 ); in shift64ExtraRightJamming() 208 z1 = ( ( a0 | a1 ) != 0 ); in shift64ExtraRightJamming() 212 *z1Ptr = z1; in shift64ExtraRightJamming() 229 uint64_t z0, z1; in shift128Right() local 233 z1 = a1; in shift128Right() 237 z1 = ( a0<<negCount ) | ( a1>>count ); in shift128Right() 241 z1 = (count < 128) ? (a0 >> (count & 63)) : 0; in shift128Right() [all …]
|
/openbmc/qemu/tests/tcg/aarch64/ |
H A D | sme-smopa-1.c | 19 "movprfx z1, z0\n\t" in main() 20 "add z1.b, z1.b, #16\n\t" in main() 22 "smopa za0.s, p0/m, p0/m, z0.b, z1.b\n\t" in main()
|
H A D | sme-smopa-2.c | 25 "movprfx z1, z0\n\t" in main() 26 "add z1.h, z1.h, #16\n\t" in main() 28 "smopa za0.d, p0/m, p0/m, z0.h, z1.h\n\t" in main()
|
H A D | test-826.c | 44 "ldnt1h {z1.d}, p0/z, [z0.d, %1]\n\t" in main() 45 "dup z1.d, %1\n\t" in main() 46 "ldnt1h {z0.d}, p0/z, [z1.d, %0]" in main()
|
H A D | sme-fmopa-1.c | 26 "mova z1.s, p0/m, za1v.s[w12, #1]\n\t" in foo() 34 "st1w {z1.s}, p0, [x0]\n\t" in foo()
|
H A D | sme-outprod1.c | 35 " mova z1.s, p0/m, za1v.s[w12, #1]\n" 43 " st1w {z1.s}, p0, [x0]\n"
|
/openbmc/linux/lib/crypto/mpi/ |
H A D | ec.c | 689 MPI z1, z2, z3; in mpi_ec_get_affine() local 691 z1 = mpi_new(0); in mpi_ec_get_affine() 693 ec_invm(z1, point->z, ctx); /* z1 = z^(-1) mod p */ in mpi_ec_get_affine() 694 ec_mulm(z2, z1, z1, ctx); /* z2 = z^(-2) mod p */ in mpi_ec_get_affine() 701 ec_mulm(z3, z2, z1, ctx); /* z3 = z^(-3) mod p */ in mpi_ec_get_affine() 707 mpi_free(z1); in mpi_ec_get_affine() 850 #define Z1 (point->z) in dup_point_edwards() macro 883 ctx->pow2(H, Z1, ctx); in dup_point_edwards() 903 #undef Z1 in dup_point_edwards() 940 #define z1 (p1->z) in add_points_weierstrass() macro [all …]
|
/openbmc/linux/drivers/input/touchscreen/ |
H A D | resistive-adc-touch.c | 70 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() 175 /* if no pressure is defined, try optional z1 + z2 */ in grts_get_properties() 176 error = grts_map_channel(st, dev, GRTS_CH_Z1, "z1", true); in grts_get_properties() 183 /* if z1 is provided z2 is not optional */ in grts_get_properties()
|
H A D | 88pm860x-ts.c | 54 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() 71 dev_dbg(chip->dev, "z1:%d, z2:%d, rt:%d\n", in pm860x_touch_handler() 72 z1, z2, rt); in pm860x_touch_handler()
|
H A D | tsc200x-core.c | 33 * 5) tsc200x_irq_thread() queues up a transfer to fetch the x, y, z1, z2 70 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 D | ti_am335x_tsc.c | 225 u32 *x, u32 *y, u32 *z1, u32 *z2) in titsc_read_coordinates() argument 236 *z1 = titsc_readl(ts_dev, REG_FIFO0); in titsc_read_coordinates() 237 *z1 &= 0xfff; in titsc_read_coordinates() 282 unsigned int z1, z2, z; in titsc_irq() local 314 titsc_read_coordinates(ts_dev, &x, &y, &z1, &z2); in titsc_irq() 316 if (ts_dev->pen_down && z1 != 0 && z2 != 0) { in titsc_irq() 320 * x position/4096 * ((z2 / z1) - 1) in titsc_irq() 322 z = z1 - z2; in titsc_irq()
|
H A D | ads7846.c | 91 u16 x, y, z1, z2; member 189 #define READ_Z1(vref) (READ_12BIT_DFR(z1, 1, vref)) 207 * Measure: Z1; Vref: Y+, X-; IN: X+ 714 packet->z1 = val; in ads7846_set_cmd_val() 828 u16 x, y, z1, z2; in ads7846_report_state() local 833 z1 = 0; in ads7846_report_state() 836 z1 = packet->z1; in ads7846_report_state() 846 } else if (likely(x && z1)) { in ads7846_report_state() 849 Rt -= z1; in ads7846_report_state() 853 Rt /= z1; in ads7846_report_state() [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/bc/bc/ |
H A D | libmath.h | 2 "@iF1,5.6,7,8,9,10,11,12,13,14,15[l0:KA:#Z1:l0:s7:pKA:s0:pl5:C1,0:", 9 "@iF2,5.7,9,10,11,12,13,14,15[l0:KA:#Z1:l0:s7:pKA:s0:pl5:C2,0:", 16 "@iF3,5.7,9,11,12,13,16,14,15[l0:KA:#Z1:l0:s7:pKA:s0:pl5:C3,0:", 23 "@iF5,5.7,14,15[l0:KA:#Z1:l0:s7:pKA:s0:pl5:C5,0:s14:pl7:s0:pl14:", 26 "@iF4,5.6,7,9,10,11,12,13,16,14,15[l0:KA:#Z1:l0:s7:pKA:s0:pl5:", 39 "@iF6,13,5.6,7,8,9,10,11,12,16,14,15[l0:KA:#Z1:l0:s7:pKA:s0:pl13:",
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | vec_string_helper.c | 83 uint64_t a0, a1, b0, b1, e0, e1, t0, t1, z0, z1; in vfae() local 112 z1 = zero_search(a1, mask); in vfae() 113 first_zero = match_index(z0, z1); in vfae() 167 uint64_t a0, a1, b0, b1, e0, e1, z0, z1; in vfee() local 181 z1 = zero_search(a1, mask); in vfee() 182 first_zero = match_index(z0, z1); in vfee() 224 uint64_t a0, a1, b0, b1, e0, e1, z0, z1; in vfene() local 248 z1 = zero_search(a1, mask); in vfene() 249 first_zero = match_index(z0, z1); in vfene() 353 uint64_t z0, z1; in vstrc() local [all …]
|
/openbmc/linux/Documentation/input/devices/ |
H A D | alps.rst | 114 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 280 byte 4: Z7 Z6 Z5 Z4 Z3 Z2 Z1 Z0 290 byte 5: z7 z6 z5 z4 z3 z2 z1 z0 304 byte 5: T&P 0 Z5 Z4 Z3 Z2 Z1 Z0 [all …]
|
/openbmc/linux/drivers/comedi/drivers/ |
H A D | amplc_dio200.c | 36 * 2 CTR-Y2 CTR-Z1* CTR-Z1 37 * 3 CTR-Z1 INTERRUPT* CTR-Z2 48 * 4 CTR-Z1 145 * 4 CTR-Z1-OUT1 CTR-Z1-OUT1 155 * 4 CTR-Z1-OUT1 PPI-Z-C0
|
H A D | amplc_dio200_pci.c | 34 * 2 CTR-Z1 PPI-Y UNUSED 36 * 4 INTERRUPT CTR-Z1 CTR-Z1 49 * 4 CTR-Z1 178 * 4 CTR-Z1-OUT1 CTR-Z1-OUT1 CTR-Z1-OUT1 188 * 4 PPI-Z-C0 CTR-Z1-OUT1
|
/openbmc/linux/crypto/ |
H A D | ecc.c | 1080 static void ecc_point_double_jacobian(u64 *x1, u64 *y1, u64 *z1, in ecc_point_double_jacobian() argument 1089 if (vli_is_zero(z1, ndigits)) in ecc_point_double_jacobian() 1098 /* t2 = y1*z1 = z3 */ in ecc_point_double_jacobian() 1099 vli_mod_mult_fast(y1, y1, z1, curve); in ecc_point_double_jacobian() 1100 /* t3 = z1^2 */ in ecc_point_double_jacobian() 1101 vli_mod_square_fast(z1, z1, curve); in ecc_point_double_jacobian() 1103 /* t1 = x1 + z1^2 */ in ecc_point_double_jacobian() 1104 vli_mod_add(x1, x1, z1, curve_prime, ndigits); in ecc_point_double_jacobian() 1105 /* t3 = 2*z1^2 */ in ecc_point_double_jacobian() 1106 vli_mod_add(z1, z1, z1, curve_prime, ndigits); in ecc_point_double_jacobian() [all …]
|
/openbmc/linux/drivers/isdn/hardware/mISDN/ |
H A D | hfcpci.c | 341 bzr->za[MAX_B_FRAMES].z1 = cpu_to_le16(B_FIFO_SIZE + B_SUB_VAL - 1); in hfcpci_clear_fifo_rx() 343 le16_to_cpu(bzr->za[MAX_B_FRAMES].z1)); in hfcpci_clear_fifo_rx() 369 "z1(%x) z2(%x) state(%x)\n", in hfcpci_clear_fifo_tx() 371 le16_to_cpu(bzt->za[MAX_B_FRAMES].z1), in hfcpci_clear_fifo_tx() 376 bzt->za[MAX_B_FRAMES].z1 = cpu_to_le16(B_FIFO_SIZE + B_SUB_VAL - 1); in hfcpci_clear_fifo_tx() 383 "hfcpci_clear_fifo_tx%d f1(%x) f2(%x) z1(%x) z2(%x)\n", in hfcpci_clear_fifo_tx() 385 le16_to_cpu(bzt->za[MAX_B_FRAMES].z1), in hfcpci_clear_fifo_tx() 408 (*(bdata + (le16_to_cpu(zp->z1) - B_SUB_VAL)))) { in hfcpci_empty_bfifo() 465 rcnt = le16_to_cpu(zp->z1) - le16_to_cpu(zp->z2); in receive_dmsg() 471 "hfcpci recd f1(%d) f2(%d) z1(%x) z2(%x) cnt(%d)\n", in receive_dmsg() [all …]
|
/openbmc/u-boot/drivers/ddr/marvell/axp/ |
H A D | ddr3_axp_vars.h | 22 {"db_667-667", 0x9, 0x13, 0x0, Z1, ddr3_Z1_db_600, ddr3_db_667}, 23 {"db_800-400", 0xA, 0x1, 0x0, Z1, ddr3_Z1_db_300, ddr3_db_400}, 24 {"db_1066-533", 0x1, 0x1, 0x0, Z1, ddr3_Z1_db_300, ddr3_db_533}, 25 {"db_1200-300", 0x2, 0xC, 0x0, Z1, ddr3_Z1_db_300, ddr3_db_667}, 26 {"db_1200-600", 0x2, 0x5, 0x0, Z1, ddr3_Z1_db_600, NULL}, 27 {"db_1333-333", 0x3, 0xC, 0x0, Z1, ddr3_Z1_db_300, ddr3_db_400}, 28 {"db_1333-667", 0x3, 0x5, 0x0, Z1, ddr3_Z1_db_600, ddr3_db_667}, 29 /* pcac board values (Z1 device): */ 32 /* rd board values (Z1 device): */
|
/openbmc/linux/arch/x86/crypto/ |
H A D | aria-gfni-avx512-asm_64.S | 425 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); \ 480 aria_diff_m(x4, x5, x6, x7, z0, z1, z2, z3); \ [all …]
|