HomeSort by: relevance | last modified time | path
    Searched defs:bi (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/sys/arch/x86/x86/
x86_userconf.c 47 struct bi_userconfcommand *bi, *bimax; local in function:userconf_bootinfo
55 bi = (struct bi_userconfcommand *)((uint8_t *)biuc + sizeof(*biuc));
56 bimax = bi + biuc->num;
57 for (; bi < bimax; bi++) {
58 aprint_debug("Processing userconf command: %s\n", bi->text);
59 userconf_parse(bi->text);
  /src/sys/arch/arc/stand/boot/
bootinfo.c 62 struct btinfo_common *bi; local in function:bi_add
71 bi = (void *)bi_next;
72 bi->next = size;
73 bi->type = type;
77 bi = (void *)bi_next;
78 bi->next = 0;
79 bi->type = BTINFO_NONE;
  /src/sys/arch/cobalt/stand/boot/
bootinfo.c 46 struct btinfo_common *bi; local in function:bi_init
50 bi = (struct btinfo_common *)bootinfo;
51 bi->next = bi->type = 0;
64 struct btinfo_common *bi; local in function:bi_add
73 bi = new;
74 bi->next = size;
75 bi->type = type;
79 bi = (struct btinfo_common *)bi_next;
80 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/emips/stand/common/
bootinfo.c 44 struct btinfo_common *bi; local in function:bi_init
48 bi = (struct btinfo_common *)bootinfo;
49 bi->next = bi->type = 0;
59 struct btinfo_common *bi; local in function:bi_add
64 bi = new;
65 bi->next = size;
66 bi->type = type;
70 bi = (struct btinfo_common *)bi_next;
71 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/mipsco/stand/common/
bootinfo.c 45 struct btinfo_common *bi; local in function:bi_init
49 bi = (struct btinfo_common *)bootinfo;
50 bi->next = bi->type = 0;
62 struct btinfo_common *bi; local in function:bi_add
67 bi = new;
68 bi->next = size;
69 bi->type = type;
73 bi = (struct btinfo_common *)bi_next;
74 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/mmeye/stand/boot/
bootinfo.c 46 struct btinfo_common *bi; local in function:bi_init
50 bi = (struct btinfo_common *)bootinfo;
51 bi->next = bi->type = 0;
64 struct btinfo_common *bi; local in function:bi_add
73 bi = new;
74 bi->next = size;
75 bi->type = type;
79 bi = (struct btinfo_common *)bi_next;
80 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/newsmips/stand/boot/
bootinfo.c 44 struct btinfo_common *bi; local in function:bi_init
48 bi = (struct btinfo_common *)bootinfo;
49 bi->next = bi->type = 0;
60 struct btinfo_common *bi; local in function:bi_add
65 bi = new;
66 bi->next = size;
67 bi->type = type;
71 bi = (struct btinfo_common *)bi_next;
72 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/pmax/stand/common/
bootinfo.c 44 struct btinfo_common *bi; local in function:bi_init
48 bi = (struct btinfo_common *)bootinfo;
49 bi->next = bi->type = 0;
59 struct btinfo_common *bi; local in function:bi_add
64 bi = new;
65 bi->next = size;
66 bi->type = type;
70 bi = (struct btinfo_common *)bi_next;
71 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/sgimips/stand/common/
bootinfo.c 62 struct btinfo_common *bi; local in function:bi_add
71 bi = (void *)bi_next;
72 bi->next = size;
73 bi->type = type;
77 bi = (void *)bi_next;
78 bi->next = 0;
79 bi->type = BTINFO_NONE;
  /src/sys/arch/mmeye/mmeye/
autoconf.c 110 struct btinfo_bootdev *bi; local in function:findroot
113 bi = (struct btinfo_bootdev *)lookup_bootinfo(BTINFO_BOOTDEV);
114 if (bi == NULL)
116 x = strlen(bi->bootdev) - 2;
117 p = strlen(bi->bootdev) - 1;
118 if (!isdigit(bi->bootdev[x]) ||
119 !isalpha(bi->bootdev[p]))
122 bootunit = bi->bootdev[x] - '0';
123 booted_partition = bi->bootdev[p] - 'a';
  /src/sys/arch/sparc/stand/boot/
bootinfo.c 46 struct btinfo_common *bi; local in function:bi_init
58 bi = (struct btinfo_common *)bootinfo;
59 bi->next = bi->type = 0;
71 struct btinfo_common *bi; local in function:bi_add
76 bi = new;
77 bi->next = ALIGN(size);
78 bi->type = type;
82 bi = (struct btinfo_common *)bi_next;
83 bi->next = bi->type = 0
    [all...]
  /src/sys/arch/sparc/stand/ofwboot/
bootinfo.c 47 struct btinfo_common *bi; local in function:bi_init
65 bi = (struct btinfo_common *)bootinfo;
66 bi->next = bi->type = 0;
78 struct btinfo_common *bi; local in function:bi_add
83 bi = new;
84 bi->next = ALIGN(size);
85 bi->type = type;
89 bi = (struct btinfo_common *)bi_next;
90 bi->next = bi->type = 0
    [all...]
  /src/lib/libc/db/btree/
bt_search.c 153 BINTERNAL *bi; local in function:__bt_snext
198 bi = GETBINTERNAL(h, idx);
199 pgno = bi->pgno;
230 BINTERNAL *bi; local in function:__bt_sprev
275 bi = GETBINTERNAL(h, idx);
276 pgno = bi->pgno;
bt_utils.c 150 BINTERNAL *bi; local in function:__bt_cmp
177 bi = GETBINTERNAL(h, e->index);
178 if (bi->flags & P_BIGKEY)
179 bigkey = bi->bytes;
181 k2.data = bi->bytes;
182 k2.size = bi->ksize;
bt_debug.c 202 BINTERNAL *bi; local in function:__bt_dpage
239 bi = GETBINTERNAL(h, cur);
241 "size %03d pgno %03d", bi->ksize, bi->pgno);
242 if (bi->flags & P_BIGKEY)
244 else if (bi->ksize)
246 " {%.*s}", (int)bi->ksize, bi->bytes);
bt_delete.c 146 BINTERNAL *bi; local in function:__bt_stkacq
198 bi = GETBINTERNAL(h, idx);
199 pgno = bi->pgno;
253 bi = GETBINTERNAL(h, idx);
254 pgno = bi->pgno;
375 BINTERNAL *bi; local in function:__bt_pdelete
400 bi = GETBINTERNAL(pg, idx);
403 if (bi->flags & P_BIGKEY &&
404 __ovfl_delete(t, bi->bytes) == RET_ERROR) {
426 nksize = NBINTERNAL(bi->ksize)
    [all...]
bt_split.c 85 BINTERNAL *bi = NULL; /* pacify gcc */ local in function:__bt_split
181 bi = GETBINTERNAL(rchild, 0);
182 nbytes = NBINTERNAL(bi->ksize);
239 memmove(dest, bi, nbytes);
538 BINTERNAL *bi = NULL; /* pacify gcc */ local in function:bt_broot
577 bi = GETBINTERNAL(r, 0);
578 nbytes = NBINTERNAL(bi->ksize);
581 memmove(dest, bi, nbytes);
616 BINTERNAL *bi; local in function:bt_psplit
648 src = bi = GETBINTERNAL(h, nxt)
    [all...]
  /src/sys/arch/ia64/stand/efi/libefi/
exec.c 115 enter_kernel(u_int64_t start, struct bootinfo *bi)
129 __asm __volatile("mov r8=%0" :: "r" (bi));
137 struct bootinfo *bi; local in function:elf64_exec
161 (void*)&bi);
168 memset(bi, 0, sizeof(struct bootinfo));
169 bi_load(bi, fp, &mapkey, pages);
207 enter_kernel(fp->marks[MARK_ENTRY], bi);
  /src/sys/arch/hpc/stand/hpcboot/
arch.cpp 85 menu.setup_bootinfo(_boot_arg->bi);
86 _boot_arg->bi.bi_cnuse = _cons->getBootConsole();
88 _boot_arg->bootinfo = ptokv(p + offsetof(struct BootArgs, bi));
91 struct bootinfo &bi = _boot_arg->bi; local in function:Architecture::setupBootInfo
93 bi.fb_width, bi.fb_height, bi.fb_type, bi.fb_line_bytes,
94 bi.fb_addr))
    [all...]
  /src/sys/arch/ews4800mips/stand/common/
loader.c 178 struct bootinfo bi; local in function:cmd_boot
203 bi.bi_version = 0x1;
204 bi.bi_size = sizeof bi;
205 bi.bi_nsym = marks[MARK_NSYM];
206 bi.bi_ssym = (uint8_t *)marks[MARK_SYM];
207 bi.bi_esym = (uint8_t *)marks[MARK_END];
208 bi.bi_mainfo = ipl_args.v1;
222 :: "r"(entry), "m"(argc), "m"(argp), "m"(bi));
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
nouveau_dispnv50_headc57d.c 122 u16 ri = 0, gi = 0, bi = 0, i; local in function:headc57d_olut_load_8
127 bi = (drm_color_lut_extract(in-> blue, 16) - b) / 4;
133 writew(b + bi * i, mem + 4);
  /src/sys/dev/wscons/
wsdisplay_glyphcache.c 281 int cell, cx, cy, idx, bi; local in function:glyphcache_try
289 bi = gc->gc_attrmap[idx];
290 if (bi == -1) {
292 bi = 1;
293 while ((bi < gc->gc_numbuckets) &&
294 (gc->gc_buckets[bi].gb_index != -1)) {
295 bi++;
297 if (bi < gc->gc_numbuckets) {
299 gc->gc_attrmap[idx] = bi;
300 b = &gc->gc_buckets[bi];
    [all...]
  /src/sys/arch/amd64/stand/prekern/
prng.c 82 struct bi_modulelist_entry *bi, *bimax; local in function:prng_get_entropy_file
95 bi = (struct bi_modulelist_entry *)((uint8_t *)biml + sizeof(*biml));
96 bimax = bi + biml->num;
97 for (; bi < bimax; bi++) {
98 if (bi->type != BI_MODULE_RND) {
101 if (bi->len != sizeof(rndsave_t)) {
106 rndsave = (rndsave_t *)(vaddr_t)bi->base;
  /src/sys/arch/ia64/stand/ia64/ski/
exec.c 128 enter_kernel(const char* filename, u_int64_t start, struct bootinfo *bi)
144 __asm __volatile("mov r8=%0" :: "r" (bi));
152 struct bootinfo *bi; local in function:elf64_exec
161 bi = &bootinfo;
162 memset(bi, 0, sizeof(struct bootinfo));
163 bi_load(bi, fp, "");
193 enter_kernel(fp->f_name, fp->marks[MARK_ENTRY], bi);
  /src/lib/librumpuser/
rumpuser_dl.c 236 int bi; local in function:getsymbols
251 for (bi = nbuck-1; bi >= 0; bi--) {
252 if (buckets[bi] != 0) {
253 maxchain = buckets[bi];

Completed in 79 milliseconds

1 2 3