Searched refs:info (Results 1 - 25 of 1015) sorted by relevance

1234567891011>>

/src/sys/external/bsd/drm2/dist/include/drm/
H A Di915_pciids.h40 #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) /* I81
[all...]
H A Ddrm_fourcc.h149 * 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) argument
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
171 drm_format_info_is_yuv_semiplanar(const struct drm_format_info * info) argument
185 drm_format_info_is_yuv_planar(const struct drm_format_info * info) argument
200 drm_format_info_is_yuv_sampling_410(const struct drm_format_info * info) argument
215 drm_format_info_is_yuv_sampling_411(const struct drm_format_info * info) argument
230 drm_format_info_is_yuv_sampling_420(const struct drm_format_info * info) argument
245 drm_format_info_is_yuv_sampling_422(const struct drm_format_info * info) argument
260 drm_format_info_is_yuv_sampling_444(const struct drm_format_info * info) argument
275 drm_format_info_plane_width(const struct drm_format_info * info,int width,int plane) argument
297 drm_format_info_plane_height(const struct drm_format_info * info,int height,int plane) argument
[all...]
/src/sys/arch/hpcmips/stand/pbsdboot/
H A Dsysteminfo.c44 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);
123 dump_archinfo(SYSTEM_INFO * info) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/top/
H A Dnouveau_nvkm_subdev_top_base.c34 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
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/
H A Dohash_init.c23 ohash_init(struct ohash *h, unsigned int size, struct ohash_info *info) argument
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
[all...]
/src/lib/libc/sys/
H A Dsigqueue.c50 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/
H A Dnouveau_nvkm_subdev_clk_pllgt215.c35 gt215_pll_calc(struct nvkm_subdev *subdev, struct nvbios_pll *info, argument
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
[all...]
/src/lib/libm/softfloat/
H A Dferaiseexcept.c56 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
[all...]
/src/common/lib/libc/arch/arm/gen/
H A D__aeabi_idiv0.c52 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);
H A D__aeabi_ldiv0.c52 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/
H A Daudioctl.h29 extern audio_info_t info;
/src/sys/dev/raidframe/
H A Drf_decluster.c78 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
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
558 rf_remap_to_spare_space(RF_RaidLayout_t * layoutPtr,RF_DeclusteredConfigInfo_t * info,RF_StripeNum_t FullTableID,RF_StripeNum_t TableID,RF_SectorNum_t BlockID,RF_StripeNum_t base_suid,RF_StripeNum_t SpareRegion,RF_RowCol_t * outCol,RF_StripeNum_t * outSU) argument
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/
H A Ddrm_drawable.c39 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/
H A DMakefile3 PKGBASE=man-amd-info
/src/distrib/syspkg/sets/man/man-c-info/
H A DMakefile3 PKGBASE=man-c-info
/src/distrib/syspkg/sets/man/man-computil-info/
H A DMakefile3 PKGBASE=man-computil-info
/src/distrib/syspkg/sets/man/man-cvs-info/
H A DMakefile3 PKGBASE=man-cvs-info
/src/distrib/syspkg/sets/man/man-cxx-info/
H A DMakefile3 PKGBASE=man-cxx-info
/src/distrib/syspkg/sets/man/man-debug-info/
H A DMakefile3 PKGBASE=man-debug-info
/src/distrib/syspkg/sets/man/man-fortran-info/
H A DMakefile3 PKGBASE=man-fortran-info
/src/distrib/syspkg/sets/man/man-gnats-info/
H A DMakefile3 PKGBASE=man-gnats-info
/src/distrib/syspkg/sets/man/man-info-share/
H A DMakefile3 PKGBASE=man-info-share
/src/distrib/syspkg/sets/man/man-krb5-info/
H A DMakefile3 PKGBASE=man-krb5-info
/src/distrib/syspkg/sets/man/man-sys-info/
H A DMakefile3 PKGBASE=man-sys-info
/src/distrib/syspkg/sets/man/man-texinfo-info/
H A DMakefile3 PKGBASE=man-texinfo-info

Completed in 17 milliseconds

1234567891011>>