Home
last modified time | relevance | path

Searched refs:np2 (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/usr.bin/gprof/
Dprintgprof.c237 const nltype *np2 = *(const nltype **)v2; in totalcmp() local
242 t2 = np2 -> propself + np2 -> propchild; in totalcmp()
249 np2noname = ( np2 -> name == 0 ); in totalcmp()
251 np2cyclehdr = ( np2noname && np2 -> cycleno != 0 ); in totalcmp()
265 if ( *(np1 -> name) != '_' && *(np2 -> name) == '_' ) in totalcmp()
267 if ( *(np1 -> name) == '_' && *(np2 -> name) != '_' ) in totalcmp()
269 if ( np1 -> ncall > np2 -> ncall ) in totalcmp()
271 if ( np1 -> ncall < np2 -> ncall ) in totalcmp()
273 return strcmp( np1 -> name , np2 -> name ); in totalcmp()
/openbsd/src/sys/nfs/
Dnfs_node.c88 struct nfsnode *np, find, *np2; in nfs_nget() local
147 np2 = RBT_INSERT(nfs_nodetree, &nmp->nm_ntree, np); in nfs_nget()
148 KASSERT(np2 == NULL); in nfs_nget()
/openbsd/src/regress/lib/libcrypto/x509/bettertls/certificates/
D1712.chain39 np2+FVpc0wECAwEAAaM3MDUwDwYDVR0TAQH/BAUwAwEB/zAiBgNVHR4BAf8EGDAW
/openbsd/src/gnu/gcc/gcc/
Dreal.c2268 int np2; in real_maxval() local
2282 np2 = SIGNIFICAND_BITS - fmt->p * fmt->log2_b; in real_maxval()
2284 clear_significand_below (r, np2); in real_maxval()
2321 int p2, np2, i, w; in round_for_format() local
2344 np2 = SIGNIFICAND_BITS - p2; in round_for_format()
2360 clear_significand_below (r, np2); in round_for_format()
2417 for (i = 0, w = (np2 - 1) / HOST_BITS_PER_LONG; i < w; ++i) in round_for_format()
2420 r->sig[w] & (((unsigned long)1 << ((np2 - 1) % HOST_BITS_PER_LONG)) - 1); in round_for_format()
2422 guard = test_significand_bit (r, np2 - 1); in round_for_format()
2423 lsb = test_significand_bit (r, np2); in round_for_format()
[all …]
/openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
Dnum_put_members_char.cc378 const num_put<char>& np2 = use_facet<num_put<char> >(oss2.getloc()); in test06() local
390 np2.put(oss2.rdbuf(), oss2, '+', 1.0); in test06()
Dnum_put_members_wchar_t.cc378 const num_put<wchar_t>& np2 = use_facet<num_put<wchar_t> >(woss2.getloc()); in test06() local
390 np2.put(woss2.rdbuf(), woss2, '+', 1.0); in test06()
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dreal.c2292 int p2, np2, i, w; local
2301 np2 = SIGNIFICAND_BITS - p2;
2317 clear_significand_below (r, np2);
2379 for (i = 0, w = (np2 - 1) / HOST_BITS_PER_LONG; i < w; ++i)
2382 r->sig[w] & (((unsigned long)1 << ((np2 - 1) % HOST_BITS_PER_LONG)) - 1);
2384 guard = test_significand_bit (r, np2 - 1);
2385 lsb = test_significand_bit (r, np2);
2392 set_significand_bit (&u, np2);
2423 clear_significand_below (r, np2);
/openbsd/src/sys/kern/
Dexec_elf.c1100 Elf_Note *np2 = (Elf_Note *)((char *)np + offset); in elf_os_pt_note() local
1104 total = sizeof(Elf_Note) + elfround(np2->namesz) + in elf_os_pt_note()
1105 elfround(np2->descsz); in elf_os_pt_note()
1108 names |= elf_os_pt_note_name(np2); in elf_os_pt_note()