HomeSort by: relevance | last modified time | path
    Searched refs:nb (Results 1 - 25 of 217) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/distrib/syspkg/sets/base/base-locale-nb/
Makefile 3 PKGBASE=base-locale-nb
  /src/external/lgpl3/gmp/dist/mpn/generic/
bsqrt.c 35 mpn_bsqrt (mp_ptr rp, mp_srcptr ap, mp_bitcnt_t nb, mp_ptr tp)
40 ASSERT (nb > 0);
42 n = nb / GMP_NUMB_BITS;
45 mpn_bsqrtinv (tp, ap, nb, sp);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/device/
nouveau_nvkm_engine_device_acpi.c 40 nvkm_acpi_ntfy(struct notifier_block *nb, unsigned long val, void *data)
43 container_of(nb, typeof(*device), acpi.nb);
57 unregister_acpi_notifier(&device->acpi.nb);
65 device->acpi.nb.notifier_call = nvkm_acpi_ntfy;
66 register_acpi_notifier(&device->acpi.nb);
  /src/external/gpl3/binutils/dist/gprofng/src/
HeapData.cc 213 HeapData::setAllocStat (int64_t nb)
215 if (aSmallestBytes > nb)
216 aSmallestBytes = nb;
217 if (aLargestBytes < nb)
218 aLargestBytes = nb;
219 if (nb >= 0 && nb <= _1KB)
221 else if (nb <= _8KB)
223 else if (nb <= _32KB)
225 else if (nb <= _128KB
    [all...]
FileData.cc 325 FileData::setWriteStat (hrtime_t wt, int64_t nb)
329 if (nb != 0 && wSmallestBytes > nb)
330 wSmallestBytes = nb;
331 if (wLargestBytes < nb)
332 wLargestBytes = nb;
333 if (nb >= 0 && nb <= _1KB)
335 else if (nb <= _8KB)
337 else if (nb <= _32KB
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
HeapData.cc 213 HeapData::setAllocStat (int64_t nb)
215 if (aSmallestBytes > nb)
216 aSmallestBytes = nb;
217 if (aLargestBytes < nb)
218 aLargestBytes = nb;
219 if (nb >= 0 && nb <= _1KB)
221 else if (nb <= _8KB)
223 else if (nb <= _32KB)
225 else if (nb <= _128KB
    [all...]
FileData.cc 325 FileData::setWriteStat (hrtime_t wt, int64_t nb)
329 if (nb != 0 && wSmallestBytes > nb)
330 wSmallestBytes = nb;
331 if (wLargestBytes < nb)
332 wLargestBytes = nb;
333 if (nb >= 0 && nb <= _1KB)
335 else if (nb <= _8KB)
337 else if (nb <= _32KB
    [all...]
  /src/usr.bin/talk/
io.c 64 int nb; local
79 nb = poll(set, 2, A_LONG_TIME * 1000);
80 if (nb <= 0) {
89 nb = read(sockt, buf, sizeof buf);
90 if (nb <= 0) {
94 display(&his_win, buf, nb);
101 ioctl(0, FIONREAD, (void *) &nb);
102 nb = read(0, buf, nb);
103 display(&my_win, buf, nb);
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
readv.c 43 ssize_t ret, nb; local
55 nb = ret = read (d, buf, tot);
57 while (nb > 0) {
58 ssize_t cnt = min(nb, iov->iov_len);
62 nb -= cnt;
recvmsg.c 43 ssize_t ret, nb; local
56 nb = ret = recvfrom (s, buf, tot, flags, msg->msg_name, &msg->msg_namelen);
58 while (nb > 0) {
59 ssize_t cnt = min(nb, iov->iov_len);
63 nb -= cnt;
  /src/external/bsd/ntp/dist/libntp/lib/isc/
tsmemcmp.c 42 isc_tsmemcmp(const void *p1, const void *p2, size_t nb) {
49 for (/*NOP*/; 0 != nb; --nb, ++ucp1, ++ucp2) {
  /src/sys/dev/isa/
nct.c 304 struct nct_bank *nb; local
353 nb = &sc->sc_bank[0];
354 nb->nb_firstpin = 0;
355 nb->nb_numpins = 8;
356 nb->nb_enabled = 0xff;
357 nb->nb_reg_dir = LD7_GPIO0_DIRECTION;
358 nb->nb_reg_data = LD7_GPIO0_DATA;
359 nb->nb_reg_inv = LD7_GPIO0_INVERSION;
360 nb->nb_reg_stat = LD7_GPIO0_STATUS;
361 nb->nb_reg_mode = LDF_GPIO0_OUTMODE
525 struct nct_bank *nb; local
542 struct nct_bank *nb; local
565 struct nct_bank *nb; local
589 struct nct_bank *nb; local
    [all...]
  /src/usr.sbin/makefs/ffs/
ffs_balloc.c 89 int32_t nb; local
118 nb = lastlbn;
119 osize = ffs_blksize(fs, ip, nb);
131 nb = ufs_rw32(ip->i_ffs1_db[lbn], needswap);
132 if (nb != 0 && ip->i_ffs1_size >= ffs_lblktosize(fs, lbn + 1)) {
150 if (nb != 0) {
224 nb = ufs_rw32(ip->i_ffs1_ib[indirs[0].in_off], needswap);
227 if (nb == 0) {
232 nb = newb;
233 *allocblk++ = nb;
339 daddr_t newb, pref, nb; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/base/
number.c 48 int na, nb; local
56 nb = heim_base_tagged_object_value(b);
58 nb = *(int *)b;
60 return na - nb;
  /src/external/lgpl3/mpfr/dist/tests/
random2.c 47 int ran_nbits, bit_pos, nb; local
97 nb = (ran >> 1) % (1 << LOGBITS_PER_BLOCK) + 1;
101 /* Generate a string of nb ones. */
102 if (nb > bit_pos)
106 bit_pos -= nb;
111 bit_pos -= nb;
112 acc |= MPFR_LIMB_LSHIFT (MPFR_LIMB_MASK (nb) << 1, bit_pos);
117 /* Generate a string of nb zeroes. */
118 if (nb > bit_pos)
124 bit_pos -= nb;
    [all...]
  /src/external/apache2/llvm/dist/libcxx/src/support/solaris/
mbsnrtowcs.inc 38 size_t nb;
46 if ((nb = mbrtowc_l(&wc, s, nms, ps, loc)) == (size_t)-1)
49 else if (nb == 0 || nb == (size_t)-2)
51 s += nb;
52 nms -= nb;
59 if ((nb = mbrtowc_l(dst, s, nms, ps, loc)) == (size_t)-1) {
62 } else if (nb == (size_t)-2) {
65 } else if (nb == 0) {
69 s += nb;
    [all...]
  /src/sys/ufs/ffs/
ffs_balloc.c 81 ffs_extb(struct fs *fs, struct ufs2_dinode *dp, daddr_t nb)
83 return ufs_rw64(dp->di_extb[nb], UFS_FSNEEDSWAP(fs));
119 daddr_t newb, pref, nb; local
149 nb = lastlbn;
150 osize = ffs_blksize(fs, ip, nb);
153 error = ffs_realloccg(ip, nb, ffs_getdb(fs, ip, nb),
154 ffs_blkpref_ufs1(ip, lastlbn, nb, flags,
160 ip->i_size = ffs_lblktosize(fs, nb + 1);
163 ip->i_ffs1_db[nb] = ufs_rw32((u_int32_t)newb, needswap)
537 daddr_t newb, pref, nb; local
    [all...]
  /src/usr.sbin/map-mbone/
mapper.c 152 Neighbor *nb; local
154 for (nb = ifc->neighbors; nb; nb = nb->next)
155 if (nb->addr == addr)
156 return nb;
389 Neighbor *nb; local
402 for (nb = old_neighbors; nb; nb = nb->next
530 Neighbor *nb; local
641 Neighbor *nb; local
695 Neighbor *nb; local
744 Neighbor *nb; local
    [all...]
  /src/external/gpl2/lvm2/dist/libdm/mm/
dbg_malloc.c 61 struct memblock *nb; local
62 size_t tsize = s + sizeof(*nb) + sizeof(unsigned long);
70 if (!(nb = malloc(tsize))) {
77 nb->file = file;
78 nb->line = line;
83 nb->magic = nb + 1;
84 nb->length = s;
85 nb->id = ++_mem_stats.block_serialno;
86 nb->next = 0
    [all...]
  /src/tools/make/
buildmake.sh.in 31 docmd " link " "${_TOOL_PREFIX:-nb}make" \
32 @CC@ -o ${_TOOL_PREFIX:-nb}make *.o @LDFLAGS@ @LIBS@
  /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/
co-586.pl 28 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
45 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # load next b
46 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # load next b
56 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
75 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
85 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
111 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
169 $nb=($bi+1)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/
co-586.pl 28 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
45 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # load next b
46 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # load next b
56 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
75 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
85 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
111 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
169 $nb=($bi+1)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/
co-586.pl 29 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
46 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # load next b
47 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # load next b
57 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
76 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
86 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
112 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
170 $nb=($bi+1)
    [all...]
  /src/sys/external/bsd/drm2/include/linux/
interval_tree.h 55 const struct interval_tree_node *nb = vb; local
57 if (na->start < nb->start)
59 if (na->start > nb->start)
61 if (na->last < nb->last)
63 if (na->last > nb->last)
  /src/sys/ufs/ext2fs/
ext2fs_balloc.c 99 daddr_t nb; local
127 nb = fs2h32(ip->i_e2fs_blocks[bn]);
128 if (nb != 0) {
183 nb = fs2h32(ip->i_e2fs_blocks[EXT2FS_NDADDR + indirs[0].in_off]);
186 if (nb == 0) {
191 nb = newb;
192 *allocblk++ = nb;
219 nb = fs2h32(bap[indirs[i].in_off]);
223 if (nb != 0) {
233 nb = newb
    [all...]

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 9