/src/sys/dev/usb/ |
emdtv_board.c | 81 const struct emdtv_board *eb; local in function:emdtv_board_lookup 85 eb = &emdtv_boards[i]; 86 if (vendor == eb->eb_vendor && product == eb->eb_product) 87 return eb;
|
emdtv.c | 388 const struct emdtv_board *eb = sc->sc_board; local in function:emdtv_gpio_ctl 399 const struct emdtv_gpio_regs *r = &eb->eb_gpio_regs;
|
/src/sbin/newfs_msdos/ |
newfs_msdos.c | 66 char *eb; local in function:get_tstamp 81 l = strtoll(b, &eb, 0); 82 if (b == eb || *eb || errno)
|
/src/sbin/gpt/ |
main.c | 116 char *eb; local in function:get_tstamp 131 l = strtoll(b, &eb, 0); 132 if (b == eb || *eb || errno)
|
/src/sys/ufs/chfs/ |
chfs_nodeops.c | 346 struct chfs_eraseblock *eb, *tmpeb; local in function:chfs_mark_node_obsolete 348 TAILQ_FOREACH_SAFE(eb, &chmp->chm_free_queue, queue, tmpeb) { 349 if (eb == cheb) { 356 TAILQ_FOREACH_SAFE(eb, &chmp->chm_dirty_queue, queue, tmpeb) { 357 if (eb == cheb) { 365 TAILQ_FOREACH_SAFE(eb, &chmp->chm_very_dirty_queue, queue, tmpeb) { 366 if (eb == cheb) { 374 TAILQ_FOREACH_SAFE(eb, &chmp->chm_clean_queue, queue, tmpeb) { 375 if (eb == cheb) {
|
chfs_gc.c | 424 struct chfs_eraseblock *eb; local in function:chfs_gcollect_pass 523 eb = chmp->chm_gcblock; 525 if (!eb) { 526 eb = find_gc_block(chmp); 529 if (!eb) { 530 dbg_gc("!eb\n"); 539 if (!eb->used_size) { 540 dbg_gc("!eb->used_size\n"); 545 nref = eb->gc_node; 546 gcblock_dirty = eb->dirty_size [all...] |
/src/tests/lib/libc/net/ |
h_dns_server.c | 144 char *eb = buf + buflen; local in function:name2str 147 if (b < eb) \
|
/src/usr.sbin/makefs/ |
makefs.c | 478 char *eb; local in function:get_tstamp 490 l = strtoll(b, &eb, 0); 491 if (b == eb || *eb || errno)
|
/src/lib/libedit/ |
keymacro.c | 622 if (b < eb) \ 633 char *b = buf, *eb = b + len; local in function:keymacro__decode_str 650 ssize_t n = ct_encode_char(b, (size_t)(eb - b), *p2++);
|
/src/sys/arch/amiga/stand/binpatch/ |
binpatch.c | 406 char *eb = strchr(symbol, ']'); local in function:FindOffset 412 if (eb && (eb > sb)) { 413 if ((eb - symbol) == (sz - 1)) { 426 *eb = '\0';
|
/src/bin/pax/ |
options.c | 2110 char *eb; local in function:set_tstamp 2122 l = strtoll(b, &eb, 0); 2123 if (b == eb || *eb || errno)
|
/src/usr.sbin/tprof/ |
tprof_top.c | 436 struct sample_elm * const *eb = b; local in function:sample_sortfunc_accumulative 437 return (*eb)->num[SAMPLE_MODE_ACCUMULATIVE] - 445 struct sample_elm * const *eb = b; local in function:sample_sortfunc_instantaneous 446 return (*eb)->num[SAMPLE_MODE_INSTANTANEOUS] -
|
/src/sys/arch/luna68k/dev/ |
omrasops.c | 1287 int sb, eb, db, sboff, full, cnt, lnum, rnum; local in function:om1_copycols 1320 eb = (db + w) & ALIGNMASK; 1321 rmask = (eb == 0) ? 0 : ALL1BITS << (32 - eb); 1420 int sb, eb, db, sboff, full, cnt, lnum, rnum; local in function:om4_copycols 1459 eb = (db + w) & ALIGNMASK; 1460 rmask = (eb == 0) ? 0 : ALL1BITS << (32 - eb);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_execbuffer.c | 288 #define exec_entry(EB, VMA) (&(EB)->exec[(VMA)->exec_flags - (EB)->flags]) 290 static inline bool eb_use_cmdparser(const struct i915_execbuffer *eb) 292 return intel_engine_requires_cmd_parser(eb->engine) || 293 (intel_engine_using_cmd_parser(eb->engine) && 294 eb->args->batch_len); 297 static int eb_create(struct i915_execbuffer *eb) 299 if (!(eb->args->flags & I915_EXEC_HANDLE_LUT)) { 300 unsigned int size = 1 + ilog2(eb->buffer_count) 2607 struct i915_execbuffer eb; local in function:i915_gem_do_execbuffer [all...] |
/src/sbin/sysctl/ |
sysctl.c | 410 char eb[64]; local in function:findhandler 419 regerror(j, &re[i], eb, sizeof(eb)); 420 errx(EXIT_FAILURE, "regcomp: %s: %s", p[i].ps_re, eb); 430 regerror(j, &re[i], eb, sizeof(eb)); 431 errx(EXIT_FAILURE, "regexec: %s: %s", p[i].ps_re, eb);
|
/src/sys/rump/librump/rumpvfs/ |
rumpfs.c | 2003 struct rump_boot_etfs *eb; local in function:rumpfs_init 2013 for (eb = ebstart; eb; eb = eb->_eb_next) { 2014 eb->eb_status = etfsregister(eb->eb_key, eb->eb_hostpath, 2015 eb->eb_type, eb->eb_begin, eb->eb_size) [all...] |