/linux-6.6.21/lib/crypto/mpi/ |
D | mpih-mul.c | 58 mpi_limb_t cy; in mul_n_basecase() local 69 cy = 0; in mul_n_basecase() 71 cy = mpihelp_mul_1(prodp, up, size, v_limb); in mul_n_basecase() 73 prodp[size] = cy; in mul_n_basecase() 81 cy = 0; in mul_n_basecase() 83 cy = mpihelp_add_n(prodp, prodp, up, size); in mul_n_basecase() 85 cy = mpihelp_addmul_1(prodp, up, size, v_limb); in mul_n_basecase() 87 prodp[size] = cy; in mul_n_basecase() 91 return cy; in mul_n_basecase() 134 mpi_limb_t cy; in mul_n() local [all …]
|
D | mpi-inline.h | 55 mpi_limb_t cy = 0; in mpihelp_add() local 58 cy = mpihelp_add_n(res_ptr, s1_ptr, s2_ptr, s2_size); in mpihelp_add() 61 cy = mpihelp_add_1(res_ptr + s2_size, s1_ptr + s2_size, in mpihelp_add() 62 s1_size - s2_size, cy); in mpihelp_add() 63 return cy; in mpihelp_add() 98 mpi_limb_t cy = 0; in mpihelp_sub() local 101 cy = mpihelp_sub_n(res_ptr, s1_ptr, s2_ptr, s2_size); in mpihelp_sub() 104 cy = mpihelp_sub_1(res_ptr + s2_size, s1_ptr + s2_size, in mpihelp_sub() 105 s1_size - s2_size, cy); in mpihelp_sub() 106 return cy; in mpihelp_sub()
|
D | generic_mpih-sub1.c | 23 mpi_limb_t x, y, cy; in mpihelp_sub_n() local 35 cy = 0; in mpihelp_sub_n() 39 y += cy; /* add previous carry to subtrahend */ in mpihelp_sub_n() 40 cy = y < cy; /* get out carry from that addition */ in mpihelp_sub_n() 42 cy += y > x; /* get out carry from the subtract, combine */ in mpihelp_sub_n() 46 return cy; in mpihelp_sub_n()
|
D | generic_mpih-add1.c | 24 mpi_limb_t x, y, cy; in mpihelp_add_n() local 36 cy = 0; in mpihelp_add_n() 40 y += cy; /* add previous carry to one addend */ in mpihelp_add_n() 41 cy = y < cy; /* get out carry from that addition */ in mpihelp_add_n() 43 cy += y < x; /* get out carry from that add, combine */ in mpihelp_add_n() 47 return cy; in mpihelp_add_n()
|
D | mpi-add.c | 43 mpi_limb_t cy; in mpi_add_ui() local 44 cy = mpihelp_add_1(wp, up, usize, v); in mpi_add_ui() 45 wp[usize] = cy; in mpi_add_ui() 46 wsize = usize + cy; in mpi_add_ui() 122 mpi_limb_t cy = mpihelp_add(wp, up, usize, vp, vsize); in mpi_add() local 123 wp[usize] = cy; in mpi_add() 124 wsize = usize + cy; in mpi_add()
|
D | mpi-sub-ui.c | 53 mpi_limb_t cy; in mpi_sub_ui() local 55 cy = mpihelp_add_1(w->d, u->d, u->nlimbs, (mpi_limb_t) vval); in mpi_sub_ui() 56 w->d[u->nlimbs] = cy; in mpi_sub_ui() 57 w->nlimbs = u->nlimbs + cy; in mpi_sub_ui()
|
D | ec.c | 248 mpi_limb_t cy; in ec_mulm_25519() local 267 cy = mpihelp_lshift(m, m, LIMB_SIZE_25519, 4); in ec_mulm_25519() 268 m[LIMB_SIZE_25519] = cy; in ec_mulm_25519() 269 cy = mpihelp_add_n(m, m, n, wsize); in ec_mulm_25519() 270 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519() 271 cy = mpihelp_add_n(m, m, n, wsize); in ec_mulm_25519() 272 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519() 273 cy = mpihelp_add_n(m, m, n, wsize); in ec_mulm_25519() 274 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519() 276 cy = mpihelp_add_n(wp, wp, m, wsize); in ec_mulm_25519() [all …]
|
D | mpi-mul.c | 20 mpi_limb_t cy; in mpi_mul() local 74 mpihelp_mul(wp, up, usize, vp, vsize, &cy); in mpi_mul() 75 wsize -= cy ? 0:1; in mpi_mul()
|
/linux-6.6.21/arch/x86/crypto/ |
D | poly1305_glue.c | 62 u32 cy; in convert_to_base2_64() local 67 cy = state->h[0] >> 26; state->h[0] &= 0x3ffffff; state->h[1] += cy; in convert_to_base2_64() 68 cy = state->h[1] >> 26; state->h[1] &= 0x3ffffff; state->h[2] += cy; in convert_to_base2_64() 69 cy = state->h[2] >> 26; state->h[2] &= 0x3ffffff; state->h[3] += cy; in convert_to_base2_64() 70 cy = state->h[3] >> 26; state->h[3] &= 0x3ffffff; state->h[4] += cy; in convert_to_base2_64() 75 cy = (state->hs[2] >> 2) + (state->hs[2] & ~3ULL); in convert_to_base2_64() 77 state->hs[0] += cy; in convert_to_base2_64() 78 state->hs[1] += (cy = ULT(state->hs[0], cy)); in convert_to_base2_64() 79 state->hs[2] += ULT(state->hs[1], cy); in convert_to_base2_64()
|
/linux-6.6.21/drivers/s390/char/ |
D | con3270.c | 96 unsigned int cx, cy; /* Current output position. */ member 500 line = tty3270_get_write_line(tp, i + tp->cy + 1); in tty3270_update_lines_all() 1263 line = tty3270_get_write_line(tp, tp->cy); in tty3270_put_character() 1295 if (tp->cy < tty3270_tty_rows(tp) - 1) { in tty3270_lf() 1296 tp->cy++; in tty3270_lf() 1304 line = tty3270_get_write_line(tp, tp->cy); in tty3270_lf() 1311 if (tp->cy > 0) in tty3270_ri() 1312 tp->cy--; in tty3270_ri() 1329 line = tty3270_get_write_line(tp, tp->cy); in tty3270_insert_characters() 1354 line = tty3270_get_write_line(tp, tp->cy); in tty3270_delete_characters() [all …]
|
/linux-6.6.21/drivers/gpu/drm/sun4i/ |
D | sun8i_vi_scaler.c | 874 const u32 *ch_left, *ch_right, *cy; in sun8i_vi_scaler_set_coeff() local 880 cy = lan2coefftab32; in sun8i_vi_scaler_set_coeff() 884 cy = bicubic4coefftab32; in sun8i_vi_scaler_set_coeff() 906 cy[offset + i]); in sun8i_vi_scaler_set_coeff()
|
/linux-6.6.21/drivers/gpu/drm/vboxvideo/ |
D | vbox_irq.c | 88 hintsj->dy + (hintsj->cy & 0x8fff) && in validate_or_set_position_hints() 89 hintsi->dy + (hintsi->cy & 0x8fff) > in validate_or_set_position_hints() 140 vbox_conn->mode_hint.height = hints->cy; in vbox_update_mode_hints() 155 hints->cy, 0, flags); in vbox_update_mode_hints()
|
D | vboxvideo.h | 408 u32 cy; member 428 u32 cy; /* Rectangle height. */ member
|
D | modesetting.c | 82 p->cy = height; in hgsmi_update_input_mapping()
|
/linux-6.6.21/drivers/hid/ |
D | hid-multitouch.c | 100 __s32 *x, *y, *cx, *cy, *p, *w, *h, *a; member 540 usage->cy = DEFAULT_ZERO; in mt_allocate_usage() 773 MT_STORE_FIELD(cy); in mt_touch_input_mapping() 1094 int cy; in mt_process_slot() local 1136 cy = hdev->quirks & HID_QUIRK_Y_INVERT ? in mt_process_slot() 1137 input_abs_get_max(input, ABS_MT_POSITION_Y) - *slot->cy : in mt_process_slot() 1138 *slot->cy; in mt_process_slot() 1143 input_event(input, EV_ABS, ABS_MT_TOOL_Y, cy); in mt_process_slot()
|
/linux-6.6.21/drivers/accessibility/speakup/ |
D | spk_types.h | 70 ulong cy; member
|
D | main.c | 1563 speakup_console[vc->vc_num]->ht.cy = vc->state.y; in do_handle_cursor() 1674 d = vc->state.y - speakup_console[vc_num]->ht.cy; in speak_highlight()
|
/linux-6.6.21/scripts/kconfig/ |
D | gconf.c | 886 gint cx, cy; in on_treeview2_button_press_event() local 889 &cy); in on_treeview2_button_press_event() 1002 gint cx, cy; in on_treeview1_button_press_event() local 1005 &cy); in on_treeview1_button_press_event()
|
/linux-6.6.21/drivers/input/touchscreen/ |
D | surface3_spi.c | 44 __le16 cy; member
|
/linux-6.6.21/tools/testing/selftests/hid/tests/ |
D | test_multitouch.py | 62 self.cy = y 838 t0.cy = 100
|
/linux-6.6.21/arch/s390/tools/ |
D | opcodes.txt | 793 e359 cy RXY_RRRD
|