/src/sys/external/bsd/drm2/dist/include/drm/ |
i915_pciids.h | 40 #define INTEL_VGA_DEVICE(id, info) { \ 44 (unsigned long) info } 46 #define INTEL_QUANTA_VGA_DEVICE(info) { \ 50 (unsigned long) info } 52 #define INTEL_I810_IDS(info) \ 53 INTEL_VGA_DEVICE(0x7121, info), /* I810 */ \ 54 INTEL_VGA_DEVICE(0x7123, info), /* I810_DC100 */ \ 55 INTEL_VGA_DEVICE(0x7125, info) /* I810_E */ 57 #define INTEL_I815_IDS(info) \ 58 INTEL_VGA_DEVICE(0x1132, info) /* I815* [all...] |
drm_fourcc.h | 149 * drm_format_info_is_yuv_packed - check that the format info matches a YUV 151 * @info: format info 154 * A boolean indicating whether the format info matches a packed YUV format. 157 drm_format_info_is_yuv_packed(const struct drm_format_info *info) 159 return info->is_yuv && info->num_planes == 1; 163 * drm_format_info_is_yuv_semiplanar - check that the format info matches a YUV 165 * @info: format info [all...] |
/src/sys/arch/hpcmips/stand/pbsdboot/ |
systeminfo.c | 44 SYSTEM_INFO info; local in function:set_system_info 48 GetSystemInfo(&info); 51 vr41xx_init(&info); 54 tx39xx_init(&info); 56 dump_archinfo(&info); 60 dump_archinfo(&info); 65 switch (info.wProcessorArchitecture) { 67 dump_archinfo(&info); 71 switch (info.wProcessorLevel) { 73 dump_archinfo(&info); [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/top/ |
nouveau_nvkm_subdev_top_base.c | 34 struct nvkm_top_device *info = kmalloc(sizeof(*info), GFP_KERNEL); local in function:nvkm_top_device_new 35 if (info) { 36 info->index = NVKM_SUBDEV_NR; 37 info->addr = 0; 38 info->fault = -1; 39 info->engine = -1; 40 info->runlist = -1; 41 info->reset = -1; 42 info->intr = -1 52 struct nvkm_top_device *info; local in function:nvkm_top_addr 68 struct nvkm_top_device *info; local in function:nvkm_top_reset 84 struct nvkm_top_device *info; local in function:nvkm_top_intr_mask 100 struct nvkm_top_device *info; local in function:nvkm_top_intr 123 struct nvkm_top_device *info; local in function:nvkm_top_fault_id 137 struct nvkm_top_device *info; local in function:nvkm_top_fault 151 struct nvkm_top_device *info; local in function:nvkm_top_engine 176 struct nvkm_top_device *info, *temp; local in function:nvkm_top_dtor [all...] |
/src/usr.bin/m4/lib/ |
ohash_init.c | 23 ohash_init(struct ohash *h, unsigned int size, struct ohash_info *info) 32 /* Copy info so that caller may free it. */ 33 h->info.key_offset = info->key_offset; 34 h->info.halloc = info->halloc; 35 h->info.hfree = info->hfree; 36 h->info.alloc = info->alloc [all...] |
/src/lib/libc/sys/ |
sigqueue.c | 50 siginfo_t info; local in function:sigqueue 52 (void)memset(&info, 0, sizeof(info)); 54 info.si_signo = signo; 55 info.si_code = SI_QUEUE; 56 info.si_pid = getpid(); 57 info.si_uid = geteuid(); 58 info.si_value = value; 60 return sigqueueinfo(pid, &info);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/ |
nouveau_nvkm_subdev_clk_pllgt215.c | 35 gt215_pll_calc(struct nvkm_subdev *subdev, struct nvbios_pll *info, 41 *P = info->vco1.max_freq / freq; 42 if (*P > info->max_p) 43 *P = info->max_p; 44 if (*P < info->min_p) 45 *P = info->min_p; 47 lM = (info->refclk + info->vco1.max_inputfreq) / info->vco1.max_inputfreq; 48 lM = max(lM, (int)info->vco1.min_m) [all...] |
/src/lib/libm/softfloat/ |
feraiseexcept.c | 56 siginfo_t info; local in function:__weak_alias 57 memset(&info, 0, sizeof info); 58 info.si_signo = SIGFPE; 59 info.si_pid = getpid(); 60 info.si_uid = geteuid(); 62 info.si_code = FPE_FLTUND; 64 info.si_code = FPE_FLTOVF; 66 info.si_code = FPE_FLTDIV; 68 info.si_code = FPE_FLTINV [all...] |
/src/common/lib/libc/arch/arm/gen/ |
__aeabi_idiv0.c | 52 siginfo_t info; 54 memset(&info, 0, sizeof info); 55 info.si_signo = SIGFPE; 56 info.si_pid = getpid(); 57 info.si_uid = geteuid(); 58 info.si_code = FPE_INTDIV; 59 sigqueueinfo(getpid(), &info);
|
__aeabi_ldiv0.c | 52 siginfo_t info; 54 memset(&info, 0, sizeof info); 55 info.si_signo = SIGFPE; 56 info.si_pid = getpid(); 57 info.si_uid = geteuid(); 58 info.si_code = FPE_INTDIV; 59 sigqueueinfo(getpid(), &info);
|
/src/usr.bin/audio/ctl/ |
audioctl.h | 29 extern audio_info_t info;
|
/src/sys/dev/raidframe/ |
rf_decluster.c | 78 RF_DeclusteredConfigInfo_t *info; local in function:rf_ConfigureDeclustered 91 info = RF_MallocAndAdd(sizeof(*info), raidPtr->cleanupList); 92 if (info == NULL) 94 layoutPtr->layoutSpecificInfo = (void *) info; 95 info->SpareTable = NULL; 99 (void)memcpy(info->sparemap_fname, cfgBuf, RF_SPAREMAP_NAME_LEN); 127 info->BlocksPerTable = b; 128 info->Lambda = lambda; 129 info->NumParityReps = info->groupSize = k 293 RF_DeclusteredConfigInfo_t *info; local in function:rf_ShutdownDeclusteredDS 322 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInf local in function:rf_MapSectorDeclustered 380 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInf local in function:rf_MapParityDeclustered 438 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInf local in function:rf_IdentifyStripeDeclustered 479 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecif local in function:rf_GetDefaultHeadSepLimitDeclustered 516 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInf local in function:rf_decluster_adjust_params 543 RF_DeclusteredConfigInfo_t *info; local in function:rf_MapSIDToPSIDDeclustered 610 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecif local in function:rf_InstallSpareTable 637 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecif local in function:rf_SetSpareTable 687 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInf local in function:rf_FreeSpareTable [all...] |
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_drawable.c | 39 struct drm_drawable_info info; member in struct:bsd_drm_drawable_info 66 return &result->info; 72 struct bsd_drm_drawable_info *info; local in function:drm_adddraw 74 info = malloc(sizeof(struct bsd_drm_drawable_info), DRM_MEM_DRAWABLE, 76 if (info == NULL) 80 info->handle = alloc_unr(dev->drw_unrhdr); 84 info->handle = ++dev->drw_no; 86 RB_INSERT(drawable_tree, &dev->drw_head, info); 87 draw->handle = info->handle; 98 struct drm_drawable_info *info; local in function:drm_rmdraw 122 struct drm_drawable_info *info; local in function:drm_update_draw 164 struct bsd_drm_drawable_info *info, *next; local in function:drm_drawable_free_all [all...] |
/src/distrib/syspkg/sets/man/man-amd-info/ |
Makefile | 3 PKGBASE=man-amd-info
|
/src/distrib/syspkg/sets/man/man-c-info/ |
Makefile | 3 PKGBASE=man-c-info
|
/src/distrib/syspkg/sets/man/man-computil-info/ |
Makefile | 3 PKGBASE=man-computil-info
|
/src/distrib/syspkg/sets/man/man-cvs-info/ |
Makefile | 3 PKGBASE=man-cvs-info
|
/src/distrib/syspkg/sets/man/man-cxx-info/ |
Makefile | 3 PKGBASE=man-cxx-info
|
/src/distrib/syspkg/sets/man/man-debug-info/ |
Makefile | 3 PKGBASE=man-debug-info
|
/src/distrib/syspkg/sets/man/man-fortran-info/ |
Makefile | 3 PKGBASE=man-fortran-info
|
/src/distrib/syspkg/sets/man/man-gnats-info/ |
Makefile | 3 PKGBASE=man-gnats-info
|
/src/distrib/syspkg/sets/man/man-info-share/ |
Makefile | 3 PKGBASE=man-info-share
|
/src/distrib/syspkg/sets/man/man-krb5-info/ |
Makefile | 3 PKGBASE=man-krb5-info
|
/src/distrib/syspkg/sets/man/man-sys-info/ |
Makefile | 3 PKGBASE=man-sys-info
|
/src/distrib/syspkg/sets/man/man-texinfo-info/ |
Makefile | 3 PKGBASE=man-texinfo-info
|