Searched refs:pbits (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/lib/libc/inet/
H A Dinet_cidr_pton.c87 inet_cidr_pton_ipv4(const char *src, u_char *dst, int *pbits, int ipv6) { argument
141 *pbits = bits;
154 inet_cidr_pton_ipv6(const char *src, u_char *dst, int *pbits) { argument
244 *pbits = bits;
/freebsd-11-stable/crypto/openssh/
H A Ddh.c262 int pbits; local
265 (pbits = BN_num_bits(dh->p)) <= 0 ||
266 need > INT_MAX / 2 || 2 * need > pbits)
274 dh->length = MINIMUM(need * 2, pbits - 1);
/freebsd-11-stable/sbin/dumpfs/
H A Ddumpfs.c88 static void pbits(void *, int);
363 pbits(cg_clustersfree(&acg), acg.cg_nclusterblks);
367 pbits(cg_inosused(&acg), afs.fs_ipg);
369 pbits(cg_blksfree(&acg), afs.fs_fpg);
453 pbits(void *vp, int max) function
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_gzip.c129 * number of bytes in header. If pbits is non-NULL, it receives a
133 peek_at_header(struct archive_read_filter *filter, int *pbits, argument
232 if (pbits != NULL)
233 *pbits = bits;
/freebsd-11-stable/sys/mips/mips/
H A Dpmap.c1914 pt_entry_t pbits, *pte; local
1957 pbits = *pte;
1958 if (!pte_test(&pbits, PTE_V) || pte_test(&pbits,
1966 pte_set(&pbits, PTE_RO);
1967 if (pte_test(&pbits, PTE_D)) {
1968 pte_clear(&pbits, PTE_D);
1969 if (pte_test(&pbits, PTE_MANAGED)) {
1970 pa = TLBLO_PTE_TO_PA(pbits);
1987 *pte = pbits;
2899 pt_entry_t pbits, *pte; local
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dinterfaceiter.c407 unsigned char * pbits; local
445 pbits = (void *)&iter->current.netmask.type.in6;
446 pbits += nbytes;
447 *pbits |= 0xFF << (8 - nbits);
/freebsd-11-stable/sys/i386/i386/
H A Dpmap.c3229 pt_entry_t obits, pbits; local
3299 obits = pbits = *pte;
3300 if ((pbits & PG_V) == 0)
3304 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) ==
3306 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
3309 pbits &= ~(PG_RW | PG_M);
3313 pbits |= pg_nx;
3316 if (pbits != obits) {
3318 if (!atomic_cmpset_64(pte, obits, pbits))
3322 pbits))
[all...]
/freebsd-11-stable/sys/amd64/amd64/
H A Dpmap.c4590 pt_entry_t obits, pbits;
4594 obits = pbits = *pte;
4595 if ((pbits & PG_V) == 0)
4599 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) ==
4601 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
4604 pbits &= ~(PG_RW | PG_M);
4607 pbits |= pg_nx;
4609 if (pbits != obits) {
4610 if (!atomic_cmpset_long(pte, obits, pbits))
4589 pt_entry_t obits, pbits; local

Completed in 236 milliseconds