/src/libexec/talkd/ |
print.c | 43 #include <sys/types.h> 51 static const char *types[] = { variable in typeref:typename:const char * [] 57 #define NTYPES (sizeof (types) / sizeof (types[0])) 82 tp = types[mp->type]; 98 tp = types[rp->type];
|
/src/usr.bin/mklocale/ |
ldef.h | 44 u_int32_t *types; member in struct:rune_list
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ |
notify.h | 21 u32 types; member in struct:nvkm_notify
|
/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
i915_vma.c | 504 enum i915_ggtt_view_type types[] = { enum in function:igt_vma_rotate_remap 520 for (t = types; *t; t++) { 874 enum i915_ggtt_view_type types[] = { enum in function:igt_vma_remapped_gtt 889 for (t = types; *t; t++) {
|
/src/usr.bin/mkcsmapper/ |
yacc.y | 48 #include <sys/types.h> 122 %type <i_value> dst types oob_mode_sel zone 140 type : R_TYPE types { set_type($2); } 141 types : R_ROWCOL { $$ = R_ROWCOL; } label
|
/src/sys/arch/pmax/tc/ |
dtkbd.c | 160 static u_int types[20]; local in function:dtkbd_cngetc 172 cnt = dtkbd_process_msg(&msg, types, vals); 176 *type = types[i++]; 212 u_int types[20]; local in function:dtkbd_handler 220 cnt = dtkbd_process_msg(msg, types, vals); 222 wskbd_input(sc->sc_wskbddev, types[i], vals[i]); 226 dtkbd_process_msg(struct dt_msg *msg, u_int *types, int *vals) 246 types[0] = WSCONS_EVENT_ALL_KEYS_UP; 262 types[count] = WSCONS_EVENT_KEY_DOWN; 276 types[count] = WSCONS_EVENT_KEY_UP [all...] |
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_sysctl.c | 275 const char *types[] = { "FB", "REG", "SHM", "AGP", "SG", "GEM", "TTM" }; variable in typeref:typename:const char * [] 308 type = types[map->type];
|
/src/usr.bin/who/ |
who.c | 48 #include <sys/types.h> 286 const char *types = NULL; local in function:print 294 types = ut_type_names[i].name; 337 (void)printf(" type=%s ", types);
|
/src/usr.bin/xlint/lint1/ |
README.md | 9 * The parser in `cgram.y` creates types and expressions from the tokens. 12 * The checks for types and expressions are in `tree.c`. 24 other scalar types, like in C#, Go, Java. 59 other scalar types, reusing the existing messages 107 and 211, while also 62 types, the option `-aa` extends this check to small integer types as well, 78 * It does not store detailed information about complex data types, therefore 81 # Fundamental types 90 The basic types are `int`, `_Bool`, `unsigned long`, `pointer` and so on, 93 Concrete types like `int` or `const char *` are created by `gettyp(INT)` [all...] |
/src/lib/libc/citrus/modules/ |
citrus_mapper_std.c | 346 } types[] = { variable in typeref:typename:const struct __anone724e7660108[] 349 #define NUM_OF_TYPES ((int)(sizeof(types)/sizeof(types[0]))) 401 if (_bcs_strcasecmp(type, types[id].t_name) == 0) 408 ret = (*types[id].t_init)(ms);
|
/src/sys/arch/ia64/stand/ia64/efi/ |
main.c | 162 * want to wait until the user types "quit". The timer may have 206 static char *types[] = { local in function:command_memmap 243 types[p->Type],
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_irq.c | 113 * Disable all types of interrupts from all sources. 406 atomic_t *types; local in function:amdgpu_irq_add_id 408 types = kcalloc(source->num_types, sizeof(atomic_t), 410 if (!types) 413 source->enabled_types = types; 512 * Updates state of all types of interrupts on all sources on resume after
|
/src/sys/external/bsd/ipf/netinet/ |
ip_log.c | 32 #include <sys/types.h> 384 int types[2], mlen; local in function:ipf_log_pkt 515 types[0] = 0; 523 types[1] = 1; 527 types[1] = 0; 532 types[1] = 1; 534 return ipf_log_items(softc, IPL_LOGIPF, fin, ptrs, sizes, types, 2); 546 /* types(I) - type of data pointed to by items pointers */ 547 /* cnt(I) - number of elements in arrays items/itemsz/types */ 555 void **items, size_t *itemsz, int *types, int cnt [all...] |
ip_state.c | 17 #include <sys/types.h> 3073 * to handle the specific types where that is the case. 4303 int types[1]; local in function:ipf_state_log 4345 types[0] = 0; 4347 (void) ipf_log_items(softc, IPL_LOGSTATE, NULL, items, sizes, types, 1);
|
/src/usr.sbin/btattach/ |
btattach.c | 57 static const struct devtype types[] = { variable in typeref:typename:const struct devtype[] 239 if (i == __arraycount(types)) 242 type = &types[i]; 332 "Known types:\n" 335 for (i = 0; i < __arraycount(types); i++) 336 fprintf(stderr, "\t%-12s%s\n", types[i].name, types[i].descr);
|
/src/sys/dev/acpi/ |
apei_einj.c | 39 * carefully with error injection is fine -- after all, many types of 49 #include <sys/types.h> 304 * Query the available types of error to inject and print it to 307 * https://uefi.org/specs/ACPI/6.5/18_Platform_Error_Interfaces.html#error-types 309 uint64_t types = apei_einj_act(sc, ACPI_EINJ_GET_ERROR_TYPE, 0); local in function:apei_einj_attach 334 "\0", types, 36); 341 * Create a sysctl knob to query the available types of error 348 CTLTYPE_QUAD, "types", 349 SYSCTL_DESCR("Types of errors that can be injected"), 354 " sysctl hw.acpi.apei.einj.types: %d\n" 847 uint64_t types; local in function:apei_einj_types_sysctl [all...] |
/src/share/examples/puffs/pgfs/ |
pgfs_puffs.c | 130 static const Oid types[] = { local in function:pgfs_node_readdir 213 error = FETCHNEXT(&s, types, &nametofree, &cookie, &nextcookie, 329 static const Oid types[] = { INT8OID, }; local in function:pgfs_node_lookup 342 error = FETCHNEXT(&s, types, &child_fileid); 1171 static const Oid types[] = { INT8OID, }; local in function:pgfs_fs_statvfs 1203 error = FETCHNEXT(&s, types, &nfiles); 1213 error = FETCHNEXT(&s, types, &bytes); 1223 error = FETCHNEXT(&s, types, &lo_bytes);
|
pgfs_subs.c | 368 static const Oid types[] = { OIDOID, }; local in function:lo_lookup_by_fileid 378 error = FETCHNEXT(&s, types, idp); 466 static const Oid types[] = { local in function:getattr 499 error = FETCHNEXT(&s, types, &type, &mode, &uid, &gid, &nlink, 507 static const Oid types[] = { local in function:getattr 524 error = FETCHNEXT(&s, types, &type, &mode, &uid, &gid, &nlink, 640 static const Oid types[] = { INT8OID, }; local in function:lookupp 651 error = FETCHNEXT(&s, types, parent); 911 static const Oid types[] = { INT8OID, }; local in function:check_path 913 error = FETCHNEXT(&s, types, &parent_fileid) [all...] |
pgfs_db.c | 521 vfetchnext(struct fetchstatus *s, unsigned int n, const Oid *types, va_list ap) 561 assert((types[i] != BYTEA) == (PQfformat(s->res, i) == 0)); 562 DPRINTF("[%u] PQftype = %d, types = %d, value = '%s'\n", 563 i, PQftype(s->res, i), types[i], 567 assert(PQftype(s->res, i) == types[i]); 569 switch(types[i]) { 594 types[i]); 606 fetchnext(struct fetchstatus *s, unsigned int n, const Oid *types, ...) 611 va_start(ap, types); 612 error = vfetchnext(s, n, types, ap) 917 static const Oid types[] = { INT8OID, }; local in function:pgfs_connectdb [all...] |
/src/libexec/ftpd/ |
conf.c | 37 #include <sys/types.h> 86 REASSIGN(conv->types, NULL); 295 char *suffix, *types, *disable, *convcmd; local in function:parse_conf 303 NEXTWORD(p, types); 309 if (none || EMPTYSTR(types) || 311 types = NULL; 315 types = ftpd_strdup(types); 342 REASSIGN(conv->types, types); [all...] |
extern.h | 237 char *types; /* Valid file types */ member in struct:ftpconv
|
/src/lib/libc/regex/ |
regex2.h | 123 wctype_t *types; member in struct:__anonbc61ebe90208 153 if (iswctype(ch, cs->types[i]))
|
/src/sys/arch/hpcmips/stand/pbsdboot/ |
main.c | 407 } types[] = { local in function:reverse_fb_type 416 for (i = 0; i < ARRAYSIZEOF(types); i++) { 417 if (types[i].type0 == type) { 418 return (types[i].type1); 420 if (types[i].type1 == type) { 421 return (types[i].type0);
|
/src/bin/sh/ |
parser.c | 2219 static const char types[] = "}-+?="; /* see parser.h VSXYZ defs */ local in function:readtoken1 2338 p = strchr(types, c); 2361 subtype = p - types + VSNORMAL;
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
gvt.h | 324 struct intel_vgpu_type *types; member in struct:intel_gvt
|