Searched refs:pbits (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/lib/libc/inet/ |
| H A D | inet_cidr_pton.c | 88 inet_cidr_pton_ipv4(const char *src, u_char *dst, int *pbits, int ipv6) { in inet_cidr_pton_ipv4() argument 142 *pbits = bits; in inet_cidr_pton_ipv4() 155 inet_cidr_pton_ipv6(const char *src, u_char *dst, int *pbits) { in inet_cidr_pton_ipv6() argument 245 *pbits = bits; in inet_cidr_pton_ipv6()
|
| /freebsd-12.1/crypto/openssh/ |
| H A D | dh.c | 271 int pbits; in dh_gen_key() local 277 (pbits = BN_num_bits(dh_p)) <= 0 || in dh_gen_key() 278 need > INT_MAX / 2 || 2 * need > pbits) in dh_gen_key() 286 if (!DH_set_length(dh, MINIMUM(need * 2, pbits - 1))) in dh_gen_key()
|
| /freebsd-12.1/sbin/dumpfs/ |
| H A D | dumpfs.c | 90 static void pbits(void *, int); 385 pbits(cg_clustersfree(&acg), acg.cg_nclusterblks); in dumpcg() 389 pbits(cg_inosused(&acg), afs.fs_ipg); in dumpcg() 391 pbits(cg_blksfree(&acg), afs.fs_fpg); in dumpcg() 475 pbits(void *vp, int max) in pbits() function
|
| /freebsd-12.1/contrib/libarchive/libarchive/ |
| H A D | archive_read_support_filter_gzip.c | 133 peek_at_header(struct archive_read_filter *filter, int *pbits, in peek_at_header() argument 218 if (pbits != NULL) in peek_at_header() 219 *pbits = bits; in peek_at_header()
|
| /freebsd-12.1/sys/mips/mips/ |
| H A D | pmap.c | 1923 pt_entry_t pbits, *pte; in pmap_protect() local 1966 pbits = *pte; in pmap_protect() 1967 if (!pte_test(&pbits, PTE_V) || pte_test(&pbits, in pmap_protect() 1975 pte_set(&pbits, PTE_RO); in pmap_protect() 1996 *pte = pbits; in pmap_protect() 2890 pt_entry_t pbits, *pte; in pmap_remove_write() local 2911 pbits = *pte; in pmap_remove_write() 2913 pte_clear(&pbits, PTE_D); in pmap_remove_write() 2916 pte_set(&pbits, PTE_RO); in pmap_remove_write() 2917 if (pbits != *pte) { in pmap_remove_write() [all …]
|
| /freebsd-12.1/contrib/ntp/lib/isc/win32/ |
| H A D | interfaceiter.c | 407 unsigned char * pbits; in GAA_find_prefix() local 445 pbits = (void *)&iter->current.netmask.type.in6; in GAA_find_prefix() 446 pbits += nbytes; in GAA_find_prefix() 447 *pbits |= 0xFF << (8 - nbits); in GAA_find_prefix()
|
| /freebsd-12.1/sys/i386/i386/ |
| H A D | pmap.c | 3413 pt_entry_t obits, pbits; in pmap_protect() local 3483 obits = pbits = *pte; in pmap_protect() 3484 if ((pbits & PG_V) == 0) in pmap_protect() 3488 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) == in pmap_protect() 3490 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME); in pmap_protect() 3493 pbits &= ~(PG_RW | PG_M); in pmap_protect() 3497 pbits |= pg_nx; in pmap_protect() 3500 if (pbits != obits) { in pmap_protect() 3502 if (!atomic_cmpset_64(pte, obits, pbits)) in pmap_protect() 3506 pbits)) in pmap_protect()
|
| /freebsd-12.1/sys/amd64/amd64/ |
| H A D | pmap.c | 5418 pt_entry_t obits, pbits; in pmap_protect() local 5422 obits = pbits = *pte; in pmap_protect() 5423 if ((pbits & PG_V) == 0) in pmap_protect() 5427 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) == in pmap_protect() 5429 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME); in pmap_protect() 5432 pbits &= ~(PG_RW | PG_M); in pmap_protect() 5435 pbits |= pg_nx; in pmap_protect() 5437 if (pbits != obits) { in pmap_protect() 5438 if (!atomic_cmpset_long(pte, obits, pbits)) in pmap_protect()
|