Home
last modified time | relevance | path

Searched refs:cy (Results 1 – 20 of 20) sorted by relevance

/linux/lib/mpi/
A Dmpih-mul.c69 cy = 0; in mul_n_basecase()
81 cy = 0; in mul_n_basecase()
91 return cy; in mul_n_basecase()
176 cy -= in mul_n()
180 cy += in mul_n()
195 if (cy) in mul_n()
202 if (cy) in mul_n()
308 if (cy) in mpih_sqr_n()
315 if (cy) in mpih_sqr_n()
476 cy = 0; in mpihelp_mul()
[all …]
A Dmpi-inline.h55 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()
A Dgeneric_mpih-add1.c24 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()
A Dgeneric_mpih-sub1.c23 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()
A Dmpi-add.c43 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()
A Dmpi-sub-ui.c53 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()
A Dec.c248 mpi_limb_t cy; in ec_mulm_25519() local
268 m[LIMB_SIZE_25519] = cy; in ec_mulm_25519()
270 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519()
272 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519()
274 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519()
277 m[LIMB_SIZE_25519] += cy; in ec_mulm_25519()
311 mpi_limb_t cy; in ec_addm_448() local
355 mpi_limb_t cy; in ec_mulm_448() local
407 cy = mpihelp_add_1(b1, b1, LIMB_SIZE_HALF_448, cy); in ec_mulm_448()
432 n[LIMB_SIZE_HALF_448] = cy; in ec_mulm_448()
[all …]
A Dmpi-mul.c20 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/arch/x86/crypto/
A Dpoly1305_glue.c62 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/drivers/s390/char/
A Dtty3270.c1089 line = tp->screen + tp->cy; in tty3270_put_character()
1233 tp->cy++; in tty3270_lf()
1249 if (tp->cy > 0) { in tty3270_ri()
1251 tp->cy--; in tty3270_ri()
1457 int max_cy = max(0, cy); in tty3270_goto_xy()
1461 if (cy != tp->cy) { in tty3270_goto_xy()
1463 tp->cy = cy; in tty3270_goto_xy()
1519 tp->saved_cy = tp->cy; in tty3270_escape_sequence()
1620 tp->saved_cy = tp->cy; in tty3270_escape_sequence()
1677 tp->cx = tp->cy = 0; in tty3270_do_write()
[all …]
/linux/drivers/gpu/drm/vboxvideo/
A Dvbox_irq.c88 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()
A Dvboxvideo.h408 u32 cy; member
428 u32 cy; /* Rectangle height. */ member
A Dmodesetting.c82 p->cy = height; in hgsmi_update_input_mapping()
/linux/drivers/gpu/drm/sun4i/
A Dsun8i_vi_scaler.c874 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/drivers/accessibility/speakup/
A Dspk_types.h70 ulong cy; member
A Dmain.c1553 speakup_console[vc->vc_num]->ht.cy = vc->state.y; in do_handle_cursor()
1664 d = vc->state.y - speakup_console[vc_num]->ht.cy; in speak_highlight()
/linux/scripts/kconfig/
A Dgconf.c889 gint cx, cy; in on_treeview2_button_press_event() local
892 &cy); in on_treeview2_button_press_event()
1005 gint cx, cy; in on_treeview1_button_press_event() local
1008 &cy); in on_treeview1_button_press_event()
/linux/drivers/hid/
A Dhid-multitouch.c99 __s32 *x, *y, *cx, *cy, *p, *w, *h, *a; member
529 usage->cy = DEFAULT_ZERO; in mt_allocate_usage()
762 MT_STORE_FIELD(cy); in mt_touch_input_mapping()
1110 input_event(input, EV_ABS, ABS_MT_TOOL_Y, *slot->cy); in mt_process_slot()
/linux/drivers/input/touchscreen/
A Dsurface3_spi.c44 __le16 cy; member
/linux/arch/s390/tools/
A Dopcodes.txt792 e359 cy RXY_RRRD

Completed in 44 milliseconds