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

/freebsd-11.0-release/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.0-release/crypto/openssh/
H A Ddh.c260 int pbits; local
263 (pbits = BN_num_bits(dh->p)) <= 0 ||
264 need > INT_MAX / 2 || 2 * need > pbits)
266 dh->length = MIN(need * 2, pbits - 1);
/freebsd-11.0-release/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.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_gzip.c122 * number of bytes in header. If pbits is non-NULL, it receives a
126 peek_at_header(struct archive_read_filter *filter, int *pbits) argument
201 if (pbits != NULL)
202 *pbits = bits;
/freebsd-11.0-release/sys/mips/mips/
H A Dpmap.c1918 pt_entry_t pbits, *pte; local
1961 pbits = *pte;
1962 if (!pte_test(&pbits, PTE_V) || pte_test(&pbits,
1970 pte_set(&pbits, PTE_RO);
1971 if (pte_test(&pbits, PTE_D)) {
1972 pte_clear(&pbits, PTE_D);
1973 if (pte_test(&pbits, PTE_MANAGED)) {
1974 pa = TLBLO_PTE_TO_PA(pbits);
1991 *pte = pbits;
2903 pt_entry_t pbits, *pte; local
[all...]
/freebsd-11.0-release/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.0-release/sys/i386/i386/
H A Dpmap.c3182 pt_entry_t obits, pbits;
3252 obits = pbits = *pte;
3253 if ((pbits & PG_V) == 0)
3257 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) ==
3259 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
3262 pbits &= ~(PG_RW | PG_M);
3266 pbits |= pg_nx;
3269 if (pbits != obits) {
3271 if (!atomic_cmpset_64(pte, obits, pbits))
3275 pbits))
3181 pt_entry_t obits, pbits; local
[all...]
/freebsd-11.0-release/sys/amd64/amd64/
H A Dpmap.c4129 pt_entry_t obits, pbits;
4133 obits = pbits = *pte;
4134 if ((pbits & PG_V) == 0)
4138 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) ==
4140 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME);
4143 pbits &= ~(PG_RW | PG_M);
4146 pbits |= pg_nx;
4148 if (pbits != obits) {
4149 if (!atomic_cmpset_long(pte, obits, pbits))
4128 pt_entry_t obits, pbits; local

Completed in 264 milliseconds