Searched defs:matches (Results 1 - 11 of 11) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dregexp.c35 N_("Variable names to update with matches."),
42 regmatch_t *matches)
65 if (nmatches < 2 || matches[1].rm_so == -1)
68 setvar (varnames[i], &matches[1]);
77 if (nmatches <= j || matches[j].rm_so == -1)
80 setvar (p + 1, &matches[j]);
97 regmatch_t *matches = 0; local
106 matches = grub_zalloc (sizeof (*matches) * (regex.re_nsub + 1));
107 if (! matches)
41 set_matches(char **varnames, char *str, grub_size_t nmatches, regmatch_t *matches) argument
[all...]
/osnet-11/usr/src/cmd/hal/hald/
H A Ddevice_store.c343 GSList *matches = NULL; local
362 matches = g_slist_prepend (matches, d);
365 return matches;
/osnet-11/usr/src/cmd/hal/hald/solaris/
H A Dsysevent.c268 int matches; local
287 matches = sscanf(s, "%s %s %s %s %s %s %d", class, subclass,
291 if (matches < 3) {
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_set_tkr.c492 int matches = 0; local
715 * (old_devid) matches a devid known by
914 matches++;
920 matches++;
924 if (numsides > 0 && (numsides - matches) == 0) {
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Ddoupdate.c426 int matches; local
438 matches = 0;
443 matches++;
447 if (matches > bestFit) {
448 bestFit = matches;
/osnet-11/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_dataset.c293 regmatch_t matches[REGEX_ZFS_NAME_NGROUPS]; local
296 regexec(&re, name, REGEX_ZFS_NAME_NGROUPS, matches, 0) != 0) {
306 env, name, matches + REGEX_ZFS_NAME_POOL_GROUP);
308 env, name, matches + REGEX_ZFS_NAME_PARENT_GROUP);
310 env, name, matches + REGEX_ZFS_NAME_BASE_GROUP);
H A Dlibzfs_jni_pool.c487 regmatch_t matches[2]; local
492 if (regexec(&re, path, 2, matches, 0) == 0) {
493 regmatch_t *match = matches + 1;
509 if (regexec(&re, path, 2, matches, 0) == 0) {
510 regmatch_t *match = matches + 1;
/osnet-11/usr/src/cmd/ldap/common/
H A Dldapsearch.c612 int rc, first, matches; local
803 matches = 0;
825 matches++;
911 matches = 0;
915 matches++;
926 printf( gettext("%d matches\n"), matches );
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Ddoop.c30 I32 matches = 0; local
47 matches++;
54 return matches;
70 matches++;
90 return matches;
98 I32 matches = 0; local
113 matches++;
122 matches++;
124 matches++;
128 return matches;
139 I32 matches = 0; local
301 I32 matches = 0; local
397 I32 matches = 0; local
438 I32 matches = 0; local
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dmagic.c492 regmatch_t matches[10]; local
685 if ((c = regexec(ep->value.sub, p, elementsof(matches), matches, 0)) || (c = regsubexec(ep->value.sub, p, elementsof(matches), matches)))
693 if ((c = regexec(ep->value.sub, p, elementsof(matches), matches, 0)) || (c = regsubexec(ep->value.sub, p, elementsof(matches), matches)))
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c237 * bytes. With this organization, matches are limited to a distance of
368 uInt matches; /* number of string matches in current block */ member in struct:deflate_state
432 * most input files: try all possible matches and select the longest.
436 * string matches are performed only when the previous match ends. So it
437 * is preferable to spend more time in matches to allow very fast string
451 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
507 /* 1 */ {4, 4, 8, 4}, /* maximum speed, no lazy matches */
511 /* 4 */ {4, 4, 16, 16}, /* lazy matches */
951 * we prevent matches wit
[all...]

Completed in 274 milliseconds