Searched refs:info (Results 201 - 225 of 1698) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_memdrv.h58 void vchiq_get_shared_mem_info(VCHIQ_SHARED_MEM_INFO_T *info);
/freebsd-11-stable/sys/rpc/rpcsec_gss/
H A Drpcsec_gss_conf.c120 struct mech_info *info;
124 SLIST_FOREACH(info, &mechs, link) {
125 if (!strcmp(mech, info->name)) {
135 return info->qops;
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_clock.c119 mtk_clock_get_info(device_t dev, int index, struct fdt_clock_info *info) argument
123 if (index < 0 || index > 31 || info == NULL)
127 info->flags = FDT_CIFLAG_RUNNING;
129 info->flags = 0;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.h20 // Render the contents of "info" structure, which represents the contents of
23 // placeholders substituted with the contents of "info". For example,
50 const AddressInfo &info, bool vs_style,
H A Dsanitizer_symbolizer_libbacktrace.h37 bool SymbolizeData(uptr addr, DataInfo *info) override;
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dcr16-dis.c526 print_arg (argument *a, bfd_vma memaddr, struct disassemble_info *info) argument
532 PTR stream = info->stream;
533 fprintf_ftype func = info->fprintf_func;
676 (*info->print_address_func) ((number & ((1 << 24) - 1)), info);
689 print_arguments (ins *currInsn, bfd_vma memaddr, struct disassemble_info *info) argument
699 info->fprintf_func (info->stream, "RA");
710 info->fprintf_func (info
754 get_word_at_PC(bfd_vma memaddr, struct disassemble_info *info) argument
771 get_words_at_PC(bfd_vma memaddr, struct disassemble_info *info) argument
786 print_insn_cr16(bfd_vma memaddr, struct disassemble_info *info) argument
[all...]
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_dma.c116 uint32_t info; /* Transfer Information */ member in struct:bcm_dma_cb
131 /* DMA channel private info */
215 cb->info = INFO_WAIT_RESP;
306 ch->cb->info = INFO_WAIT_RESP;
399 cb->info |= INFO_INT_EN;
422 uint32_t info; local
430 info = sc->sc_dma_ch[ch].cb->info;
431 info &= ~INFO_PERMAP_MASK;
432 info |
472 uint32_t info; local
[all...]
/freebsd-11-stable/lib/libc/locale/
H A Dcollate.c116 collate_info_t *info; local
139 if (sbuf.st_size < (COLLATE_STR_LEN + sizeof (info))) {
157 info = (void *)TMP;
158 TMP += sizeof (*info);
160 if ((info->directive_count < 1) ||
161 (info->directive_count >= COLL_WEIGHTS_MAX) ||
162 ((chains = info->chain_count) < 0)) {
170 (sizeof (collate_large_t) * info->large_count);
171 for (z = 0; z < info->directive_count; z++) {
172 i += sizeof (collate_subst_t) * info
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dalphafbsd-tdep.c91 alphafbsd_init_abi (struct gdbarch_info info,
97 alpha_dwarf2_init_abi (info, gdbarch);
100 alpha_mdebug_init_abi (info, gdbarch);
90 alphafbsd_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch) argument
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dctf.h64 * | header | labels | objects | info | types | table |
212 #define CTF_INFO_KIND(info) (((info) & 0xf800) >> 11)
213 #define CTF_INFO_ISROOT(info) (((info) & 0x0400) >> 10)
214 #define CTF_INFO_VLEN(info) (((info) & CTF_MAX_VLEN))
242 #define CTF_INFO_KIND_V1(info) (((info) & 0xf000) >> 12)
243 #define CTF_INFO_ISROOT_V1(info) (((inf
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_sysctl.c62 struct drm_sysctl_info *info; local
67 info = malloc(sizeof *info, DRM_MEM_DRIVER, M_WAITOK | M_ZERO);
68 if ( !info )
70 dev->sysctl = info;
73 drioid = SYSCTL_ADD_NODE(&info->ctx, SYSCTL_CHILDREN(&sysctl___hw), OID_AUTO, "dri", CTLFLAG_RW, NULL, "DRI Graphics");
87 info->name[0] = '0' + i;
88 info->name[1] = 0;
89 top = SYSCTL_ADD_NODE( &info->ctx, SYSCTL_CHILDREN(drioid), OID_AUTO, info
[all...]
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_macro_gram.y91 if (macro_symbol->info.macroinfo->narg != $4) {
92 printf("Narg == %d", macro_symbol->info.macroinfo->narg);
142 STAILQ_FOREACH(marg, &macro_symbol->info.macroinfo->args, links) {
/freebsd-11-stable/stand/uboot/lib/
H A Dapi_public.h153 } info; member in struct:device_info
154 #define di_stor info.storage
155 #define di_net info.net
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzcp_synctask.c293 zcp_synctask_info_t *info = lua_touserdata(state, lua_upvalueindex(1)); local
300 uint64_t funcspace = (info->blocks_modified << DST_AVG_BLKSHIFT) * 3;
302 zcp_parse_args(state, info->name, info->pargs, info->kwargs);
305 if (info->space_check != ZFS_SPACE_CHECK_NONE) {
307 info->space_check);
317 err = info->func(state, sync, err_details);
351 zcp_synctask_info_t *info = zcp_synctask_funcs[i]; local
352 lua_pushlightuserdata(state, info);
[all...]
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dsyslogio.c38 ** info -- priority level of the syslog messages
47 sm_syslogopen(fp, info, flags, rpool)
49 const void *info;
53 int *priority = (int *)info;
/freebsd-11-stable/sys/pc98/cbus/
H A Dgdc.c617 video_info_t info; local
636 gdc_get_info(&biosadapter[0], biosadapter[0].va_initial_mode, &info);
637 initialize_gdc(T25_G400, info.vi_flags & V_INFO_GRAPHICS);
639 biosadapter[0].va_window = BIOS_PADDRTOVADDR(info.vi_window);
640 biosadapter[0].va_window_size = info.vi_window_size;
641 biosadapter[0].va_window_gran = info.vi_window_gran;
644 if (info.vi_flags & V_INFO_GRAPHICS) {
645 switch (info.vi_depth/info.vi_planes) {
647 biosadapter[0].va_line_width = info
991 gdc_get_info(video_adapter_t *adp, int mode, video_info_t *info) argument
1018 gdc_query_mode(video_adapter_t *adp, video_info_t *info) argument
1067 video_info_t info; local
[all...]
/freebsd-11-stable/tools/tools/net80211/wlantxtime/
H A Dwlantxtime.c58 * info element of MLME */
63 } info[32]; member in struct:ieee80211_rate_table
101 .info = {
114 .info = {
134 .info = {
150 .info = {
166 .info = {
182 .info = {
197 .info = {
238 uint8_t code = rt->info[
[all...]
/freebsd-11-stable/sys/dev/syscons/
H A Dscvidctl.c139 video_info_t info; local
146 if (vidd_get_info(scp->sc->adp, mode, &info))
151 fontwidth = info.vi_cwidth;
153 fontsize = info.vi_cheight;
181 if ((xsize <= 0) || (xsize > info.vi_width))
182 xsize = info.vi_width;
183 if ((ysize <= 0) || (ysize > info.vi_height))
184 ysize = info.vi_height;
250 video_info_t info;
255 if (vidd_get_info(scp->sc->adp, mode, &info))
429 video_info_t *info = arg; local
476 video_info_t info; local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_agpsupport.c53 int drm_agp_info(struct drm_device *dev, struct drm_agp_info *info) argument
62 info->agp_version_major = 1;
63 info->agp_version_minor = 0;
64 info->mode = kern->ai_mode;
65 info->aperture_base = kern->ai_aperture_base;
66 info->aperture_size = kern->ai_aperture_size;
67 info->memory_allowed = kern->ai_memory_allowed;
68 info->memory_used = kern->ai_memory_used;
69 info->id_vendor = kern->ai_devid & 0xffff;
70 info
80 struct drm_agp_info *info = data; local
207 struct agp_memory_info info; local
[all...]
H A Ddrm_sysctl.c62 struct drm_sysctl_info *info; local
67 info = malloc(sizeof *info, DRM_MEM_DRIVER, M_WAITOK | M_ZERO);
68 dev->sysctl = info;
71 drioid = SYSCTL_ADD_NODE(&info->ctx, SYSCTL_CHILDREN(&sysctl___hw), OID_AUTO,
92 info->name[0] = '0' + i;
93 info->name[1] = 0;
94 top = SYSCTL_ADD_NODE(&info->ctx, SYSCTL_CHILDREN(drioid),
95 OID_AUTO, info->name, CTLFLAG_RW, NULL, NULL);
102 oid = SYSCTL_ADD_OID(&info
[all...]
/freebsd-11-stable/contrib/ntp/util/
H A Dtg.c258 audio_info_t info; /* Sun audio structure */ local
330 rval = ioctl(fd, AUDIO_GETINFO, &info);
335 info.play.port = port;
336 info.play.gain = level;
337 info.play.sample_rate = SECOND;
338 info.play.channels = 1;
339 info.play.precision = 8;
340 info.play.encoding = AUDIO_ENCODING_ULAW;
342 info.play.port, info
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dnm.c166 /* Print formats for printing stab info. */
782 struct extended_symbol_info info;
789 info.sinfo = &syminfo;
790 info.ssize = ssize;
792 info.elfinfo = (elf_symbol_type *) sym;
794 info.elfinfo = NULL;
795 format->print_symbol_info (&info, abfd);
852 struct get_relocs_info info;
860 info.secs = secs;
861 info
777 struct extended_symbol_info info; local
847 struct get_relocs_info info; local
1378 print_symbol_info_bsd(struct extended_symbol_info *info, bfd *abfd) argument
1419 print_symbol_info_sysv(struct extended_symbol_info *info, bfd *abfd) argument
1469 print_symbol_info_posix(struct extended_symbol_info *info, bfd *abfd) argument
[all...]
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dfde-glibc.c54 _Unwind_IteratePhdrCallback (struct dl_phdr_info *info, size_t size, void *ptr) argument
65 + sizeof (info->dlpi_phnum))
69 phdr = info->dlpi_phdr;
70 load_base = info->dlpi_addr;
77 for (n = info->dlpi_phnum; --n >= 0; phdr++)
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dvchan.c64 struct vchan_info *info; local
73 info = malloc(sizeof(*info), M_DEVBUF, M_WAITOK | M_ZERO);
74 info->channel = c;
75 info->trigger = PCMTRIG_STOP;
83 info->fmtlist[j++] = fmtlist[i];
86 info->fmtlist[j] = p->format;
88 info->fmtlist[j] = VCHAN_DEFAULT_FORMAT;
89 info->caps.fmtlist = info
111 struct vchan_info *info; local
126 struct vchan_info *info; local
138 struct vchan_info *info; local
188 struct vchan_info *info; local
[all...]
/freebsd-11-stable/sys/sys/
H A Dumtx.h171 } info;
184 k1->info.both.a == k2->info.both.a &&
185 k1->info.both.b == k2->info.both.b);

Completed in 201 milliseconds

1234567891011>>