Home
last modified time | relevance | path

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

/linux-4.4.14/lib/mpi/
Dmpih-mul.c71 mpi_limb_t cy; in mul_n_basecase() local
82 cy = 0; in mul_n_basecase()
84 cy = mpihelp_mul_1(prodp, up, size, v_limb); in mul_n_basecase()
86 prodp[size] = cy; in mul_n_basecase()
94 cy = 0; in mul_n_basecase()
96 cy = mpihelp_add_n(prodp, prodp, up, size); in mul_n_basecase()
98 cy = mpihelp_addmul_1(prodp, up, size, v_limb); in mul_n_basecase()
100 prodp[size] = cy; in mul_n_basecase()
104 return cy; in mul_n_basecase()
147 mpi_limb_t cy; in mul_n() local
[all …]
Dgeneric_mpih-sub1.c36 mpi_limb_t x, y, cy; in mpihelp_sub_n() local
48 cy = 0; in mpihelp_sub_n()
52 y += cy; /* add previous carry to subtrahend */ in mpihelp_sub_n()
53 cy = y < cy; /* get out carry from that addition */ in mpihelp_sub_n()
55 cy += y > x; /* get out carry from the subtract, combine */ in mpihelp_sub_n()
59 return cy; in mpihelp_sub_n()
Dgeneric_mpih-add1.c37 mpi_limb_t x, y, cy; in mpihelp_add_n() local
49 cy = 0; in mpihelp_add_n()
53 y += cy; /* add previous carry to one addend */ in mpihelp_add_n()
54 cy = y < cy; /* get out carry from that addition */ in mpihelp_add_n()
56 cy += y < x; /* get out carry from that add, combine */ in mpihelp_add_n()
60 return cy; in mpihelp_add_n()
Dmpi-inline.h68 mpi_limb_t cy = 0; in mpihelp_add() local
71 cy = mpihelp_add_n(res_ptr, s1_ptr, s2_ptr, s2_size); in mpihelp_add()
74 cy = mpihelp_add_1(res_ptr + s2_size, s1_ptr + s2_size, in mpihelp_add()
75 s1_size - s2_size, cy); in mpihelp_add()
76 return cy; in mpihelp_add()
111 mpi_limb_t cy = 0; in mpihelp_sub() local
114 cy = mpihelp_sub_n(res_ptr, s1_ptr, s2_ptr, s2_size); in mpihelp_sub()
117 cy = mpihelp_sub_1(res_ptr + s2_size, s1_ptr + s2_size, in mpihelp_sub()
118 s1_size - s2_size, cy); in mpihelp_sub()
119 return cy; in mpihelp_sub()
/linux-4.4.14/drivers/s390/char/
Dtty3270.c80 unsigned int cx, cy; /* Current output position. */ member
1045 line = tp->screen + tp->cy; in tty3270_put_character()
1187 tty3270_convert_line(tp, tp->cy); in tty3270_lf()
1188 if (tp->cy < tp->view.rows - 3) { in tty3270_lf()
1189 tp->cy++; in tty3270_lf()
1205 if (tp->cy > 0) { in tty3270_ri()
1206 tty3270_convert_line(tp, tp->cy); in tty3270_ri()
1207 tp->cy--; in tty3270_ri()
1220 line = tp->screen + tp->cy; in tty3270_insert_characters()
1251 line = tp->screen + tp->cy; in tty3270_delete_characters()
[all …]
/linux-4.4.14/drivers/staging/speakup/
Dspk_types.h66 ulong cy; member
Dmain.c1522 speakup_console[vc->vc_num]->ht.cy = vc->vc_y; in do_handle_cursor()
1633 d = vc->vc_y - speakup_console[vc_num]->ht.cy; in speak_highlight()
/linux-4.4.14/scripts/kconfig/
Dgconf.c893 gint cx, cy; in on_treeview2_button_press_event() local
896 &cy); in on_treeview2_button_press_event()
1009 gint cx, cy; in on_treeview1_button_press_event() local
1012 &cy); in on_treeview1_button_press_event()
/linux-4.4.14/drivers/hid/
Dhid-multitouch.c77 __s32 x, y, cx, cy, p, w, h; member
644 input_event(input, EV_ABS, ABS_MT_TOOL_Y, s->cy); in mt_complete_slot()
716 td->curdata.cy = value; in mt_process_mt_event()