Searched refs:names (Results 1 - 25 of 292) sorted by relevance

1234567891011>>

/freebsd-12-stable/crypto/openssl/include/crypto/
H A D__DECC_INCLUDE_EPILOGUE.H16 #pragma names restore
H A D__DECC_INCLUDE_PROLOGUE.H16 #pragma names save
20 #pragma names as_is,shortened
/freebsd-12-stable/crypto/openssl/include/internal/
H A D__DECC_INCLUDE_EPILOGUE.H16 #pragma names restore
H A D__DECC_INCLUDE_PROLOGUE.H16 #pragma names save
20 #pragma names as_is,shortened
/freebsd-12-stable/crypto/openssl/include/openssl/
H A D__DECC_INCLUDE_PROLOGUE.H21 # pragma names save
25 # pragma names as_is,shortened
H A D__DECC_INCLUDE_EPILOGUE.H21 # pragma names restore
/freebsd-12-stable/usr.bin/getconf/
H A DMakefile11 confstr.names limits.names pathconf.names sysconf.names \
12 conflicting.names unique.names unsigned_limits.names
14 .SUFFIXES: .gperf .names
23 .gperf.names:
27 conflicts: conflicting.names uniqu
[all...]
/freebsd-12-stable/contrib/ncurses/ncurses/base/
H A DMKkeyname.awk46 names = names"\n\t\""$1"\\0\""
61 print "static const char key_names[] = "names";"
/freebsd-12-stable/sys/dev/drm2/
H A Ddrm_gem_names.c43 MALLOC_DEFINE(M_GEM_NAMES, "gem_name", "Hash headers for the gem names");
45 static void drm_gem_names_delete_name(struct drm_gem_names *names,
49 drm_gem_names_init(struct drm_gem_names *names) argument
52 names->unr = new_unrhdr(1, INT_MAX, NULL); /* XXXKIB */
53 names->names_hash = hashinit(1000 /* XXXKIB */, M_GEM_NAMES,
54 &names->hash_mask);
55 mtx_init(&names->lock, "drmnames", NULL, MTX_DEF);
59 drm_gem_names_fini(struct drm_gem_names *names) argument
64 mtx_lock(&names->lock);
65 for (i = 0; i <= names
78 gem_name_hash_index(struct drm_gem_names *names, int name) argument
85 drm_gem_name_ref(struct drm_gem_names *names, uint32_t name, void (*ref)(void *)) argument
122 drm_gem_find_name(struct drm_gem_names *names, void *ptr) argument
133 drm_gem_find_ptr(struct drm_gem_names *names, uint32_t name) argument
151 drm_gem_name_create(struct drm_gem_names *names, void *p, uint32_t *name) argument
175 drm_gem_names_delete_name(struct drm_gem_names *names, struct drm_gem_name *np) argument
186 drm_gem_names_remove(struct drm_gem_names *names, uint32_t name) argument
204 drm_gem_names_foreach(struct drm_gem_names *names, int (*f)(uint32_t, void *, void *), void *arg) argument
[all...]
H A Ddrm_gem_names.h56 void drm_gem_names_init(struct drm_gem_names *names);
57 void drm_gem_names_fini(struct drm_gem_names *names);
58 uint32_t drm_gem_find_name(struct drm_gem_names *names, void *ptr);
59 void *drm_gem_find_ptr(struct drm_gem_names *names, uint32_t name);
60 void *drm_gem_name_ref(struct drm_gem_names *names, uint32_t name,
62 int drm_gem_name_create(struct drm_gem_names *names, void *obj, uint32_t *name);
63 void drm_gem_names_foreach(struct drm_gem_names *names,
65 void *drm_gem_names_remove(struct drm_gem_names *names, uint32_t name);
/freebsd-12-stable/contrib/diff/src/
H A Ddir.c37 size_t nnames; /* Number of names. */
38 char const **names; /* Sorted names of files in dir, followed by 0. */ member in struct:dirdata
39 char *data; /* Allocated storage for file names. */
42 /* Whether file names in directories should be compared with
53 /* Read a directory and get its vector of names. */
62 char const **names; local
71 dirdata->names = 0;
131 /* Create the `names' table from the `data' table. */
132 if (PTRDIFF_MAX / sizeof *names
226 char const **volatile names[2]; local
[all...]
/freebsd-12-stable/usr.bin/users/
H A Dusers.cc13 * 3. Neither the name of the University nor the names of its contributors
51 set<string> names; local
65 names.insert(ut->ut_user);
68 if (!names.empty()) {
69 set<string>::iterator last = names.end();
71 copy(names.begin(), last, ostream_iterator<string>(cout, " "));
/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_by_name.c44 /* A table that maps names to functions. */
46 struct { const char *name; int (*setter)(struct archive *); } names[] = variable in typeref:struct:__anon2078
69 for (i = 0; names[i].name != NULL; i++) {
70 if (strcmp(name, names[i].name) == 0)
71 return ((names[i].setter)(a));
H A Darchive_write_set_format_by_name.c43 /* A table that maps names to functions. */
45 struct { const char *name; int (*setter)(struct archive *); } names[] = variable in typeref:struct:__anon2083
84 for (i = 0; names[i].name != NULL; i++) {
85 if (strcmp(name, names[i].name) == 0)
86 return ((names[i].setter)(a));
H A Darchive_write_set_format_filter_by_ext.c44 /* A table that maps names to functions. */
46 struct { const char *name; int (*format)(struct archive *); int (*filter)(struct archive *); } names[] = variable in typeref:struct:__anon2085
90 for (i = 0; names[i].name != NULL; i++)
92 if (cmpsuff(name, names[i].name) == 0)
106 int format_state = (names[names_index].format)(a);
108 return ((names[names_index].filter)(a));
128 int format_state = (names[names_index].format)(a);
130 return ((names[names_index].filter)(a));
/freebsd-12-stable/lib/libc/gen/
H A Dscandir.c15 * 3. Neither the name of the University nor the names of its contributors
77 struct dirent *d, *p, **names = NULL; local
86 names = (struct dirent **)malloc(arraysz * sizeof(struct dirent *));
87 if (names == NULL)
92 continue; /* just selected names */
111 names2 = reallocarray(names, arraysz,
117 names = names2;
120 names[numitems++] = p;
125 qsort_b(names, numitems, sizeof(struct dirent *), (void*)dcomp);
127 qsort_r(names, numitem
[all...]
H A Dscandir-compat11.c13 * 3. Neither the name of the University nor the names of its contributors
70 struct freebsd11_dirent *d, *p, **names = NULL; local
79 names = (struct freebsd11_dirent **)malloc(
81 if (names == NULL)
86 continue; /* just selected names */
105 names2 = reallocarray(names, arraysz,
111 names = names2;
114 names[numitems++] = p;
118 qsort_r(names, numitems, sizeof(struct freebsd11_dirent *),
120 *namelist = names;
[all...]
/freebsd-12-stable/tools/tools/mtxstat/
H A Dmtxstat.pl47 my @names; # Field names
79 @names = split(' ', $header);
80 if (defined($key) && !grep(/^$key$/, @names)) {
85 my @fields = split(' ', $_, @names);
88 foreach (@names) {
/freebsd-12-stable/contrib/wpa/src/fst/
H A Dfst_ctrl_aux.c44 const char * fst_get_str_name(unsigned index, const char *names[], argument
47 if (index >= names_size || !names[index])
49 return names[index];
/freebsd-12-stable/contrib/netbsd-tests/lib/libc/hash/
H A Dt_hmac.c62 const char *names[] = { local
79 for (size_t t = 0; t < __arraycount(names); t++)
84 printf("%s: keysize = %zu datasize = %zu\n", names[t],
91 tmp2len = hmac(names[t], key, i, data, j, tmp2,
94 "!= %zu", names[t], tmp1len, tmp2len);
105 "keylen=%zu, datalen=%zu", names[t], i, j);
/freebsd-12-stable/release/picobsd/tinyware/vm/
H A Dvm.c42 char names[CNT*16]; local
52 len=sizeof(names);
53 i = sysctlbyname("hw.intrnames", &names, &len, NULL, 0);
57 for( i=0, a = names ; i < CNT && a < names+sizeof(names) ; ) {
59 while (a < names+sizeof(names) && *a)
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/
H A Dgenctype.py25 # Table of ASCII character names
26 names = ('nul', 'soh', 'stx', 'etx', 'eot', 'enq', 'ack', 'bel', variable
60 if len(names[c]) == 1:
61 name = names[c].center(3)
63 name = names[c].ljust(3)
/freebsd-12-stable/lib/libcasper/services/cap_pwd/tests/
H A Dpwd_test.c244 const char *cmds[7], *fields[10], *names[6]; local
258 names[0] = "root";
259 names[1] = "toor";
260 names[2] = "daemon";
261 names[3] = "operator";
262 names[4] = "bin";
263 names[5] = "kmem";
276 * names: root, toor, daemon, operator, bin, kmem
291 CHECK(cap_pwd_limit_users(cappwd, names, 6, NULL, 0) == 0);
303 * names
1192 runtest_users(cap_channel_t *cappwd, const char **names, const uid_t *uids, size_t nusers) argument
1269 const char *names[6]; local
[all...]
/freebsd-12-stable/lib/libcasper/services/cap_grp/tests/
H A Dgrp_test.c232 const char *cmds[7], *fields[4], *names[5]; local
240 names[0] = "wheel";
241 names[1] = "daemon";
242 names[2] = "kmem";
243 names[3] = "sys";
244 names[4] = "operator";
258 * names: wheel, daemon, kmem, sys, operator
273 CHECK(cap_grp_limit_groups(capgrp, names, 5, NULL, 0) == 0);
286 * names:
314 * names
1212 runtest_groups(cap_channel_t *capgrp, const char **names, const gid_t *gids, size_t ngroups) argument
1289 const char *names[5]; local
[all...]
/freebsd-12-stable/contrib/ofed/infiniband-diags/src/
H A Dibstat.c236 static int ports_list(char names[][UMAD_CA_NAME_LEN], int n) argument
243 umad_get_ca_portguids(names[i], guids + found,
277 char names[UMAD_MAX_DEVICES][UMAD_CA_NAME_LEN]; local
306 if ((n = umad_get_cas_names(names, UMAD_MAX_DEVICES)) < 0)
307 IBPANIC("can't list IB device names");
311 if (!strncmp(names[i], argv[0], sizeof names[i]))
316 strncpy(names[0], argv[0], sizeof(names[0])-1);
317 names[
[all...]

Completed in 249 milliseconds

1234567891011>>