| /src/external/gpl3/gcc/dist/libquadmath/printf/ |
| flt1282mpn.c | 31 mpn_extract_flt128 (mp_ptr res_ptr, mp_size_t size, 42 res_ptr[0] = u.ieee.mantissa3; /* Low-order 32 bits of fraction. */ 43 res_ptr[1] = u.ieee.mantissa2; 44 res_ptr[2] = u.ieee.mantissa1; 45 res_ptr[3] = u.ieee.mantissa0; /* High-order 32 bits. */ 48 res_ptr[0] = ((mp_limb_t) u.ieee.mantissa2 << 32) | u.ieee.mantissa3; 49 res_ptr[1] = ((mp_limb_t) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; 62 if (res_ptr[0] == 0 && res_ptr[1] == 0 63 && res_ptr[N - 2] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=4. * [all...] |
| mul_1.c | 27 mpn_mul_1 (res_ptr, s1_ptr, s1_size, s2_limb) 28 register mp_ptr res_ptr; 43 res_ptr -= j; 53 res_ptr[j] = prod_low;
|
| add_n.c | 27 mpn_add_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) 29 mpn_add_n (res_ptr, s1_ptr, s2_ptr, size) 30 register mp_ptr res_ptr; 46 res_ptr -= j; 57 res_ptr[j] = y;
|
| addmul_1.c | 3 limb vector pointed to by RES_PTR. Return the most significant limb of 29 mpn_addmul_1 (res_ptr, s1_ptr, s1_size, s2_limb) 30 register mp_ptr res_ptr; 45 res_ptr -= j; 56 x = res_ptr[j]; 59 res_ptr[j] = prod_low;
|
| sub_n.c | 27 mpn_sub_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) 29 mpn_sub_n (res_ptr, s1_ptr, s2_ptr, size) 30 register mp_ptr res_ptr; 46 res_ptr -= j; 57 res_ptr[j] = y;
|
| submul_1.c | 3 from the limb vector pointed to by RES_PTR. Return the most significant 29 mpn_submul_1 (res_ptr, s1_ptr, s1_size, s2_limb) 30 register mp_ptr res_ptr; 45 res_ptr -= j; 56 x = res_ptr[j]; 59 res_ptr[j] = prod_low;
|
| /src/external/gpl3/gcc.old/dist/libquadmath/printf/ |
| flt1282mpn.c | 31 mpn_extract_flt128 (mp_ptr res_ptr, mp_size_t size, 42 res_ptr[0] = u.ieee.mantissa3; /* Low-order 32 bits of fraction. */ 43 res_ptr[1] = u.ieee.mantissa2; 44 res_ptr[2] = u.ieee.mantissa1; 45 res_ptr[3] = u.ieee.mantissa0; /* High-order 32 bits. */ 48 res_ptr[0] = ((mp_limb_t) u.ieee.mantissa2 << 32) | u.ieee.mantissa3; 49 res_ptr[1] = ((mp_limb_t) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; 62 if (res_ptr[0] == 0 && res_ptr[1] == 0 63 && res_ptr[N - 2] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=4. * [all...] |
| mul_1.c | 27 mpn_mul_1 (res_ptr, s1_ptr, s1_size, s2_limb) 28 register mp_ptr res_ptr; 43 res_ptr -= j; 53 res_ptr[j] = prod_low;
|
| add_n.c | 27 mpn_add_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) 29 mpn_add_n (res_ptr, s1_ptr, s2_ptr, size) 30 register mp_ptr res_ptr; 46 res_ptr -= j; 57 res_ptr[j] = y;
|
| addmul_1.c | 3 limb vector pointed to by RES_PTR. Return the most significant limb of 29 mpn_addmul_1 (res_ptr, s1_ptr, s1_size, s2_limb) 30 register mp_ptr res_ptr; 45 res_ptr -= j; 56 x = res_ptr[j]; 59 res_ptr[j] = prod_low;
|
| sub_n.c | 27 mpn_sub_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size) 29 mpn_sub_n (res_ptr, s1_ptr, s2_ptr, size) 30 register mp_ptr res_ptr; 46 res_ptr -= j; 57 res_ptr[j] = y;
|
| submul_1.c | 3 from the limb vector pointed to by RES_PTR. Return the most significant 29 mpn_submul_1 (res_ptr, s1_ptr, s1_size, s2_limb) 30 register mp_ptr res_ptr; 45 res_ptr -= j; 56 x = res_ptr[j]; 59 res_ptr[j] = prod_low;
|
| /src/external/lgpl3/gmp/dist/mpz/ |
| xor.c | 39 mp_ptr res_ptr; local 52 res_ptr = PTR(res); 56 if (res_ptr != op1_ptr) 58 res_ptr = MPZ_REALLOC (res, op1_size); 59 MPN_COPY (res_ptr + op2_size, op1_ptr + op2_size, 63 mpn_xor_n (res_ptr, op1_ptr, PTR(op2), op2_size); 66 MPN_NORMALIZE (res_ptr, res_size); 96 res_ptr = MPZ_NEWALLOC (res, op2_size); 101 MPN_COPY (res_ptr + op1_size, op2_ptr + op1_size, 103 mpn_xor_n (res_ptr, op1_ptr, op2_ptr, op1_size) [all...] |
| ior.c | 39 mp_ptr res_ptr; local 53 res_ptr = PTR(res); 57 if (res_ptr != op1_ptr) 59 res_ptr = MPZ_REALLOC (res, op1_size); 61 MPN_COPY (res_ptr + op2_size, op1_ptr + op2_size, 65 mpn_ior_n (res_ptr, op1_ptr, PTR(op2), op2_size); 101 res_ptr = MPZ_NEWALLOC (res, res_size + 1); 106 mpn_and_n (res_ptr, op1_ptr, op2_ptr, res_size); 108 res_ptr[res_size] = 0; 109 MPN_INCR_U (res_ptr, res_size + 1, 1) [all...] |
| and.c | 39 mp_ptr res_ptr; local 103 res_ptr = MPZ_NEWALLOC (res, 1 + op2_size); 108 MPN_COPY (res_ptr + op1_size, op2_ptr + op1_size, 110 mpn_ior_n (res_ptr, op1_ptr, op2_ptr, op1_size); 114 res_ptr[res_size] = 0; 115 MPN_INCR_U (res_ptr, res_size + 1, (mp_limb_t) 1); 116 res_size += res_ptr[res_size]; 140 res_ptr[i] = 0; 152 res_ptr[i] = op1_ptr[i] & ~op2_ptr[i]; 153 res_ptr[op2_lim] = op1_ptr[op2_lim] & -op2_ptr[op2_lim] [all...] |
| /src/external/lgpl3/gmp/dist/mpn/sparc32/ |
| sub_n.asm | 36 define(res_ptr,%o0) 43 xor s2_ptr,res_ptr,%g1 48 andcc res_ptr,4,%g0 C res_ptr unaligned? Side effect: cy=0 51 C Add least significant limb separately to align res_ptr and s2_ptr 58 st %o4,[res_ptr] 59 add res_ptr,4,res_ptr 78 std %o4,[res_ptr+0] 84 std %o4,[res_ptr+8 [all...] |
| add_n.asm | 36 define(res_ptr,%o0) 43 xor s2_ptr,res_ptr,%g1 48 L(0): andcc res_ptr,4,%g0 C res_ptr unaligned? Side effect: cy=0 51 C Add least significant limb separately to align res_ptr and s2_ptr 58 st %o4,[res_ptr] 59 add res_ptr,4,res_ptr 78 std %o4,[res_ptr+0] 84 std %o4,[res_ptr+8 [all...] |
| /src/external/lgpl3/gmp/dist/mpn/m88k/mc88110/ |
| add_n.S | 34 #define res_ptr r2 define 46 xor r12,s2_ptr,res_ptr 49 L0: bb0 2,res_ptr,L_v1 ; branch if res_ptr is aligned? 50 /* Add least significant limb separately to align res_ptr and s2_ptr */ 57 st r6,res_ptr,0 58 addu res_ptr,res_ptr,4 75 st.d r6,res_ptr,0 81 st.d r6,res_ptr, [all...] |
| sub_n.S | 34 #define res_ptr r2 define 46 xor r12,s2_ptr,res_ptr 49 L0: bb0 2,res_ptr,L_v1 ; branch if res_ptr is aligned 50 /* Add least significant limb separately to align res_ptr and s2_ptr */ 57 st r6,res_ptr,0 58 addu res_ptr,res_ptr,4 75 st.d r6,res_ptr,0 81 st.d r6,res_ptr, [all...] |
| /src/external/gpl2/grep/dist/intl/ |
| localcharset.c | 140 char *res_ptr = NULL; local 169 res_ptr = (char *) malloc (res_size + 1); 174 res_ptr = (char *) realloc (res_ptr, res_size + 1); 176 if (res_ptr == NULL) 182 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); 183 strcpy (res_ptr + res_size - (l2 + 1), buf2); 190 *(res_ptr + res_size) = '\0'; 191 cp = res_ptr;
|
| /src/external/lgpl3/gmp/dist/mpn/m68k/ |
| rshift.asm | 39 C mp_limb_t mpn_rshift (mp_ptr res_ptr, mp_srcptr s_ptr, mp_size_t s_size, 50 C res_ptr (sp + 4) 55 define(res_ptr, `a1') 69 movel M(sp,28), res_ptr 79 cmpl res_ptr, s_ptr 80 bls L(Lspecial) C jump if res_ptr >= s_ptr 83 lea M(res_ptr,s_size,l,4), a2 87 lea M(res_ptr,d0,l), a2 90 bls L(Lspecial) C jump if s_ptr >= res_ptr + s_size 112 movel d1, M(res_ptr,+ [all...] |
| lshift.asm | 39 C mp_limb_t mpn_lshift (mp_ptr res_ptr, mp_srcptr s_ptr, mp_size_t s_size, 50 C res_ptr (sp + 4) 55 define(res_ptr, `a1') 69 movel M(sp,28), res_ptr 79 cmpl s_ptr, res_ptr 80 bls L(Lspecial) C jump if s_ptr >= res_ptr 89 cmpl res_ptr, a2 90 bls L(Lspecial) C jump if res_ptr >= s_ptr + s_size 98 lea M(res_ptr,s_size,l,4), res_ptr [all...] |
| /src/external/lgpl3/gmp/dist/mpn/pa32/hppa1_1/pa7100/ |
| addmul_1.asm | 35 define(`res_ptr',`%r26') 74 ldws 0(res_ptr),s0 81 stws,ma s0,4(res_ptr) 119 ldws 0(res_ptr),s0 121 ldws 4(res_ptr),s1 123 ldws 8(res_ptr),s2 125 ldws 12(res_ptr),s3 147 stws,ma s0,4(res_ptr) 149 stws,ma s1,4(res_ptr) 151 stws,ma s2,4(res_ptr) [all...] |
| submul_1.asm | 35 define(`res_ptr',`%r26') 74 ldws 0(res_ptr),s0 82 stws,ma s0,4(res_ptr) 120 ldws 0(res_ptr),s0 122 ldws 4(res_ptr),s1 124 ldws 8(res_ptr),s2 126 ldws 12(res_ptr),s3 150 stws,ma s0,4(res_ptr) 152 stws,ma s1,4(res_ptr) 154 stws,ma s2,4(res_ptr) [all...] |
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| localcharset.c | 146 char *res_ptr = NULL; local 177 old_res_ptr = res_ptr; 181 res_ptr = (char *) malloc (res_size + 1); 186 res_ptr = (char *) realloc (res_ptr, res_size + 1); 188 if (res_ptr == NULL) 196 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); 197 strcpy (res_ptr + res_size - (l2 + 1), buf2); 204 *(res_ptr + res_size) = '\0'; 205 cp = res_ptr; [all...] |