Searched defs:any (Results 1 - 25 of 29) sorted by relevance

12

/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrto.c55 register int any, cutlim; local
58 ** Skip white space and pick up leading +/- sign if any.
104 ** Set any if any `digits' consumed; make it negative to indicate
120 for (acc = 0, any = 0;; c = (unsigned char) *s++)
130 if (any < 0)
136 any = -1;
142 any = 1;
151 any = -1;
157 any
196 register int any, cutlim; local
[all...]
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstrtol.c56 int neg = 0, any, cutlim; local
64 * Skip white space and pick up leading +/- sign if any.
99 * Set any if any `digits' consumed; make it negative to indicate
105 for (acc = 0, any = 0;; c = *s++) {
116 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
117 any = -1;
119 any = 1;
124 if (any < 0) {
130 *endptr = (char *)(any
[all...]
H A Dstrtoul.c57 int neg, any, cutlim; local
85 acc = any = 0;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 any = -1;
105 any = 1;
110 if (any < 0) {
113 } else if (!any) {
119 *endptr = (char *)(any ? s - 1 : nptr);
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c65 int neg, c, any, cutlim; local
90 for (acc = 0, any = 0;; c = *(const unsigned char*)s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 DE_CONST((any ? s - 1 : nptr), *endptr);
/illumos-gate/usr/src/cmd/sh/
H A Dstring.c51 any(wchar_t c, unsigned char *s) function
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dgetgroup.c61 static char *any();
163 q = any(p, " \t\n#");
170 p = any(p, " \t");
219 * scans cp, looking for a match with any character
224 any(cp, match) function
/illumos-gate/usr/src/cmd/mailx/
H A Dhead.c259 * Is ch any of the characters in str?
263 any(int ch, char *str) function
/illumos-gate/usr/src/cmd/power/
H A Dpmconfig.h86 uint8_t any; /* 0: match argc, 1: at least argc */ member in struct:cinfo
/illumos-gate/usr/src/cmd/mt/
H A Dmt.c477 int i, any = 0; local
490 if (any) {
493 any = 1;
/illumos-gate/usr/src/cmd/allocate/
H A Ddminfo.c121 int any = 0; local
146 any++;
307 * to see if any of the devices in the device list are in the
386 * then print entry(s) found. If "any" switch is set then, if any
387 * device is found will result in a exit status of 0. If "any" switch
388 * is not set then, if any device is not will result in a exit status
399 } else if (any == 0) {
413 * then print entry(s) found. If "any" switch is set then, if any
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dcat.c120 * called for any special output processing
138 int any; local
148 any = 0;
179 any = 1;
216 any = 1;
242 any = 1;
376 if (!(flags & S_FLAG) || any || header)
378 any = 0;
H A Dgrep.c154 int any; /* if any pattern hit */ member in struct:State_s
541 state->any = 1;
561 state->any = 1;
573 state->any = 1;
601 state->any = 1;
823 if (state.query && state.any)
849 return (state.notfound && !state.query) ? 2 : !state.any;
/illumos-gate/usr/src/cmd/ypcmd/
H A Dmakedbm.c69 static char *any();
388 p = any(buf, " \t\n", num_del_to_match, count_esp);
390 p = any(buf, key_sep, num_del_to_match, count_esp);
478 * scans cp, looking for a match with any character
491 any(cp, match, num_del_to_match, count_esp) function
H A Drpc_bootstrap.c376 static char *any();
436 cp = any(p, "#\n");
440 cp = any(p, " \t");
464 cp = any(cp, " \t");
474 cp = any(cp, " \t");
483 any(cp, match) function
/illumos-gate/usr/src/cmd/tip/
H A Dtip.c175 * line speed set before they make any transmissions
383 bol = any(gch, value(EOL));
431 any(char c, char *p) function
/illumos-gate/usr/src/lib/libresolv/
H A Dres_gethost.c61 static char *any();
385 cp = any(p, "#\n");
389 cp = any(p, " \t");
405 cp = any(cp, " \t");
415 cp = any(cp, " \t");
424 any(cp, match) function
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dmain.c12 * duplicated in all such forms and that any documentation,
570 register int i, any = 0; local
580 if (any)
582 any = 1;
/illumos-gate/usr/src/cmd/csh/
H A Dsh.misc.c29 any(int c, tchar *s) function
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_subr.c55 any(int c, unsigned char *s) function
966 * Similar to onhup. This happens when any random core dump occurs,
1002 * An interrupt occurred. Drain any output which
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dglob.c86 static int any(int c, char *s);
226 while (!any(*cs, globchars)) {
647 if (any(c, globchars))
665 any(int c, char *s) function
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_tree.c506 * If any error occurs, full access is granted.
648 const char *any = "?????"; local
664 strcmp(service, any) != 0 &&
766 const char *any = "?????"; local
786 strcmp(service, any) != 0 &&
840 const char *any = "?????"; local
849 strcmp(service, any) != 0 &&
/illumos-gate/usr/src/common/util/
H A Dstring.c290 int any = 0; local
294 if (any++ == 0)
304 if (any) {
647 * first occurrence of any character in the string delim (or the terminating
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Dndp.c131 * Print out the command usage to stderr, along with any reason why it's being
571 * them to the specified function, along with any desired data.
689 (void) printf(" any");
850 boolean_t any = B_FALSE; local
881 } else if (strcmp(opt, "any") == 0) {
882 any = B_TRUE;
898 if (any) {
1019 * Grab any following keywords up to the next flag
1075 ndp_usage("Multiple arguments given without any flags");
/illumos-gate/usr/src/lib/libpool/common/
H A Dpool.c1702 pool_value_t *, void *), int any)
1746 if (any == 1 || prop_is_hidden(&props[i]) == PO_FALSE) {
1768 if (any == 1 || prop_is_hidden(&props[i]) == PO_FALSE) {
2075 * Walk all the pools and dissociate any pools which are using
1700 pool_walk_any_properties(pool_conf_t *conf, pool_elem_t *elem, void *arg, int (*prop_callback)(pool_conf_t *, pool_elem_t *, const char *, pool_value_t *, void *), int any) argument
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Delf.c220 * Establish any alternative capabilities, and validate this object
240 * any rejection information as this test allows use to scroll through
289 * Verify any capability requirements. Note, if this object is a shared
316 * - elf_needed() is called to establish any ld.so.1 dependencies. These
318 * no-op. However, we call elf_needed() for completeness, in case any
345 * - ld.so.1 does not exercise *any* PLT's before it has made a call
437 * Remove any expanded pathname infrastructure. Reduce the pending lazy
463 * Remove any temporary link-map control list.
510 * Traverse the callers version needed information and determine if any
577 * If we're being traced print out any matche
824 int any; local
[all...]

Completed in 139 milliseconds

12