/haiku/src/system/libroot/posix/glibc/arch/generic/ |
H A D | sub_n.c | 27 mpn_sub_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) in mpn_sub_n() argument 29 mpn_sub_n (res_ptr, s1_ptr, s2_ptr, size) in mpn_sub_n() 31 register mp_srcptr s1_ptr; 44 s1_ptr -= j; 52 x = s1_ptr[j];
|
H A D | add_n.c | 27 mpn_add_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) in mpn_add_n() argument 29 mpn_add_n (res_ptr, s1_ptr, s2_ptr, size) in mpn_add_n() 31 register mp_srcptr s1_ptr; 44 s1_ptr -= j; 52 x = s1_ptr[j];
|
H A D | mul_1.c | 28 mpn_mul_1 (res_ptr, s1_ptr, s1_size, s2_limb) in mpn_mul_1() argument 30 register mp_srcptr s1_ptr; 43 s1_ptr -= j; 49 umul_ppmm (prod_high, prod_low, s1_ptr[j], s2_limb);
|
H A D | submul_1.c | 30 mpn_submul_1 (res_ptr, s1_ptr, s1_size, s2_limb) in mpn_submul_1() argument 32 register mp_srcptr s1_ptr; 47 s1_ptr -= j; 52 umul_ppmm (prod_high, prod_low, s1_ptr[j], s2_limb);
|
H A D | addmul_1.c | 30 mpn_addmul_1 (res_ptr, s1_ptr, s1_size, s2_limb) in mpn_addmul_1() argument 32 register mp_srcptr s1_ptr; 47 s1_ptr -= j; 52 umul_ppmm (prod_high, prod_low, s1_ptr[j], s2_limb);
|
/haiku/src/system/libroot/posix/glibc/arch/x86/ |
H A D | mul_1.S | 33 #define s1_ptr esi macro 47 movl S1(%esp), %s1_ptr 53 CHECK_BOUNDS_BOTH_WIDE (%s1_ptr, S1(%esp), %size) 57 leal (%s1_ptr,%size,4), %s1_ptr 63 movl (%s1_ptr,%size,4), %eax
|
H A D | addmul_1.S | 33 #define s1_ptr esi macro 47 movl S1(%esp), %s1_ptr 53 CHECK_BOUNDS_BOTH_WIDE (%s1_ptr, S1(%esp), %size) 57 leal (%s1_ptr,%size,4), %s1_ptr 63 movl (%s1_ptr,%size,4), %eax
|
H A D | submul_1.S | 33 #define s1_ptr esi macro 47 movl S1(%esp), %s1_ptr 53 CHECK_BOUNDS_BOTH_WIDE (%s1_ptr, S1(%esp), %sizeP) 57 leal (%s1_ptr,%size,4), %s1_ptr 63 movl (%s1_ptr,%size,4), %eax
|
/haiku/src/system/libroot/posix/glibc/stdlib/ |
H A D | gmp.h | 434 register mp_srcptr s1_ptr, in mpn_add_1() argument 438 mpn_add_1 (res_ptr, s1_ptr, s1_size, s2_limb) in mpn_add_1() 440 register mp_srcptr s1_ptr; 447 x = *s1_ptr++; 454 x = *s1_ptr++ + 1; 464 if (res_ptr != s1_ptr) 468 res_ptr[i] = s1_ptr[i]; 476 register mp_srcptr s1_ptr, in mpn_add() argument 481 mpn_add (res_ptr, s1_ptr, s1_size, s2_ptr, s2_size) in mpn_add() 483 register mp_srcptr s1_ptr; [all …]
|
/haiku/src/system/libroot/posix/glibc/arch/m68k/ |
H A D | addmul_1.S | 38 #define s1_ptr a1 macro 47 movel MEM_DISP(sp,24),R(s1_ptr) 60 movel MEM_POSTINC(s1_ptr),R(d3) 65 L(L1:) movel MEM_POSTINC(s1_ptr),R(d3)
|
H A D | submul_1.S | 38 #define s1_ptr a1 macro 47 movel MEM_DISP(sp,24),R(s1_ptr) 60 movel MEM_POSTINC(s1_ptr),R(d3) 65 L(L1:) movel MEM_POSTINC(s1_ptr),R(d3)
|
H A D | mul_1.S | 38 #define s1_ptr a1 macro 52 movel MEM_DISP(sp,20),R(s1_ptr) 64 movel MEM_POSTINC(s1_ptr),R(d3) 68 L(L1:) movel MEM_POSTINC(s1_ptr),R(d3)
|
/haiku/src/system/libroot/posix/glibc/arch/sparc/ |
H A D | sub_n.S | 34 add %o1,%g1,%o1 ! make s1_ptr point at end
|
H A D | add_n.S | 37 add %o1,%g1,%o1 ! make s1_ptr point at end
|