/src/distrib/syspkg/sets/base/base-locale-nb/ |
Makefile | 3 PKGBASE=base-locale-nb
|
/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/usr.bin/talk/ |
io.c | 64 int nb; local in function:talk 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/sys/dev/isa/ |
nct.c | 304 struct nct_bank *nb; local in function:nct_attach 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 in function:nct_sel 542 struct nct_bank *nb; local in function:nct_gpio_read 565 struct nct_bank *nb; local in function:nct_gpio_write 589 struct nct_bank *nb; local in function:nct_gpio_ctl [all...] |
/src/usr.sbin/makefs/ffs/ |
ffs_balloc.c | 89 int32_t nb; local in function:ffs_balloc_ufs1 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 in function:ffs_balloc_ufs2 [all...] |
/src/libexec/lfs_cleanerd/ |
coalesce.c | 171 blkcnt_t i, nb, onb; local in function:clean_inode 180 onb = nb = lfs_lblkno(fs, lfs_dino_getsize(fs, dip)); 183 if (nb < ULFS_NDADDR) { 197 if (nb > lfs_dino_getblocks(fs, dip)) { 199 (uintmax_t)ino, (intmax_t)nb, 216 if (nb > INT64_MAX / sizeof(BLOCK_INFO)) { 218 (uintmax_t)ino, (uintmax_t)nb); 223 bip = (BLOCK_INFO *)malloc(sizeof(BLOCK_INFO) * nb); 226 (unsigned long long)ino, (intmax_t)nb, 231 for (i = 0; i < nb; i++) [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 in function:ffs_balloc_ufs1 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 in function:ffs_balloc_ufs2 [all...] |
/src/usr.sbin/map-mbone/ |
mapper.c | 152 Neighbor *nb; local in function:find_neighbor 154 for (nb = ifc->neighbors; nb; nb = nb->next) 155 if (nb->addr == addr) 156 return nb; 389 Neighbor *nb; local in function:accept_neighbors 402 for (nb = old_neighbors; nb; nb = nb->next 530 Neighbor *nb; local in function:accept_neighbors2 641 Neighbor *nb; local in function:print_map 695 Neighbor *nb; local in function:graph_edges 744 Neighbor *nb; local in function:elide_aliases [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/sys/external/bsd/drm2/include/linux/ |
interval_tree.h | 55 const struct interval_tree_node *nb = vb; local in function:interval_tree_compare_nodes 57 if (na->start < nb->start) 59 if (na->start > nb->start) 61 if (na->last < nb->last) 63 if (na->last > nb->last)
|
vmalloc.h | 146 register_vmap_purge_notifier(struct notifier_block *nb __unused) 152 unregister_vmap_purge_notifier(struct notifier_block *nb __unused)
|
/src/sys/ufs/ext2fs/ |
ext2fs_balloc.c | 99 daddr_t nb; local in function:ext2fs_balloc 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...] |
/src/lib/libc/db/btree/ |
bt_overflow.c | 87 uint32_t sz, nb, plen; local in function:__ovfl_get 114 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) { 118 nb = MIN(sz, plen); 119 memmove(p, (char *)(void *)h + BTDATAOFF, nb); 122 if ((sz -= nb) == 0) 145 uint32_t sz, nb, plen; local in function:__ovfl_put 169 nb = MIN(sz, plen); 170 (void)memmove((char *)(void *)h + BTDATAOFF, p, (size_t)nb); 178 if ((sz -= nb) == 0) {
|
/src/sys/crypto/blake2/ |
blake2s.h | 43 uint8_t nb; /* number of bytes in buffer */ member in struct:blake2s
|
blake2s.c | 166 B->nb = 0; 200 if (n <= 64u - B->nb) { 202 (void)memcpy(&B->b[B->nb], p, n); 203 B->nb += n; 205 } else if (0 < B->nb) { 207 (void)memcpy(&B->b[B->nb], p, 64 - B->nb); 210 p += 64 - B->nb; 211 n -= 64 - B->nb; 228 B->nb = n [all...] |
/src/sys/arch/atari/stand/libsa/ |
diskio.c | 97 size_t nb = size >> 9; local in function:rootstrategy 99 if ((flag == F_READ) && !(size & 511) && (stb + nb <= dd->rend)) { 100 if (!dd->rds(buf, stb, nb)) {
|
/src/sys/kern/ |
core_elf32.c | 126 struct note_buf *nb; local in function:ELFNAMEEND 139 notesize = ns.ns_count * sizeof nb->nb_data + ns.ns_offset; 264 for (nb = ns.ns_first; nb != NULL; nb = nb->nb_next) { 266 nb->nb_data, 267 nb->nb_next == NULL ? ns.ns_offset : sizeof nb->nb_data), 296 while ((nb = ns.ns_first) != NULL) 552 struct note_buf *nb = ns->ns_last; local in function:save_note_bytes [all...] |
/src/games/dab/ |
algor.cc | 131 BOARD nb(b); local in function:ALGOR::find_max_closure 138 while ((nbox = count_closure(ty, tx, tdir, nb)) != 0) 187 BOARD nb(b); local in function:ALGOR::find_good_turn 193 BOX box(y, x, nb); 194 if (box.count() < 2 && try_good_turn(box, y, x, dir, nb)) 239 BOARD nb(b); local in function:ALGOR::find_min_closure1 242 size_t nbox, minbox = nb.nx() * nb.ny() + 1; 246 while (find_bad_turn(ty, tx, tdir, nb, last)) { 249 if ((mv = nb.domove(ty, tx, tdir, getWho())) != 0 [all...] |
/src/lib/libc/compat/rpc/ |
compat_rpcb.c | 68 const struct timeval50 tout50, const struct netbuf *nb) 73 outproc, outbuf, tout, nb);
|
/src/sys/arch/mvme68k/stand/sboot/ |
start.s | 55 movl %sp@(8), %a3 | nb args (start) 56 movl %sp@(12), %a4 | nb end args
|
/src/common/lib/libc/hash/sha3/ |
sha3.c | 111 C->nb = 8*rw; 122 assert(0 < C->nb); 125 if ((C->nb % 8) != 0) { 127 for (ib = 0; ib < MIN(len, C->nb % 8); ib++) 129 C->A[rw - (C->nb + 7)/8] ^= T << (8*(8 - (C->nb % 8))); 130 C->nb -= ib; 135 if (C->nb == 0) { 137 C->nb = 8*rw; 146 assert((C->nb % 8) == 0) [all...] |
/src/lib/libc/gdtoa/ |
strtoIg.c | 44 int i, nb, nw, nw1, rv, rv1, swap; local in function:strtoIg 62 nb = fpi->nbits; 63 nb1 = nb & 31; 98 b1 = set_ones(b1, nb);
|
/src/usr.bin/rusers/ |
rusers.c | 231 struct netbuf nb; local in function:onehost 250 nb.buf = ai->ai_addr; 251 nb.len = nb.maxlen = ai->ai_addrlen; 252 rusers_reply((char *)&up, &nb, NULL);
|
/src/sys/net/npf/ |
npf_ext_log.c | 106 struct nbuf *nb = npc->npc_nbuf; local in function:npf_log 107 npf_ifmap_copyname(npc->npc_ctx, nb ? nb->nb_ifid : 0,
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/ |
nouveau_backlight.c | 59 const int nb = ida_simple_get(&bl_ida, 0, 0, GFP_KERNEL); local in function:nouveau_get_backlight_name 60 if (nb < 0 || nb >= 100) 62 if (nb > 0) 63 snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight%d", nb); 66 bl->id = nb;
|