Searched refs:cy (Results 1 - 25 of 165) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/generic/
H A Dmpih-add1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to one addend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y < x; /* get out carry from that add, combine */
63 return cy;
H A Dmpih-sub1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to subtrahend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y > x; /* get out carry from the subtract, combine */
63 return cy;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/
H A Dmpih-add1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to one addend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y < x; /* get out carry from that add, combine */
63 return cy;
H A Dmpih-sub1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to subtrahend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y > x; /* get out carry from the subtract, combine */
63 return cy;
H A Dmpi-inline.h69 mpi_limb_t cy = 0; local
72 cy = _gcry_mpih_add_n( res_ptr, s1_ptr, s2_ptr, s2_size );
75 cy = _gcry_mpih_add_1( res_ptr + s2_size, s1_ptr + s2_size,
76 s1_size - s2_size, cy);
77 return cy;
115 mpi_limb_t cy = 0; local
118 cy = _gcry_mpih_sub_n(res_ptr, s1_ptr, s2_ptr, s2_size);
121 cy = _gcry_mpih_sub_1(res_ptr + s2_size, s1_ptr + s2_size,
122 s1_size - s2_size, cy);
123 return cy;
[all...]
H A Dmpih-mul.c77 mpi_limb_t cy; local
88 cy = 0;
91 cy = _gcry_mpih_mul_1( prodp, up, size, v_limb );
93 prodp[size] = cy;
101 cy = 0;
103 cy = _gcry_mpih_add_n(prodp, prodp, up, size);
106 cy = _gcry_mpih_addmul_1(prodp, up, size, v_limb);
108 prodp[size] = cy;
112 return cy;
157 mpi_limb_t cy; local
293 mpi_limb_t cy; local
383 mpi_limb_t cy; local
479 mpi_limb_t cy; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/generic/
H A Dmpih-add1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to one addend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y < x; /* get out carry from that add, combine */
63 return cy;
H A Dmpih-sub1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to subtrahend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y > x; /* get out carry from the subtract, combine */
63 return cy;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dmpih-add1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to one addend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y < x; /* get out carry from that add, combine */
63 return cy;
H A Dmpih-sub1.c38 mpi_limb_t x, y, cy; local
50 cy = 0;
55 y += cy; /* add previous carry to subtrahend */
56 cy = y < cy; /* get out carry from that addition */
58 cy += y > x; /* get out carry from the subtract, combine */
63 return cy;
H A Dmpi-inline.h69 mpi_limb_t cy = 0; local
72 cy = _gcry_mpih_add_n( res_ptr, s1_ptr, s2_ptr, s2_size );
75 cy = _gcry_mpih_add_1( res_ptr + s2_size, s1_ptr + s2_size,
76 s1_size - s2_size, cy);
77 return cy;
115 mpi_limb_t cy = 0; local
118 cy = _gcry_mpih_sub_n(res_ptr, s1_ptr, s2_ptr, s2_size);
121 cy = _gcry_mpih_sub_1(res_ptr + s2_size, s1_ptr + s2_size,
122 s1_size - s2_size, cy);
123 return cy;
[all...]
H A Dmpih-mul.c77 mpi_limb_t cy; local
88 cy = 0;
91 cy = _gcry_mpih_mul_1( prodp, up, size, v_limb );
93 prodp[size] = cy;
101 cy = 0;
103 cy = _gcry_mpih_add_n(prodp, prodp, up, size);
106 cy = _gcry_mpih_addmul_1(prodp, up, size, v_limb);
108 prodp[size] = cy;
112 return cy;
157 mpi_limb_t cy; local
293 mpi_limb_t cy; local
383 mpi_limb_t cy; local
479 mpi_limb_t cy; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/power/
H A Dmpih-sub1.S51 sf 7,0,8 # subtract least significant limbs, set cy
59 sfe 3,0,0 # load !cy into ...
67 sfe 7,0,8 # subtract limbs, set cy
74 sfe 11,10,9 # subtract previous limbs with cy, set cy
78 sfe 7,0,8 # subtract previous limbs with cy, set cy
82 Lend: sfe 11,10,9 # subtract limbs with cy, set cy
85 sfe 3,0,0 # load !cy int
[all...]
H A Dmpih-add1.S51 a 7,0,8 # add least significant limbs, set cy
66 ae 7,0,8 # add limbs, set cy
73 ae 11,9,10 # add previous limbs with cy, set cy
77 ae 7,0,8 # add previous limbs with cy, set cy
81 Lend: ae 11,9,10 # add limbs with cy, set cy
84 lil 3,0 # load cy into ...
H A Dmpih-mul3.S68 a 11,8,11 # invert cy (r11 is junk)
77 ae 11,0,9 # low limb + old_cy_limb + old cy
79 aze 10,10 # propagate cy to new cy_limb
81 a 11,8,11 # invert cy (r11 is junk)
94 a 11,8,11 # invert cy (r11 is junk)
110 ae 10,10,0 # propagate cy to new cy_limb
112 a 11,8,11 # invert cy (r11 is junk)
123 ae 9,9,0 # propagate cy to new cy_limb
125 a 11,8,11 # invert cy (r11 is junk)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/power/
H A Dmpih-sub1.S51 sf 7,0,8 # subtract least significant limbs, set cy
59 sfe 3,0,0 # load !cy into ...
67 sfe 7,0,8 # subtract limbs, set cy
74 sfe 11,10,9 # subtract previous limbs with cy, set cy
78 sfe 7,0,8 # subtract previous limbs with cy, set cy
82 Lend: sfe 11,10,9 # subtract limbs with cy, set cy
85 sfe 3,0,0 # load !cy int
[all...]
H A Dmpih-add1.S51 a 7,0,8 # add least significant limbs, set cy
66 ae 7,0,8 # add limbs, set cy
73 ae 11,9,10 # add previous limbs with cy, set cy
77 ae 7,0,8 # add previous limbs with cy, set cy
81 Lend: ae 11,9,10 # add limbs with cy, set cy
84 lil 3,0 # load cy into ...
H A Dmpih-mul3.S68 a 11,8,11 # invert cy (r11 is junk)
77 ae 11,0,9 # low limb + old_cy_limb + old cy
79 aze 10,10 # propagate cy to new cy_limb
81 a 11,8,11 # invert cy (r11 is junk)
94 a 11,8,11 # invert cy (r11 is junk)
110 ae 10,10,0 # propagate cy to new cy_limb
112 a 11,8,11 # invert cy (r11 is junk)
123 ae 9,9,0 # propagate cy to new cy_limb
125 a 11,8,11 # invert cy (r11 is junk)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dmslu.h38 int x, int y, int cx, int cy,
40 #define DrawStateW(dc, br, func, ld, wd, x, y, cx, cy, flags) \
42 ld, wd, x, y, cx, cy, flags)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/sparc32/
H A Dmpih-add1.S51 L0: andcc res_ptr,4,%g0 ! res_ptr unaligned? Side effect: cy=0
63 L_v1: addx %g0,%g0,%o4 ! save cy in register
66 subcc %g0,%o4,%g0 ! restore cy
73 subcc %g0,%o4,%g0 ! restore cy
99 addx %g0,%g0,%o4 ! save cy in register
105 subcc %g0,%o4,%g0 ! restore cy
109 subcc %g0,%o4,%g0 ! restore cy
117 addx %g0,%g0,%o4 ! save cy in register
123 subcc %g0,%o4,%g0 ! restore cy
127 addx %g0,%g0,%o4 ! save cy i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/sparc32/
H A Dmpih-add1.S51 L0: andcc res_ptr,4,%g0 ! res_ptr unaligned? Side effect: cy=0
63 L_v1: addx %g0,%g0,%o4 ! save cy in register
66 subcc %g0,%o4,%g0 ! restore cy
73 subcc %g0,%o4,%g0 ! restore cy
99 addx %g0,%g0,%o4 ! save cy in register
105 subcc %g0,%o4,%g0 ! restore cy
109 subcc %g0,%o4,%g0 ! restore cy
117 addx %g0,%g0,%o4 ! save cy in register
123 subcc %g0,%o4,%g0 ! restore cy
127 addx %g0,%g0,%o4 ! save cy i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/mips/
H A Diirfilter_mips.c62 float *cy; member in struct:FFIIRFilterCoeffs
78 float in = *src0 * c->gain + s->x[0] * c->cy[0] + s->x[1] * c->cy[1];
95 float *cy = c->cy; local
103 "lwc1 $f0, 0(%[cy]) \n\t"
112 "lwc1 $f1, 4(%[cy]) \n\t"
117 "lwc1 $f2, 8(%[cy]) \n\t"
121 "lwc1 $f3, 12(%[cy]) \n\t"
160 [gain]"f"(gain), [x]"r"(x), [cy]"
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/powerpc32/
H A Dmpih-mul3.S60 addc 7,7,8 # invert cy (r7 is junk)
72 addc 7,7,8 # invert cy (r7 is junk)
111 addc %r7,%r7,%r8 # invert cy (r7 is junk)
123 addc %r7,%r7,%r8 # invert cy (r7 is junk)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/powerpc32/
H A Dmpih-mul3.S60 addc 7,7,8 # invert cy (r7 is junk)
72 addc 7,7,8 # invert cy (r7 is junk)
111 addc %r7,%r7,%r8 # invert cy (r7 is junk)
123 addc %r7,%r7,%r8 # invert cy (r7 is junk)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dwrapwin.h82 int x, int y, int cx, int cy,
84 #define DrawStateW(dc, br, func, ld, wd, x, y, cx, cy, flags) \
86 ld, wd, x, y, cx, cy, flags)

Completed in 208 milliseconds

1234567