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

/osnet-11/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...]
/osnet-11/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);
/osnet-11/usr/src/lib/libresolv/
H A Dres_gethost.c58 static char *any();
383 cp = any(p, "#\n");
387 cp = any(p, " \t");
403 cp = any(cp, " \t");
413 cp = any(cp, " \t");
422 any(cp, match) function
/osnet-11/usr/src/lib/libcmd/common/
H A Dcat.c120 * called for any special output processing
138 int any; local
147 any = 0;
178 any = 1;
215 any = 1;
241 any = 1;
376 if (!(flags & S_FLAG) || any || header)
378 any = 0;
H A Dgrep.c159 int any; /* if any pattern hit */ member in struct:State_s
554 state->any = 1;
574 state->any = 1;
586 state->any = 1;
614 state->any = 1;
858 if (state.query && state.any)
885 if (state.query && state.any)
923 return (state.notfound && !state.query) ? 2 : !state.any;
/osnet-11/usr/src/lib/libshare_plugins/zfs/
H A Dlibshare_zfs.c587 * name=protocol tag{"nfs"|"smb"|"any"}, value=error code
591 * protocols, track the state after publish as "shared" if any publish attempt
597 * The "any" protocol tag indicates that libshare did not distinguish which
598 * protocol was resposible for the error code, so it could apply to any or all
608 boolean_t any = B_FALSE; local
617 any = B_TRUE;
649 * If the "any" proto tag is present, it should be the only tag in the
652 if (any && n > 1)
/osnet-11/usr/src/lib/libpool/common/
H A Dpool.c1699 pool_value_t *, void *), int any)
1743 if (any == 1 || prop_is_hidden(&props[i]) == PO_FALSE) {
1765 if (any == 1 || prop_is_hidden(&props[i]) == PO_FALSE) {
2072 * Walk all the pools and dissociate any pools which are using
1697 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
/osnet-11/usr/src/cmd/sendmail/src/
H A Dconf.c85 ** Final (null) entry contains the flags used for any other field.
695 ** This should act as an interface to any local service switch
2046 * documentation for any purpose is hereby granted without fee, provided that
2052 * suitability of this software for any purpose. It is provided "as is"
2411 ** any of the space beyond argv[0]. Be sure to set SPT_ALIGN_SIZE if
3666 ** even any agreement about whether a zero return means that a file
3968 ** appropriate message -- but should never issue any SMTP protocol.
4082 register int neg = 0, any, cutlim; local
4085 ** Skip white space and pick up leading +/- sign if any.
4120 ** Set any i
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dutil.c45 * allocated hunks back to the original New to track down any memory leaks.
218 /* copy a string up to some (non-backslashed) delimiter, if any */
819 XPVMG *any; local
827 /* Create as PVMG now, to avoid any upgrading later */
829 Newz(905, any, 1, XPVMG);
831 SvANY(sv) = (void*)any;
860 can be used any place a string (char *) is required:
1844 /* Close parent's end of error status pipe (if any) */
1881 do_execfree(); /* free any memory malloced by child on fork */
2035 do_execfree(); /* free any memor
[all...]
H A Dperl.h85 /* Win32 has naturally threadsafe libraries, no need to use any _r variants. */
1073 The IV type is supposed to be long enough to hold any integral
1154 # define INT2PTR(any,d) (any)(d)
1161 # define INT2PTR(any,d) (any)(PTRV)(d)
1163 #define NUM2PTR(any,d) (any)(PTRV)(d)
1598 * does *not* catch any random system, or things like integer types
1801 typedef union any AN
2284 union any { union
[all...]

Completed in 126 milliseconds