Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 743) sorted by relevance

12345678910>>...30

/dragonfly/contrib/diffutils/src/
H A Ddir.c59 char const **names; in dir_read() local
131 dirdata->names = names = xmalloc ((nnames + 1) * sizeof *names); in dir_read()
241 names[0] = dirdata[0].names; in diff_dirs()
242 names[1] = dirdata[1].names; in diff_dirs()
251 qsort (names[i], dirdata[i].nnames, sizeof *dirdata[i].names, in diff_dirs()
260 names[0]++; in diff_dirs()
262 names[1]++; in diff_dirs()
266 while (*names[0] || *names[1]) in diff_dirs()
271 int nameorder = (!*names[0] ? 1 : !*names[1] ? -1 in diff_dirs()
272 : compare_names (*names[0], *names[1])); in diff_dirs()
[all …]
/dragonfly/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
24 @if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \
31 conflicting.names: confstr.names limits.names sysconf.names
34 unique.names: conflicting.names
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgraphite-cloog-compat.h130 return prog->names; in cloog_program_names()
136 prog->names = names; in cloog_program_set_names()
178 return names->nb_parameters; in cloog_names_nb_parameters()
184 names->nb_parameters = nb_parameters; in cloog_names_set_nb_parameters()
188 cloog_names_parameters (CloogNames *names) in cloog_names_parameters() argument
190 return names->parameters; in cloog_names_parameters()
196 names->parameters = parameters; in cloog_names_set_parameters()
202 names->nb_iterators = nb_iterators; in cloog_names_set_nb_iterators()
208 names->iterators = iterators; in cloog_names_set_iterators()
214 names->nb_scattering = nb_scattering; in cloog_names_set_nb_scattering()
[all …]
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_constraints.c107 x509_constraints_name_free(names->names[i]); in x509_constraints_names_clear()
108 free(names->names); in x509_constraints_names_clear()
109 memset(names, 0, sizeof(*names)); in x509_constraints_names_clear()
126 if (names->names_count >= names->names_max) in x509_constraints_names_add()
128 if (names->names_count == names->names_len) { in x509_constraints_names_add()
130 if ((tmp = recallocarray(names->names, names->names_len, in x509_constraints_names_add()
134 names->names = tmp; in x509_constraints_names_add()
136 names->names[names->names_count] = name; in x509_constraints_names_add()
1146 if (x509_constraints_match(names->names[i], in x509_constraints_check()
1153 if (permitted->names[j]->type == names->names[i]->type) in x509_constraints_check()
[all …]
H A Dx509_internal.h55 struct x509_constraints_name **names; member
64 struct x509_constraints_names *names; /* All names from all certs */ member
105 int x509_constraints_names_add(struct x509_constraints_names *names,
108 struct x509_constraints_names *names);
109 void x509_constraints_names_clear(struct x509_constraints_names *names);
113 void x509_constraints_names_free(struct x509_constraints_names *names);
125 int x509_constraints_extract_names(struct x509_constraints_names *names,
132 int x509_constraints_check(struct x509_constraints_names *names,
/dragonfly/usr.bin/users/
H A Dusers.c52 namebuf *names = NULL; in main() local
71 names = realloc(names, in main()
72 sizeof (*names) * nmax); in main()
73 if (names == NULL) in main()
76 strcpy(names[ncnt], ep->name); in main()
80 qsort(names, ncnt, 32, scmp); in main()
81 printf("%.*s", 32, names[0]); in main()
83 if (strcmp(names[cnt], names[cnt - 1])) in main()
84 printf(" %.*s", 32, names[cnt]); in main()
/dragonfly/games/monop/
H A Dmorg.c40 static const char *names[MAX_PRP+2], variable
92 names[0]); in mortgage()
98 names); in mortgage()
120 names[num_good] = op->sqr->name; in set_mlist()
124 names[num_good++] = "done"; in set_mlist()
125 names[num_good--] = 0; in set_mlist()
160 names[0]); in unmortgage()
166 names); in unmortgage()
184 names[num_good] = op->sqr->name; in set_umlist()
187 names[num_good++] = "done"; in set_umlist()
[all …]
/dragonfly/contrib/cvs-1.12/diff/
H A Ddir.c27 char const **names; /* Sorted names of files in dir, 0-terminated. */ member
47 char const **names; local
56 dirdata->names = 0;
112 dirdata->names = names = (char const **) xmalloc (sizeof (char *)
116 names[i] = data;
119 names[nnames] = 0;
122 qsort (names, nnames, sizeof (char *), compare_names);
177 register char const * const *names0 = dirdata[0].names;
178 register char const * const *names1 = dirdata[1].names;
211 if (dirdata[i].names)
[all …]
/dragonfly/lib/libc/gen/
H A Dscandir.c57 struct dirent *d, *p, **names = NULL; in scandir() local
75 names = (struct dirent **)malloc(arraysz * sizeof(struct dirent *)); in scandir()
76 if (names == NULL) in scandir()
100 names2 = (struct dirent **)realloc((char *)names, in scandir()
106 names = names2; in scandir()
109 names[nitems++] = p; in scandir()
113 qsort(names, nitems, sizeof(struct dirent *), in scandir()
115 *namelist = names; in scandir()
120 free(names[--nitems]); in scandir()
121 free(names); in scandir()
/dragonfly/usr.bin/patch/
H A Dpch.c279 memset(names, 0, sizeof(names)); in intuit_diff_type()
410 names[OLD_FILE] = names[NEW_FILE]; in intuit_diff_type()
411 names[NEW_FILE] = tmp; in intuit_diff_type()
460 free(names[OLD_FILE].path); in intuit_diff_type()
461 free(names[NEW_FILE].path); in intuit_diff_type()
462 free(names[INDEX_FILE].path); in intuit_diff_type()
1544 if (names[i].path != NULL && names[i].exists) { in posix_name()
1545 path = names[i].path; in posix_name()
1556 path = names[NEW_FILE].path; in posix_name()
1579 path = names[i].path; in compare_names()
[all …]
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_write_set_format_filter_by_ext.c46 … { const char *name; int (*format)(struct archive *); int (*filter)(struct archive *); } names[] = variable
90 for (i = 0; names[i].name != NULL; i++) in get_array_index()
92 if (cmpsuff(name, names[i].name) == 0) in get_array_index()
106 int format_state = (names[names_index].format)(a); in archive_write_set_format_filter_by_ext()
108 return ((names[names_index].filter)(a)); in archive_write_set_format_filter_by_ext()
128 int format_state = (names[names_index].format)(a); in archive_write_set_format_filter_by_ext_def()
130 return ((names[names_index].filter)(a)); in archive_write_set_format_filter_by_ext_def()
/dragonfly/usr.sbin/mixer/
H A Dmixer.c26 static const char *names[SOUND_MIXER_NRDEVICES] = SOUND_DEVICE_NAMES; variable
46 printf("%s", names[i]); in usage()
57 printf("%s", names[i]); in usage()
72 if ((1 << i) & mask && strcmp(names[i], name) == 0) in res_name()
98 printf("%s", names[i]); in print_recsrc()
177 names[i], Sflag ? ':' : ' ', in main()
182 "%3d:%d\n", names[i], bar & 0x7f, in main()
271 names[dev], Sflag ? ':' : ' ', in main()
276 "%3d:%d\n", names[dev], bar & 0x7f, in main()
309 "%d:%d.\n", names[dev], bar & 0x7f, in main()
/dragonfly/share/timedef/
H A Dbe_BY.CP1131.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dbe_BY.CP1251.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dbe_BY.ISO8859-5.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dbe_BY.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dbg_BG.CP1251.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dbg_BG.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dhe_IL.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dhy_AM.ARMSCII-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dhy_AM.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dja_JP.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dja_JP.eucJP.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dkk_Cyrl_KZ.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)
H A Dmn_Cyrl_MN.UTF-8.src6 # Short month names
20 # Long month names (as in a date)
34 # Short weekday names
43 # Long weekday names
68 # Long month names (without case ending)

12345678910>>...30