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

1 2

  /src/sys/dev/bi/
bi.c 81 const struct bi_list *bl; local in function:bi_print
85 for (bl = &bi_list[0]; bl->bl_nr; bl++)
86 if (bl->bl_nr == nr)
90 if (bl->bl_nr == 0)
93 aprint_normal(bl->bl_name);
97 if (bl->bl_havedriver & DT_VEC)
106 if (bl->bl_havedriver & DT_QUIET)
108 return bl->bl_havedriver & DT_QUIET ? QUIET
    [all...]
  /src/games/backgammon/common_source/
board.c 52 static const char bl[] = local in function:wrboard
65 writel(bl);
66 strcpy(ln, bl);
106 strcpy(ln, bl);
142 strcpy(ln, bl);
  /src/lib/libc/db/btree/
bt_utils.c 71 BLEAF *bl; local in function:__bt_ret
74 bl = GETBLEAF(e->page, e->index);
84 if (bl->flags & P_BIGKEY) {
85 if (__ovfl_get(t, bl->bytes,
90 if (bl->ksize > rkey->size) {
91 p = realloc(rkey->data, bl->ksize);
95 rkey->size = bl->ksize;
97 memmove(rkey->data, bl->bytes, bl->ksize);
98 key->size = bl->ksize
151 BLEAF *bl; local in function:__bt_cmp
    [all...]
bt_debug.c 203 BLEAF *bl; local in function:__bt_dpage
254 bl = GETBLEAF(h, cur);
255 if (bl->flags & P_BIGKEY)
258 (unsigned long) __bt_pgno_t(bl->bytes),
259 __bt_uint32_t(bl->bytes + sizeof(pgno_t)));
260 else if (bl->ksize)
261 (void)fprintf(tracefp, "%s/", bl->bytes);
262 if (bl->flags & P_BIGDATA)
266 __bt_pgno_t(bl->bytes + bl->ksize)
    [all...]
bt_delete.c 470 BLEAF *bl; local in function:__bt_dleaf
484 to = bl = GETBLEAF(h, idx);
485 if (bl->flags & P_BIGKEY && __ovfl_delete(t, bl->bytes) == RET_ERROR)
487 if (bl->flags & P_BIGDATA &&
488 __ovfl_delete(t, bl->bytes + bl->ksize) == RET_ERROR)
492 nbytes = NBLEAF(bl);
bt_split.c 86 BLEAF *bl = NULL, *tbl; /* pacify gcc */ local in function:__bt_split
185 bl = GETBLEAF(rchild, 0);
186 nbytes = NBINTERNAL(bl->ksize);
187 if (t->bt_pfx && !(bl->flags & P_BIGKEY) &&
193 b.size = bl->ksize;
194 b.data = bl->bytes;
245 WR_BINTERNAL(dest, nksize ? nksize : bl->ksize,
246 rchild->pgno, bl->flags & P_BIGKEY);
247 memmove(dest, bl->bytes, nksize ? nksize : bl->ksize)
539 BLEAF *bl; local in function:bt_broot
617 BLEAF *bl; local in function:bt_psplit
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
am3517-evm.dts 131 backlight = <&bl>;
142 bl: backlight { label
logicpd-som-lv-baseboard.dtsi 112 backlight = <&bl>;
121 bl: backlight { label
ste-nomadik-nhk15.dts 237 backlight = <&bl>;
247 bl: backlight { label
vf-colibri.dtsi 13 bl: backlight { label
logicpd-torpedo-baseboard.dtsi 142 backlight = <&bl>;
151 bl: backlight { label
imx6ull-colibri.dtsi 14 bl: backlight { label
281 pinctrl_gpio_bl_on: gpio-bl-on-grp {
imx7-colibri.dtsi 7 bl: backlight { label
650 pinctrl_gpio_bl_on: gpio-bl-on {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/acr/
nouveau_nvkm_subdev_acr_lsfw.c 195 const struct firmware *bl = NULL, *inst = NULL, *data = NULL; local in function:nvkm_acr_lsfw_load_bl_inst_data_sig
204 ret = nvkm_firmware_load_name(subdev, path, "bl", ver, &bl);
208 hdr = nvfw_bin_hdr(subdev, bl->data);
209 desc = nvfw_bl_desc(subdev, bl->data + hdr->header_offset);
210 bldata = (void *)(bl->data + hdr->data_offset);
258 nvkm_firmware_put(bl);
  /src/tests/lib/libm/
t_round.c 64 long double al = VALL, bl, cl; local in function:ATF_TC_BODY
68 bl = roundl(al);
72 ATF_CHECK(fabsl(bl) < SMALL_NUM);
  /src/common/dist/zlib/contrib/iostream/
zfstream.cpp 192 int bl = blen(); local in function:gzfilebuf::overflow
193 setp( base(), base() + bl);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_backlight.c 57 struct nouveau_backlight *bl)
66 bl->id = nb;
230 struct nouveau_backlight *bl; local in function:nouveau_backlight_init
275 bl = kzalloc(sizeof(*bl), GFP_KERNEL);
276 if (!bl)
279 if (!nouveau_get_backlight_name(backlight_name, bl)) {
284 bl->dev = backlight_device_register(backlight_name, connector->kdev,
286 if (IS_ERR(bl->dev)) {
287 if (bl->id >= 0
308 struct nouveau_backlight *bl = nv_conn->backlight; local in function:nouveau_backlight_fini
    [all...]
  /src/sys/arch/sgimips/dev/
zs_ms.c 278 int bl, bm, br; local in function:zsms_wsmouse_input
283 bl = (btns & ZSMS_SYNC_BTN_L) == 0;
288 btns = (bl ? (1 << 0) : 0) | (bm ? (1 << 1) : 0) | (br ? (1 << 2) : 0);
  /src/sys/kern/
subr_blist.c 186 blist_t bl; local in function:blist_create
202 bl = kmem_zalloc(sizeof(struct blist), KM_SLEEP);
204 bl->bl_blocks = blocks;
205 bl->bl_radix = radix;
206 bl->bl_skip = skip;
207 bl->bl_rootblks = 1 +
208 blst_radix_init(NULL, bl->bl_radix, bl->bl_skip, blocks);
209 bl->bl_root = kmem_alloc(sizeof(blmeta_t) * bl->bl_rootblks, KM_SLEEP)
1046 blist_t bl; local in function:main
    [all...]
  /src/sys/arch/ews4800mips/dev/
ewsms.c 323 bool bl, bm, br; local in function:ewsms_wsmouse_input
328 bl = (btns & EWSMS_SYNC_BTN_R) == 0;
332 bl = (btns & EWSMS_SYNC_BTN_L) == 0;
337 btns = (bl ? (1 << 0) : 0) | (bm ? (1 << 1) : 0) | (br ? (1 << 2) : 0);
  /src/usr.bin/rump_dhcpclient/
dhcp.c 219 int bl = 0; local in function:get_option
238 bl += ol;
268 if (valid_length(opt, bl, type) == -1) {
273 *len = bl;
  /src/sys/arch/atari/dev/
ite_cc.c 579 u_char bl, tmp, ul; local in function:putc8
604 bl = (mode & ATTR_BOLD) ? 1 : 0;
609 if (bl)
  /src/sbin/bioctl/
bioctl.c 98 static struct bio_locate bl; variable in typeref:struct:bio_locate
172 bl.bl_name = dvname;
173 if (ioctl(fd, BIOCLOCATE, &bl) == -1)
175 bl.bl_name);
244 bv->bv_cookie = bl.bl_cookie;
350 bd.bd_cookie = bl.bl_cookie;
454 bi.bi_cookie = bl.bl_cookie;
536 ba.ba_cookie = bl.bl_cookie;
679 bs->bs_cookie = bl.bl_cookie;
727 bc.bc_cookie = bd.bd_cookie = bi.bi_cookie = bl.bl_cookie
    [all...]
  /src/sys/arch/evbmips/loongson/dev/
stvii.c 240 int bl, bh, ret; local in function:stvii_battery_level
242 bl = stvii_readreg(sc, ST7_BATTERY_L);
244 ret = (bl & 3) | (bh << 2);
254 int bl; local in function:stvii_worker
303 bl = stvii_battery_level(sc);
304 sc->sc_bat_level = bl;
305 if (charging && (bl > BAT_FULL)) {
308 } else if (!charging && (bl < BAT_LOW)) {
  /src/sys/arch/powerpc/oea/
oea_machdep.c 837 register_t bl = (oeacpufeat & OEACPU_XBSEN local in function:oea_batinit
840 psize_t size = BAT_BL_TO_SIZE(bl);
847 bl = (bl >> 1) & (BAT_XBL|BAT_BL);
853 KASSERT(bl >= BAT_BL_8M);
856 register_t batu = BATU(paddr, bl, BAT_Vs);

Completed in 22 milliseconds

1 2