/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
aspeed-bmc-opp-witherspoon.dts | 195 io-channels = <&bmp 1>; 354 bmp: bmp280@77 { label
|
aspeed-bmc-opp-tacoma.dts | 104 io-channels = <&bmp 1>; 474 bmp: bmp280@77 { label
|
/src/sys/arch/hpc/stand/hpcboot/menu/ |
tabwindow.cpp | 72 HBITMAP bmp = LoadBitmap(_app._instance, name); local in function:TabWindowBase::_load_bitmap 73 ImageList_Add(img, bmp, 0); 74 DeleteObject(bmp);
|
/src/sys/fs/sysvbfs/ |
sysvbfs.h | 48 struct sysvbfs_mount *bmp; member in struct:sysvbfs_node
|
sysvbfs_vfsops.c | 73 struct sysvbfs_mount *bmp = NULL; local in function:sysvbfs_mount 86 if ((bmp = (struct sysvbfs_mount *)mp->mnt_data) == NULL) 121 bmp = (struct sysvbfs_mount *)mp->mnt_data; 122 if (devvp != bmp->devvp) 171 struct sysvbfs_mount *bmp; local in function:sysvbfs_mountfs 186 bmp = malloc(sizeof(*bmp), M_SYSVBFS_VFS, M_WAITOK | M_ZERO); 187 bmp->devvp = devvp; 188 bmp->mountp = mp; 189 if ((error = sysvbfs_bfs_init(&bmp->bfs, devvp)) != 0) 221 struct sysvbfs_mount *bmp = (void *)mp->mnt_data; local in function:sysvbfs_unmount 260 struct sysvbfs_mount *bmp = mp->mnt_data; local in function:sysvbfs_statvfs 320 struct sysvbfs_mount *bmp; local in function:sysvbfs_loadvnode [all...] |
sysvbfs_vnops.c | 75 struct bfs *bfs = bnode->bmp->bfs; /* my filesystem */ 140 struct sysvbfs_mount *bmp = bnode->bmp; local in function:sysvbfs_create 141 struct bfs *bfs = bmp->bfs; 142 struct mount *mp = bmp->mountp; 231 bfs_inode_set_attr(bnode->bmp->bfs, bnode->inode, &attr); 296 struct sysvbfs_mount *bmp = bnode->bmp; local in function:sysvbfs_getattr 306 vap->va_fsid = bmp->devvp->v_rdev; 338 struct bfs *bfs = bnode->bmp->bfs 520 struct sysvbfs_mount *bmp = bnode->bmp; local in function:sysvbfs_remove 734 struct sysvbfs_mount *bmp = bnode->bmp; local in function:sysvbfs_bmap 766 struct sysvbfs_mount *bmp = bnode->bmp; local in function:sysvbfs_strategy [all...] |
/src/usr.sbin/acpitools/aml/ |
aml_memman.c | 76 struct memman_blockman *bmp; local in function:manage_block 80 bmp = &memman->blockman[id]; 105 alloc_size += roundup(bmp->size * entries, ROUNDUP_UNIT); 108 LIST_INSERT_HEAD(&bmp->block_list, memblock, links); 111 memnodes[i].node = ((char *)realblock + (i * (bmp->size))); 113 LIST_INSERT_HEAD(&bmp->free_node_list, &memnodes[i], links); 115 bmp->available = entries; 124 struct memman_blockman *bmp; local in function:blockman_init 126 bmp = &memman->blockman[id]; 127 bmp->initialized = 1 141 struct memman_blockman *bmp; local in function:memman_alloc 282 struct memman_blockman *bmp; local in function:memman_guess_memid 307 struct memman_blockman *bmp; local in function:memman_free 389 struct memman_blockman *bmp; local in function:memman_freeall [all...] |
/src/sys/compat/linux32/common/ |
linux32_ipccall.c | 433 linux32_to_bsd_msqid_ds(struct linux32_msqid_ds *lmp, struct msqid_ds *bmp) 436 memset(bmp, 0, sizeof(*bmp)); 437 linux32_to_bsd_ipc_perm(&lmp->l_msg_perm, &bmp->msg_perm); 438 bmp->_msg_cbytes = lmp->l_msg_cbytes; 439 bmp->msg_qnum = lmp->l_msg_qnum; 440 bmp->msg_qbytes = lmp->l_msg_qbytes; 441 bmp->msg_lspid = lmp->l_msg_lspid; 442 bmp->msg_lrpid = lmp->l_msg_lrpid; 443 bmp->msg_stime = lmp->l_msg_stime 498 struct msqid_ds bm, *bmp = NULL; local in function:linux32_msgctl [all...] |
/src/sys/compat/linux/common/ |
linux_ipc.c | 313 linux_to_bsd_msqid_ds(struct linux_msqid_ds *lmp, struct msqid_ds *bmp) 316 memset(bmp, 0, sizeof(*bmp)); 317 linux_to_bsd_ipc_perm(&lmp->l_msg_perm, &bmp->msg_perm); 318 bmp->_msg_cbytes = lmp->l_msg_cbytes; 319 bmp->msg_qnum = lmp->l_msg_qnum; 320 bmp->msg_qbytes = lmp->l_msg_qbytes; 321 bmp->msg_lspid = lmp->l_msg_lspid; 322 bmp->msg_lrpid = lmp->l_msg_lrpid; 323 bmp->msg_stime = lmp->l_msg_stime 385 struct msqid_ds bm, *bmp = NULL; local in function:linux_sys_msgctl [all...] |
/src/lib/libc/regex/ |
regex2.h | 122 unsigned char bmp[NC_MAX / 8]; member in struct:__anonbc61ebe90208 139 return (((cs->bmp[(unsigned)ch >> 3] & (1 << (ch & 7))) != 0) ^ 163 return (((cs->bmp[(unsigned)ch >> 3] & (1 << (ch & 7))) != 0) ^
|
/src/sys/fs/ntfs/ |
ntfs_subr.c | 1028 u_char *bmp = NULL; /* Bitmap */ local in function:ntfs_ntreaddir 1068 bmp = (u_char *) malloc(bmvap->va_datalen, M_TEMP, M_WAITOK); 1070 bmvap->va_datalen, bmp, NULL); 1086 bmp = NULL; 1150 if (bmp[blnum >> 3] & (1 << (blnum & 3))) 1174 if (bmp) 1175 free(bmp, M_TEMP);
|
/src/sys/arch/sandpoint/stand/altboot/ |
main.c | 471 struct boot_module *bm, *bmp; local in function:module_add 486 if ((bmp = boot_modules) == NULL) 489 while (bmp->bm_next != NULL) 490 bmp = bmp->bm_next; 491 bmp->bm_next = bm;
|
/src/sys/arch/i386/stand/lib/ |
exec.c | 234 boot_module_t *bm, *bmp; local in function:module_add_common 259 for (bmp = boot_modules; bmp->bm_next; 260 bmp = bmp->bm_next) 262 bmp->bm_next = bm;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/ |
nouveau_bios.c | 41 #define FEATURE_MOBILE 0x10 /* also FEATURE_QUADRO for BMP */ 268 * BMP version (0xa) LVDS table has a simple header of version and 329 * PEXTDEV_BOOT_0[20:16], but on BMP cards when bit 2 of the 368 * BMP version 0x5.0x11 BIOSen have version 1 like tables, but no 372 * (combining with a BMP version check would be better), as the 507 * Following the header, the BMP (ver 0xa) table has several records, 793 * offset + 5 (8 bits): BIOS feature byte (same as for BMP?) 810 * bit 4 seems to indicate a mobile bios (doesn't suffer from BMP's 811 * Quadro identity crisis), other bits possibly as for BMP feature byte 1047 * Parses the BMP structure for useful things, but does not act on the 1090 uint8_t *bmp = &bios->data[offset], bmp_version_major, bmp_version_minor; local in function:parse_bmp_structure [all...] |