Searched refs:nb (Results 1 - 25 of 117) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A Dpr28946.c9 fct (unsigned nb) argument
11 if ((nb >> 5) != 0)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.target/i386/
H A Dpr28946.c9 fct (unsigned nb) argument
11 if ((nb >> 5) != 0)
/netbsd-6-1-5-RELEASE/distrib/syspkg/sets/base/base-locale-nb/
H A DMakefile3 PKGBASE=base-locale-nb
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D921011-1.c2 fun (nb)
3 int nb;
7 while (nb--)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dsms-2.c9 fun (nb)
10 int nb;
14 while (nb--)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D921011-1.c2 fun (nb)
3 int nb;
7 while (nb--)
/netbsd-6-1-5-RELEASE/usr.bin/talk/
H A Dio.c64 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...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/debug/dwarf2/
H A Dtemplate-params-4.C33 int nb = count<int, char, long>::value; local
34 return nb;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dreadv.c43 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;
H A Drecvmsg.c43 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;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/base/
H A Dnumber.c48 int na, nb; local
56 nb = heim_base_tagged_object_value(b);
58 nb = *(int *)b;
60 return na - nb;
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Drandom2.c41 int ran_nbits, bit_pos, nb; local
91 nb = (ran >> 1) % (1 << LOGBITS_PER_BLOCK) + 1;
94 /* Generate a string of nb ones. */
95 if (nb > bit_pos)
99 bit_pos -= nb;
104 bit_pos -= nb;
105 acc |= (((mp_limb_t) 2 << nb) - 2) << bit_pos;
110 /* Generate a string of nb zeroes. */
111 if (nb > bit_pos)
117 bit_pos -= nb;
[all...]
/netbsd-6-1-5-RELEASE/libexec/lfs_cleanerd/
H A Dcoalesce.c155 int nb, onb, noff; local
164 onb = nb = lblkno(fs, dip->di_size);
167 if (nb < NDADDR) {
180 if (nb > dip->di_blocks) {
181 dlog("ino %d, computed blocks %d > held blocks %d", ino, nb,
187 bip = (BLOCK_INFO *)malloc(sizeof(BLOCK_INFO) * nb);
190 (unsigned long long)ino, nb);
194 for (i = 0; i < nb; i++) {
202 lim.blkcnt = nb;
210 for (i = 0; i < nb;
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-netbios.c54 netbios_print(struct p8022Hdr *nb, u_int length) argument
61 if (nb->flags == UI) {
67 if ((u_char *)(nb + 1) > snapend) {
73 netbios_decode(nb, (u_char *)nb + p8022Size, length - p8022Size);
/netbsd-6-1-5-RELEASE/sys/ufs/ffs/
H A Dffs_balloc.c108 daddr_t newb, pref, nb; local
139 nb = lastlbn;
140 osize = blksize(fs, ip, nb);
143 error = ffs_realloccg(ip, nb,
144 ffs_blkpref_ufs1(ip, lastlbn, nb, flags,
149 ip->i_size = lblktosize(fs, nb + 1);
152 ip->i_ffs1_db[nb] = ufs_rw32((u_int32_t)newb, needswap);
168 nb = ufs_rw32(ip->i_ffs1_db[lbn], needswap);
169 if (nb != 0 && ip->i_size >= lblktosize(fs, lbn + 1)) {
188 if (nb !
530 daddr_t newb, pref, nb; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/makefs/ffs/
H A Dffs_balloc.c88 int32_t nb; local
117 nb = lastlbn;
118 osize = blksize(fs, ip, nb);
130 nb = ufs_rw32(ip->i_ffs1_db[lbn], needswap);
131 if (nb != 0 && ip->i_ffs1_size >= lblktosize(fs, lbn + 1)) {
150 if (nb != 0) {
225 nb = ufs_rw32(ip->i_ffs1_ib[indirs[0].in_off], needswap);
228 if (nb == 0) {
233 nb = newb;
234 *allocblk++ = nb;
343 daddr_t newb, pref, nb; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/map-mbone/
H A Dmapper.c153 Neighbor *nb; local
155 for (nb = ifc->neighbors; nb; nb = nb->next)
156 if (nb->addr == addr)
157 return nb;
387 Neighbor *nb; local
400 for (nb = old_neighbors; nb; n
528 Neighbor *nb; local
639 Neighbor *nb; local
693 Neighbor *nb; local
742 Neighbor *nb; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/libdm/mm/
H A Ddbg_malloc.c61 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
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/
H A Dco-586.pl18 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
35 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # laod next b
36 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # laod next b
46 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
65 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
75 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
101 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
159 $nb
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/x86/
H A Dcomba.pl6 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
23 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 0; # laod next b
24 &mov("edx",&DWP(($nb)*4,$b,"",0)) if $pos == 1; # laod next b
34 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
53 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
63 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
89 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos <= 1) && ($na != $nb);
147 $nb
[all...]
/netbsd-6-1-5-RELEASE/sys/ufs/ext2fs/
H A Dext2fs_balloc.c96 daddr_t nb; local
124 nb = fs2h32(ip->i_e2fs_blocks[bn]);
125 if (nb != 0) {
181 nb = fs2h32(ip->i_e2fs_blocks[NDADDR + indirs[0].in_off]);
184 if (nb == 0) {
189 nb = newb;
190 *allocblk++ = nb;
218 nb = fs2h32(bap[indirs[i].in_off]);
222 if (nb != 0) {
232 nb
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/db/btree/
H A Dbt_overflow.c87 uint32_t sz, nb, plen; local
113 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) {
117 nb = MIN(sz, plen);
118 memmove(p, (char *)(void *)h + BTDATAOFF, nb); local
121 if ((sz -= nb) == 0)
144 uint32_t sz, nb, plen; local
168 nb = MIN(sz, plen);
169 (void)memmove((char *)(void *)h + BTDATAOFF, p, (size_t)nb);
177 if ((sz -= nb) == 0) {
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_usage.c65 CHAR_T *p, nb[MAXCMDNAMELEN + 5]; local
121 nb[0] = L('[');
122 nb[1] = TOUPPER((UCHAR_T)cp->name[0]);
123 nb[2] = cp->name[0];
124 nb[3] = L(']');
126 p = nb + 4; (*p++ = *name++) != '\0';);
127 name = nb;
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/libsa/
H A Ddiskio.c95 size_t nb = size >> 9; local
97 if ((flag == F_READ) && !(size & 511) && (stb + nb <= dd->rend)) {
98 if (!dd->rds(buf, stb, nb)) {
/netbsd-6-1-5-RELEASE/external/bsd/openpam/dist/lib/
H A Dopenpam_configure.c281 char *nb, *ne, *vb, *ve; local
287 for (nb = *line; *nb && is_lws(*nb); ++nb)
289 if (!*nb) {
290 *line = nb;
293 for (ne = nb; *ne && !is_lws(*ne) && *ne != '='; ++ne)
296 if (ne == nb)
315 size = (ne - nb)
[all...]

Completed in 317 milliseconds

12345