Home
last modified time | relevance | path

Searched refs:np (Results 1 – 25 of 28) sorted by relevance

12

/glibc-2.36/stdlib/
Ddivrem.c44 mp_ptr np, mp_size_t nsize, in mpn_divrem() argument
63 n1 = np[nsize - 1]; in mpn_divrem()
73 udiv_qrnnd (qp[i], n1, n1, np[i], d); in mpn_divrem()
79 np[0] = n1; in mpn_divrem()
89 np += nsize - 2; in mpn_divrem()
92 n1 = np[1]; in mpn_divrem()
93 n0 = np[0]; in mpn_divrem()
107 np--; in mpn_divrem()
109 np[0] = 0; in mpn_divrem()
121 add_ssaaaa (n1, n0, r - d0, np[0], 0, d0); in mpn_divrem()
[all …]
Dsetenv.c176 char *np; in __add_to_environ() local
180 np = (char *) combined; in __add_to_environ()
207 np = KNOWN_VALUE (new_value); in __add_to_environ()
208 if (__glibc_likely (np == NULL)) in __add_to_environ()
213 np = new_value; in __add_to_environ()
217 np = malloc (varlen); in __add_to_environ()
218 if (__glibc_unlikely (np == NULL)) in __add_to_environ()
225 memcpy (np, new_value, varlen); in __add_to_environ()
227 memcpy (np, name, namelen); in __add_to_environ()
228 np[namelen] = '='; in __add_to_environ()
[all …]
Dgmp.h596 #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)
/glibc-2.36/hurd/
Dhurdsock.c87 char *np = &name[sizeof (name)]; in _hurd_socket_server() local
88 *--np = '\0'; in _hurd_socket_server()
89 np = _itoa (domain, np, 10, 0); in _hurd_socket_server()
90 *--np = '/'; in _hurd_socket_server()
91 np -= sizeof (_SERVERS_SOCKET) - 1; in _hurd_socket_server()
92 memcpy (np, _SERVERS_SOCKET, sizeof (_SERVERS_SOCKET) - 1); in _hurd_socket_server()
93 server = __file_name_lookup (np, 0, 0); in _hurd_socket_server()
/glibc-2.36/benchtests/scripts/
Dplot_strings.py32 import numpy as np namespace
57 a = np.array(numbers, dtype=np.complex)
59 return np.real(means)
72 abs_diff = np.subtract(x, x_reference)
73 return np.divide(np.multiply(abs_diff, 100.0), x_reference)
162 perf = np.reciprocal(timings)
163 max_perf = np.max(perf, axis=0)
164 y = np.add(100.0, relativeDifference(perf, max_perf))
194 y = np.divide(params, timings)
276 domain = np.unique(np.array(domain))
[all …]
/glibc-2.36/nss/
Dtst-nss-test1.c63 const unsigned int *np = pwdids; in do_test() local
64 for (struct passwd *p = getpwent (); p != NULL; ++np, p = getpwent ()) in do_test()
66 retval += compare_passwds (np-pwdids, p, & pwd_table[np-pwdids]); in do_test()
68 if (p->pw_uid != *np || strncmp (p->pw_name, "name", 4) != 0 in do_test()
69 || atol (p->pw_name + 4) != *np) in do_test()
72 np - pwdids, p->pw_name, p->pw_uid); in do_test()
/glibc-2.36/sysdeps/ieee754/flt-32/
Ds_sincosf.h48 reduce_fast (double x, const sincos_t *p, int *np) in reduce_fast() argument
54 *np = converttoint (r); in reduce_fast()
62 *np = n; in reduce_fast()
75 reduce_large (uint32_t xi, int *np) in reduce_large() argument
93 *np = n; in reduce_large()
/glibc-2.36/libio/
Doldfmemopen.c153 off64_t np; in fmemopen_seek() local
161 np = *p; in fmemopen_seek()
165 np = c->pos + *p; in fmemopen_seek()
169 np = (c->binmode ? c->size : c->maxpos) - *p; in fmemopen_seek()
176 if (np < 0 || (size_t) np > c->size) in fmemopen_seek()
179 *p = c->pos = np; in fmemopen_seek()
Dfmemopen.c102 off64_t np; in fmemopen_seek() local
108 np = *p; in fmemopen_seek()
112 np = c->pos + *p; in fmemopen_seek()
116 np = c->maxpos + *p; in fmemopen_seek()
123 if (np < 0 || (size_t) np > c->size) in fmemopen_seek()
129 *p = c->pos = np; in fmemopen_seek()
/glibc-2.36/elf/
Dtst-tlsmod3.c18 int *np; in in_dso2() local
24 np = &comm_n; in in_dso2()
26 if (n != *np) in in_dso2()
28 printf ("n = %d != comm_n = %d\n", n, *np); in in_dso2()
/glibc-2.36/localedata/tests-mbwc/
Dtst_wcstod.c14 wchar_t *np, *endp, fwc; in tst_wcstod() local
23 np = TST_INPUT (wcstod).np; in tst_wcstod()
26 ret = wcstod (np, &endp); in tst_wcstod()
Dtst_types.h564 wchar_t np[WCSSIZE]; member
/glibc-2.36/locale/
Dnewlocale.c124 char *np = strdupa (locale); local
128 while ((cp = strchr (np, '=')) != NULL)
132 && (size_t) (cp - np) == _nl_category_name_sizes[cnt]
133 && memcmp (np, (_nl_category_names_get (cnt)), cp - np) == 0)
148 np = cp + 1;
Dsetlocale.c290 char *np = locale_copy; in setlocale() local
294 while ((cp = strchr (np, '=')) != NULL) in setlocale()
298 && (size_t) (cp - np) == _nl_category_name_sizes[cnt] in setlocale()
299 && (memcmp (np, (_nl_category_names_get (cnt)), cp - np) in setlocale()
320 np = cp + 1; in setlocale()
/glibc-2.36/nptl_db/
Dtd_ta_get_nthreads.c22 td_ta_get_nthreads (const td_thragent_t *ta_arg, int *np) in td_ta_get_nthreads() argument
37 *np = (uintptr_t) n; in td_ta_get_nthreads()
/glibc-2.36/sunrpc/
Dxdr.c659 xdr_netobj (XDR *xdrs, struct netobj *np) in libc_hidden_def()
662 return xdr_bytes (xdrs, &np->n_bytes, &np->n_len, MAX_NETOBJ_SZ); in libc_hidden_def()
/glibc-2.36/grp/tst-initgroups1.root/etc/
Dgroup7 np:x:60:djx
/glibc-2.36/grp/tst-initgroups2.root/etc/
Dgroup7 np:x:60:djx
/glibc-2.36/htl/
DMakefile74 pt-mutex-transfer-np \
145 bits/pthread-np.h \
/glibc-2.36/posix/
Dfnmatch_loop.c393 const UCHAR *np = (const UCHAR *) n; in FCT() local
396 &np, string_end - n); in FCT()
/glibc-2.36/localedata/locales/
Dne_NP18 email "info@mpp.org.np"
/glibc-2.36/manual/
Dfilesys.texi3154 void *np;
3157 np = mmap (NULL, ns, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
3158 if (np == MAP_FAILED)
3160 start = np;
/glibc-2.36/ChangeLog.old/
DChangeLog.1112091 sets default values for [np]_sep_by_space and
12092 [np]_sign_posn; also the new positive/negative alignment
12094 [np]_sign_posn = 0.
13355 Reported by ane@np.bs1.fc.nec.co.jp and Akira YOSHIYAMA
DChangeLog.226254 * sysdeps/htl/bits/pthread-np.h: Modified.
6293 * sysdeps/mach/hurd/htl/bits/pthread-np.h: Modified.
/glibc-2.36/
DCONTRIBUTED-BY2212 Contributed by Pawan Chitrakar <pc@info.com.np>

12