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

123456789

/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A DMKkeyname.awk47 names = names"\n\t\""$1"\\0\""
62 print "static const char key_names[] = "names";"
/freebsd-9.3-release/usr.bin/getconf/
H A DMakefile8 confstr.names limits.names pathconf.names sysconf.names \
9 conflicting.names unique.names
11 .SUFFIXES: .gperf .names
19 .gperf.names:
23 conflicts: conflicting.names unique.names
[all...]
/freebsd-9.3-release/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-9.3-release/sys/dev/drm2/
H A Ddrm_gem_names.c41 MALLOC_DEFINE(M_GEM_NAMES, "gem_name", "Hash headers for the gem names");
43 static void drm_gem_names_delete_name(struct drm_gem_names *names,
47 drm_gem_names_init(struct drm_gem_names *names) argument
50 names->unr = new_unrhdr(1, INT_MAX, NULL); /* XXXKIB */
51 names->names_hash = hashinit(1000 /* XXXKIB */, M_GEM_NAMES,
52 &names->hash_mask);
53 mtx_init(&names->lock, "drmnames", NULL, MTX_DEF);
57 drm_gem_names_fini(struct drm_gem_names *names) argument
62 mtx_lock(&names->lock);
63 for (i = 0; i <= names
76 gem_name_hash_index(struct drm_gem_names *names, int name) argument
83 drm_gem_name_ref(struct drm_gem_names *names, uint32_t name, void (*ref)(void *)) argument
120 drm_gem_find_name(struct drm_gem_names *names, void *ptr) argument
131 drm_gem_name_create(struct drm_gem_names *names, void *p, uint32_t *name) argument
155 drm_gem_names_delete_name(struct drm_gem_names *names, struct drm_gem_name *np) argument
166 drm_gem_names_remove(struct drm_gem_names *names, uint32_t name) argument
184 drm_gem_names_foreach(struct drm_gem_names *names, int (*f)(uint32_t, void *, void *), void *arg) argument
[all...]
H A Ddrm_gem_names.h54 void drm_gem_names_init(struct drm_gem_names *names);
55 void drm_gem_names_fini(struct drm_gem_names *names);
56 uint32_t drm_gem_find_name(struct drm_gem_names *names, void *ptr);
57 void *drm_gem_name_ref(struct drm_gem_names *names, uint32_t name,
59 int drm_gem_name_create(struct drm_gem_names *names, void *obj, uint32_t *name);
60 void drm_gem_names_foreach(struct drm_gem_names *names,
62 void *drm_gem_names_remove(struct drm_gem_names *names, uint32_t name);
/freebsd-9.3-release/usr.bin/users/
H A Dusers.c13 * 4. Neither the name of the University nor the names of its contributors
61 namebuf *names = NULL; local
83 names = realloc(names, sizeof(*names) * nmax);
84 if (!names) {
89 (void)strlcpy(names[ncnt], ut->ut_user, sizeof(*names));
94 qsort(names, ncnt, sizeof(namebuf), scmp);
95 (void)printf("%s", names[
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/
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:__anon1636
69 for (i = 0; names[i].name != NULL; i++) {
70 if (strcmp(name, names[i].name) == 0)
71 return ((names[i].setter)(a));
/freebsd-9.3-release/contrib/ncurses/misc/
H A Dchkdef.cmd54 * `names' associates a code to a name
58 names. = ''
93 when names.new_code \= '' then
95 if names.new_code \= new_name then
98 say 'Conflict with "'names.new_code'" & "'new_name'" being @'new_code
103 names.new_code = new_name
H A Dcmpdef.cmd59 names. = ''
90 names.number = name
110 if names.number = '' then
113 say 'Conflict old =' names.number ', new =' name 'at @'number
H A Dmakedef.cmd59 * `names' is the stem where symbols are stored sequentially
65 names. = ''
132 when names.last = new_name then
140 names.last = new_name
163 say ' "'names.inx'" @'codes.inx' NONAME'
/freebsd-9.3-release/lib/libc/gen/
H A Dscandir.c13 * 4. Neither the name of the University nor the names of its contributors
67 struct dirent *d, *p, **names = NULL; local
76 names = (struct dirent **)malloc(arraysz * sizeof(struct dirent *));
77 if (names == NULL)
82 continue; /* just selected names */
101 names2 = (struct dirent **)realloc((char *)names,
107 names = names2;
110 names[nitems++] = p;
114 qsort_r(names, nitems, sizeof(struct dirent *),
116 *namelist = names;
[all...]
/freebsd-9.3-release/contrib/cvs/diff/
H A Ddir.c27 char const **names; /* Sorted names of files in dir, 0-terminated. */ member in struct:dirdata
28 char *data; /* Allocated storage for file names. */
47 char const **names; local
56 dirdata->names = 0;
111 /* Create the `names' table from the `data' table. */
112 dirdata->names = names = (char const **) xmalloc (sizeof (char *)
116 names[i] = data;
119 names[nname
[all...]
/freebsd-9.3-release/gnu/lib/libodialog/TESTS/
H A Dtree.c16 unsigned char *names[] = { variable
70 retval = dialog_tree(names,
71 sizeof(names)/sizeof(unsigned char *) - 1,
/freebsd-9.3-release/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-9.3-release/contrib/ncurses/ncurses/tty/
H A DMKexpanded.sh64 /* these are names we'd like to see */
/freebsd-9.3-release/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-9.3-release/sys/contrib/ia64/libuwx/test/
H A Ddump_context.c34 static char *names[] = { local
77 if (valid & 1) printf(" %s", names[i]);
85 printf(" %-8s %08x %08x", names[j],
94 printf(" %-8s %08x %08x", names[j],
/freebsd-9.3-release/gnu/lib/libodialog/
H A Dfselect.c39 get_directories(DirList *d, int n, char ***names, int *nd) argument
42 * <names>, the # of entries in <nd>, memory allocated
43 * to *names should be freed when done with it.
51 *names = (char **) malloc( *nd * sizeof(char *) );
53 (*names)[i] = (char *) malloc( strlen(d[i].filename) + 1);
54 strcpy((*names)[i], d[i].filename);
61 get_filenames(DirList *d, int n, char ***names, int *nf) argument
64 * <names>, the # of entries in <nf>, memory allocated
65 * to *names should be freed when done.
75 *names
86 FreeNames(char **names, int n) argument
110 char **names, old_dir[MAXPATHLEN]; local
[all...]
H A Ddir.h37 void get_filenames(DirList *d, int n, char ***names, int *nf);
/freebsd-9.3-release/contrib/one-true-awk/
H A Dmaketab.c26 * this program makes the table to link function names
111 char *names[SIZE]; variable
125 names[i] = "";
141 names[tok-FIRSTTOKEN] = (char *) malloc(strlen(name)+1);
142 strcpy(names[tok-FIRSTTOKEN], name);
153 printf("\tnullproc,\t/* %s */\n", names[i]);
155 printf("\t%s,\t/* %s */\n", table[i], names[i]);
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dsysinfo.y31 static char *names[] = {" ","[n]","[n][m]"};
262 char *p = names[rdepth];
272 names[rdepth], size);
279 names[rdepth],size/8);
312 names[rdepth],
318 names[rdepth],
324 printf("\tput%s(raw,%d,%d,&idx,ptr->%s%s);\n", type,size/8,size%8,id,names[rdepth]);
394 printf("if (ptr->%s%s == %s) { tabout(); printf(\"%s\\n\");}\n", name, names[rdepth],$4,$3);
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DAMDILIntrinsicInfo.cpp34 static const char* const names[] = { local
46 std::string Result(names[IntrID - Intrinsic::num_intrinsics]);
/freebsd-9.3-release/contrib/groff/src/utils/xtotroff/
H A Dxtotroff.c77 FontNamesAmbiguous(const char *font_name, char **names, int count) argument
86 if (!CanonicalizeFontName(names[i], i == 0 ? name1 : name2)) {
87 fprintf(stderr, "bad font name: %s\n", names[i]);
92 fprintf(stderr, " matches %s\n", names[0]);
93 fprintf(stderr, " and %s\n", names[i]);
104 char **names; local
130 names = XListFonts(dpy, name_string, 100000, &count);
136 if (FontNamesAmbiguous(font_name, names, count))
139 XParseFontName(names[0], &parsed, &attributes);
151 fi = XLoadQueryFont(dpy, names[
[all...]
/freebsd-9.3-release/contrib/ofed/management/infiniband-diags/src/
H A Dibstat.c174 ports_list(char names[][UMAD_CA_NAME_LEN], int n) argument
180 if ((ports = umad_get_ca_portguids(names[i], guids + found, 64 - found)) < 0)
204 char names[UMAD_MAX_DEVICES][UMAD_CA_NAME_LEN]; local
257 if ((n = umad_get_cas_names(names, UMAD_MAX_DEVICES)) < 0)
258 IBPANIC("can't list IB device names");
262 if (!strncmp(names[i], argv[0], sizeof names[i]))
267 strncpy(names[i], argv[0], sizeof names[i]);
272 if (ports_list(names,
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/kadm5/
H A Dfree.c17 * 3. Neither the name of the Institute nor the names of its contributors
83 char **names,
88 free(names[i]);
89 free(names);
82 kadm5_free_name_list(void *server_handle, char **names, int *count) argument

Completed in 162 milliseconds

123456789