Searched refs:np (Results 1 – 3 of 3) sorted by relevance
/stdlib/ |
A D | divrem.c | 79 np[0] = n1; in mpn_divrem() 92 n1 = np[1]; in mpn_divrem() 93 n0 = np[0]; in mpn_divrem() 107 np--; in mpn_divrem() 150 np[1] = n1; in mpn_divrem() 151 np[0] = n0; in mpn_divrem() 169 mpn_sub_n (np, np, dp, dsize); in mpn_divrem() 183 np--; in mpn_divrem() 189 MPN_COPY_DECR (np + 1, np, dsize); in mpn_divrem() 190 np[0] = 0; in mpn_divrem() [all …]
|
A D | setenv.c | 174 char *np; in __add_to_environ() local 178 np = (char *) combined; in __add_to_environ() 205 np = KNOWN_VALUE (new_value); in __add_to_environ() 206 if (__glibc_likely (np == NULL)) in __add_to_environ() 211 np = new_value; in __add_to_environ() 215 np = malloc (varlen); in __add_to_environ() 223 memcpy (np, new_value, varlen); in __add_to_environ() 225 memcpy (np, name, namelen); in __add_to_environ() 226 np[namelen] = '='; in __add_to_environ() 231 STORE_VALUE (np); in __add_to_environ() [all …]
|
A D | gmp.h | 596 #define mpn_divmod(qp,np,nsize,dp,dsize) mpn_divrem (qp,0,np,nsize,dp,dsize) argument 598 #define mpn_divmod_1(qp,np,nsize,dlimb) mpn_divrem_1 (qp,0,np,nsize,dlimb)
|
Completed in 7 milliseconds