Symbol: any
bin/sh/eval.c
150
int any;
bin/sh/eval.c
154
any = 0;
bin/sh/eval.c
163
any = 1;
bin/sh/eval.c
172
if (!any)
crypto/heimdal/kdc/kx509.c
208
heim_any any;
crypto/heimdal/kdc/kx509.c
218
any.data = "\x05\x00";
crypto/heimdal/kdc/kx509.c
219
any.length = 2;
crypto/heimdal/kdc/kx509.c
220
spki.algorithm.parameters = &any;
crypto/heimdal/kdc/pkinit.c
1393
heim_any any;
crypto/heimdal/kdc/pkinit.c
1395
any.data = rep.u.encKeyPack.data;
crypto/heimdal/kdc/pkinit.c
1396
any.length = rep.u.encKeyPack.length;
crypto/heimdal/kdc/pkinit.c
1399
btmm.encKeyPack = &any;
crypto/heimdal/lib/ipc/client.c
505
int ret, any = 0;
crypto/heimdal/lib/ipc/client.c
514
any = 1;
crypto/heimdal/lib/ipc/client.c
527
if (any)
crypto/openssh/openbsd-compat/strtoll.c
111
for (acc = 0, any = 0;; c = (unsigned char) *s++) {
crypto/openssh/openbsd-compat/strtoll.c
120
if (any < 0)
crypto/openssh/openbsd-compat/strtoll.c
124
any = -1;
crypto/openssh/openbsd-compat/strtoll.c
128
any = 1;
crypto/openssh/openbsd-compat/strtoll.c
134
any = -1;
crypto/openssh/openbsd-compat/strtoll.c
138
any = 1;
crypto/openssh/openbsd-compat/strtoll.c
145
*endptr = (char *) (any ? s - 1 : nptr);
crypto/openssh/openbsd-compat/strtoll.c
55
int neg, any, cutlim;
crypto/openssh/openbsd-compat/strtoul.c
102
if (neg && any > 0)
crypto/openssh/openbsd-compat/strtoul.c
105
*endptr = (char *) (any ? s - 1 : nptr);
crypto/openssh/openbsd-compat/strtoul.c
53
int neg, any, cutlim;
crypto/openssh/openbsd-compat/strtoul.c
81
for (acc = 0, any = 0;; c = (unsigned char) *s++) {
crypto/openssh/openbsd-compat/strtoul.c
90
if (any < 0)
crypto/openssh/openbsd-compat/strtoul.c
93
any = -1;
crypto/openssh/openbsd-compat/strtoul.c
97
any = 1;
crypto/openssh/openbsd-compat/strtoull.c
104
if (neg && any > 0)
crypto/openssh/openbsd-compat/strtoull.c
107
*endptr = (char *) (any ? s - 1 : nptr);
crypto/openssh/openbsd-compat/strtoull.c
55
int neg, any, cutlim;
crypto/openssh/openbsd-compat/strtoull.c
83
for (acc = 0, any = 0;; c = (unsigned char) *s++) {
crypto/openssh/openbsd-compat/strtoull.c
92
if (any < 0)
crypto/openssh/openbsd-compat/strtoull.c
95
any = -1;
crypto/openssh/openbsd-compat/strtoull.c
99
any = 1;
lib/libc/iconv/_strtol.h
131
for (acc = 0, any = 0;; c = *s++) {
lib/libc/iconv/_strtol.h
140
if (any < 0)
lib/libc/iconv/_strtol.h
146
any = -1;
lib/libc/iconv/_strtol.h
149
any = 0;
lib/libc/iconv/_strtol.h
153
any = 1;
lib/libc/iconv/_strtol.h
161
any = -1;
lib/libc/iconv/_strtol.h
164
any = 0;
lib/libc/iconv/_strtol.h
168
any = 1;
lib/libc/iconv/_strtol.h
176
*endptr = __DECONST(void *, any ? s - 1 : nptr);
lib/libc/iconv/_strtol.h
53
int any, cutlim, i, neg;
lib/libc/iconv/_strtoul.h
105
for (acc = 0, any = 0;; c = *s++) {
lib/libc/iconv/_strtoul.h
114
if (any < 0)
lib/libc/iconv/_strtoul.h
119
any = -1;
lib/libc/iconv/_strtoul.h
122
any = 0;
lib/libc/iconv/_strtoul.h
126
any = 1;
lib/libc/iconv/_strtoul.h
131
if (neg && any > 0)
lib/libc/iconv/_strtoul.h
135
*endptr = __DECONST(void *, any ? s - 1 : nptr);
lib/libc/iconv/_strtoul.h
52
int any, cutlim, i, neg;
lib/libc/locale/wcstoimax.c
115
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/locale/wcstoimax.c
116
any = -1;
lib/libc/locale/wcstoimax.c
118
any = 1;
lib/libc/locale/wcstoimax.c
123
if (any < 0) {
lib/libc/locale/wcstoimax.c
126
} else if (!any) {
lib/libc/locale/wcstoimax.c
132
*endptr = (wchar_t *)(any ? s - 1 : nptr);
lib/libc/locale/wcstoimax.c
55
int neg, any, cutlim;
lib/libc/locale/wcstoimax.c
91
acc = any = 0;
lib/libc/locale/wcstol.c
115
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/locale/wcstol.c
116
any = -1;
lib/libc/locale/wcstol.c
118
any = 1;
lib/libc/locale/wcstol.c
123
if (any < 0) {
lib/libc/locale/wcstol.c
126
} else if (!any) {
lib/libc/locale/wcstol.c
132
*endptr = (wchar_t *)(any ? s - 1 : nptr);
lib/libc/locale/wcstol.c
55
int neg, any, cutlim;
lib/libc/locale/wcstol.c
91
acc = any = 0;
lib/libc/locale/wcstoll.c
115
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/locale/wcstoll.c
116
any = -1;
lib/libc/locale/wcstoll.c
118
any = 1;
lib/libc/locale/wcstoll.c
123
if (any < 0) {
lib/libc/locale/wcstoll.c
126
} else if (!any) {
lib/libc/locale/wcstoll.c
132
*endptr = (wchar_t *)(any ? s - 1 : nptr);
lib/libc/locale/wcstoll.c
55
int neg, any, cutlim;
lib/libc/locale/wcstoll.c
91
acc = any = 0;
lib/libc/locale/wcstoul.c
113
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/locale/wcstoul.c
114
any = -1;
lib/libc/locale/wcstoul.c
116
any = 1;
lib/libc/locale/wcstoul.c
121
if (any < 0) {
lib/libc/locale/wcstoul.c
124
} else if (!any) {
lib/libc/locale/wcstoul.c
130
*endptr = (wchar_t *)(any ? s - 1 : nptr);
lib/libc/locale/wcstoul.c
55
int neg, any, cutlim;
lib/libc/locale/wcstoul.c
91
acc = any = 0;
lib/libc/locale/wcstoull.c
113
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/locale/wcstoull.c
114
any = -1;
lib/libc/locale/wcstoull.c
116
any = 1;
lib/libc/locale/wcstoull.c
121
if (any < 0) {
lib/libc/locale/wcstoull.c
124
} else if (!any) {
lib/libc/locale/wcstoull.c
130
*endptr = (wchar_t *)(any ? s - 1 : nptr);
lib/libc/locale/wcstoull.c
55
int neg, any, cutlim;
lib/libc/locale/wcstoull.c
91
acc = any = 0;
lib/libc/locale/wcstoumax.c
113
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/locale/wcstoumax.c
114
any = -1;
lib/libc/locale/wcstoumax.c
116
any = 1;
lib/libc/locale/wcstoumax.c
121
if (any < 0) {
lib/libc/locale/wcstoumax.c
124
} else if (!any) {
lib/libc/locale/wcstoumax.c
130
*endptr = (wchar_t *)(any ? s - 1 : nptr);
lib/libc/locale/wcstoumax.c
55
int neg, any, cutlim;
lib/libc/locale/wcstoumax.c
91
acc = any = 0;
lib/libc/stdio/vfscanf.c
343
*state == any) {
lib/libc/stdio/vfscanf.c
345
*state = any;
lib/libc/stdio/vfscanf.c
368
*state == any) {
lib/libc/stdio/vfscanf.c
370
*state = any;
lib/libc/stdio/vfscanf.c
393
*state == any) {
lib/libc/stdio/vfscanf.c
395
*state = any;
lib/libc/stdio/vfwscanf.c
325
*state == any) {
lib/libc/stdio/vfwscanf.c
327
*state = any;
lib/libc/stdio/vfwscanf.c
350
*state == any) {
lib/libc/stdio/vfwscanf.c
352
*state = any;
lib/libc/stdio/vfwscanf.c
375
*state == any) {
lib/libc/stdio/vfwscanf.c
377
*state = any;
lib/libc/stdlib/strtoimax.c
132
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/stdlib/strtoimax.c
133
any = -1;
lib/libc/stdlib/strtoimax.c
135
any = 1;
lib/libc/stdlib/strtoimax.c
140
if (any < 0) {
lib/libc/stdlib/strtoimax.c
143
} else if (!any) {
lib/libc/stdlib/strtoimax.c
149
*endptr = (char *)(any ? s - 1 : nptr);
lib/libc/stdlib/strtoimax.c
57
int neg, any, cutlim;
lib/libc/stdlib/strtoimax.c
95
acc = any = 0;
lib/libc/stdlib/strtol.c
131
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/stdlib/strtol.c
132
any = -1;
lib/libc/stdlib/strtol.c
134
any = 1;
lib/libc/stdlib/strtol.c
139
if (any < 0) {
lib/libc/stdlib/strtol.c
142
} else if (!any) {
lib/libc/stdlib/strtol.c
148
*endptr = (char *)(any ? s - 1 : nptr);
lib/libc/stdlib/strtol.c
57
int neg, any, cutlim;
lib/libc/stdlib/strtol.c
95
acc = any = 0;
lib/libc/stdlib/strtoll.c
133
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/stdlib/strtoll.c
134
any = -1;
lib/libc/stdlib/strtoll.c
136
any = 1;
lib/libc/stdlib/strtoll.c
141
if (any < 0) {
lib/libc/stdlib/strtoll.c
144
} else if (!any) {
lib/libc/stdlib/strtoll.c
150
*endptr = (char *)(any ? s - 1 : nptr);
lib/libc/stdlib/strtoll.c
57
int neg, any, cutlim;
lib/libc/stdlib/strtoll.c
96
acc = any = 0;
lib/libc/stdlib/strtoul.c
109
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/stdlib/strtoul.c
110
any = -1;
lib/libc/stdlib/strtoul.c
112
any = 1;
lib/libc/stdlib/strtoul.c
117
if (any < 0) {
lib/libc/stdlib/strtoul.c
120
} else if (!any) {
lib/libc/stdlib/strtoul.c
126
*endptr = (char *)(any ? s - 1 : nptr);
lib/libc/stdlib/strtoul.c
56
int neg, any, cutlim;
lib/libc/stdlib/strtoul.c
92
acc = any = 0;
lib/libc/stdlib/strtoull.c
110
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/stdlib/strtoull.c
111
any = -1;
lib/libc/stdlib/strtoull.c
113
any = 1;
lib/libc/stdlib/strtoull.c
118
if (any < 0) {
lib/libc/stdlib/strtoull.c
121
} else if (!any) {
lib/libc/stdlib/strtoull.c
127
*endptr = (char *)(any ? s - 1 : nptr);
lib/libc/stdlib/strtoull.c
57
int neg, any, cutlim;
lib/libc/stdlib/strtoull.c
93
acc = any = 0;
lib/libc/stdlib/strtoumax.c
110
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
lib/libc/stdlib/strtoumax.c
111
any = -1;
lib/libc/stdlib/strtoumax.c
113
any = 1;
lib/libc/stdlib/strtoumax.c
118
if (any < 0) {
lib/libc/stdlib/strtoumax.c
121
} else if (!any) {
lib/libc/stdlib/strtoumax.c
127
*endptr = (char *)(any ? s - 1 : nptr);
lib/libc/stdlib/strtoumax.c
57
int neg, any, cutlim;
lib/libc/stdlib/strtoumax.c
93
acc = any = 0;
lib/libpmc/pmu-events/jevents.c
590
char *any = NULL;
lib/libpmc/pmu-events/jevents.c
650
addfield(map, &any, "", "any=", val);
lib/libpmc/pmu-events/jevents.c
812
if (any)
lib/libpmc/pmu-events/jevents.c
813
addfield(map, &event, ",", any, NULL);
lib/libpmc/pmu-events/jevents.c
872
free(any);
sbin/etherswitchcfg/etherswitchcfg.c
107
if (any)
sbin/etherswitchcfg/etherswitchcfg.c
109
any = 1;
sbin/etherswitchcfg/etherswitchcfg.c
95
int i, any = 0;
sbin/ifconfig/ifconfig.c
1956
int i, any = 0;
sbin/ifconfig/ifconfig.c
1968
if (any)
sbin/ifconfig/ifconfig.c
1970
any = 1;
sys/arm/nvidia/drm2/hdmi.c
400
if (frame->any.oui != HDMI_IEEE_OUI)
sys/arm/nvidia/drm2/hdmi.c
425
switch (frame->any.type) {
sys/arm/nvidia/drm2/hdmi.c
440
printf("Bad infoframe type %d\n", frame->any.type);
sys/arm/nvidia/drm2/hdmi.c
931
if (frame->any.oui != HDMI_IEEE_OUI) {
sys/arm/nvidia/drm2/hdmi.c
959
switch (frame->any.type) {
sys/arm/nvidia/drm2/hdmi.h
302
} any;
sys/arm/nvidia/drm2/hdmi.h
319
struct hdmi_any_infoframe any;
sys/compat/linuxkpi/common/include/linux/hdmi.h
411
} any;
sys/compat/linuxkpi/common/include/linux/hdmi.h
429
struct hdmi_any_infoframe any;
sys/compat/linuxkpi/common/include/net/cfg80211.h
933
bool any;
sys/compat/linuxkpi/common/src/linux_hdmi.c
1001
switch (frame->any.type) {
sys/compat/linuxkpi/common/src/linux_hdmi.c
1019
WARN(1, "Bad infoframe type %d\n", frame->any.type);
sys/compat/linuxkpi/common/src/linux_hdmi.c
1537
if (frame->any.oui != HDMI_IEEE_OUI) {
sys/compat/linuxkpi/common/src/linux_hdmi.c
1567
switch (frame->any.type) {
sys/compat/linuxkpi/common/src/linux_hdmi.c
694
if (frame->any.type != HDMI_INFOFRAME_TYPE_VENDOR ||
sys/compat/linuxkpi/common/src/linux_hdmi.c
695
frame->any.version != 1)
sys/compat/linuxkpi/common/src/linux_hdmi.c
858
if (frame->any.oui != HDMI_IEEE_OUI)
sys/compat/linuxkpi/common/src/linux_hdmi.c
878
if (frame->any.oui != HDMI_IEEE_OUI)
sys/compat/linuxkpi/common/src/linux_hdmi.c
913
switch (frame->any.type) {
sys/compat/linuxkpi/common/src/linux_hdmi.c
923
WARN(1, "Bad infoframe type %d\n", frame->any.type);
sys/compat/linuxkpi/common/src/linux_hdmi.c
948
switch (frame->any.type) {
sys/compat/linuxkpi/common/src/linux_hdmi.c
970
WARN(1, "Bad infoframe type %d\n", frame->any.type);
sys/dev/hid/hkbd.c
1846
uint8_t any;
sys/dev/hid/hkbd.c
1860
any = 0;
sys/dev/hid/hkbd.c
1867
any = 1;
sys/dev/hid/hkbd.c
1873
any = 1;
sys/dev/hid/hkbd.c
1879
any = 1;
sys/dev/hid/hkbd.c
1883
if (!any)
sys/dev/usb/input/ukbd.c
905
uint8_t any;
sys/dev/usb/input/ukbd.c
932
any = 0;
sys/dev/usb/input/ukbd.c
942
any = 1;
sys/dev/usb/input/ukbd.c
951
any = 1;
sys/dev/usb/input/ukbd.c
960
any = 1;
sys/dev/usb/input/ukbd.c
964
if (!any)
sys/dev/usb/usb_msctest.c
761
#define USB_ADD_QUIRK(udev, any, which) do { \
sys/dev/usb/usb_msctest.c
774
any = 1; \
sys/libkern/strtol.c
108
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
sys/libkern/strtol.c
109
any = -1;
sys/libkern/strtol.c
111
any = 1;
sys/libkern/strtol.c
116
if (any < 0) {
sys/libkern/strtol.c
121
*endptr = __DECONST(char *, any ? s - 1 : nptr);
sys/libkern/strtol.c
53
int neg = 0, any, cutlim;
sys/libkern/strtol.c
97
for (acc = 0, any = 0;; c = *s++) {
sys/libkern/strtoq.c
103
for (acc = 0, any = 0;; c = *s++) {
sys/libkern/strtoq.c
114
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
sys/libkern/strtoq.c
115
any = -1;
sys/libkern/strtoq.c
117
any = 1;
sys/libkern/strtoq.c
122
if (any < 0) {
sys/libkern/strtoq.c
127
*endptr = __DECONST(char *, any ? s - 1 : nptr);
sys/libkern/strtoq.c
53
int neg, any, cutlim;
sys/libkern/strtoul.c
100
*endptr = __DECONST(char *, any ? s - 1 : nptr);
sys/libkern/strtoul.c
53
int neg = 0, any, cutlim;
sys/libkern/strtoul.c
76
for (acc = 0, any = 0;; c = *s++) {
sys/libkern/strtoul.c
87
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
sys/libkern/strtoul.c
88
any = -1;
sys/libkern/strtoul.c
90
any = 1;
sys/libkern/strtoul.c
95
if (any < 0) {
sys/libkern/strtouq.c
104
*endptr = __DECONST(char *, any ? s - 1 : nptr);
sys/libkern/strtouq.c
53
int neg, any, cutlim;
sys/libkern/strtouq.c
80
for (acc = 0, any = 0;; c = *s++) {
sys/libkern/strtouq.c
91
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
sys/libkern/strtouq.c
92
any = -1;
sys/libkern/strtouq.c
94
any = 1;
sys/libkern/strtouq.c
99
if (any < 0) {
sys/net/debugnet.c
832
bool any;
sys/net/debugnet.c
834
any = false;
sys/net/debugnet.c
838
any = true;
sys/net/debugnet.c
844
any = true;
sys/net/debugnet.c
850
any = true;
sys/net/debugnet.c
857
if (any)
sys/net/if_vxlan.c
3444
int any;
sys/net/if_vxlan.c
3450
any = in4->s_addr == INADDR_ANY;
sys/net/if_vxlan.c
3453
any = IN6_IS_ADDR_UNSPECIFIED(in6);
sys/net/if_vxlan.c
3455
any = -1;
sys/net/if_vxlan.c
3457
return (any);
sys/net/pfvar.h
1947
char any[0];
sys/net80211/ieee80211_scan_sw.c
434
cancel_scan(struct ieee80211vap *vap, int any, const char *func)
sys/net80211/ieee80211_scan_sw.c
442
signal = any ? ISCAN_PAUSE : ISCAN_CANCEL;
sys/net80211/ieee80211_scan_sw.c
444
(any || ss->ss_vap == vap) &&
sys/net80211/ieee80211_scan_sw.c
448
any ? "pause" : "cancel",
sys/netpfil/pf/pf.c
10237
m_copyback(m0, pd->off, sizeof(*uh), pd->hdr.any);
sys/netpfil/pf/pf.c
4773
m_copyback(pd->m, pd->off, pd->hdrlen, pd->hdr.any);
sys/netpfil/pf/pf.c
6523
m_copyback(pd->m, pd->off, pd->hdrlen, pd->hdr.any);
sys/netpfil/pf/pf.c
6633
m_copyback(pd->m, pd->off, pd->hdrlen, pd->hdr.any);
sys/netpfil/pf/pf.c
8064
m_copyback(pd->m, pd->off, pd->hdrlen, pd->hdr.any);
usr.bin/mt/mt.c
464
int i, any = 0;
usr.bin/mt/mt.c
478
if (any)
usr.bin/mt/mt.c
480
any = 1;
usr.bin/tip/tip/cmds.c
169
if (eof || any(c, eofchars))
usr.bin/tip/tip/cmds.c
988
if (any(c, s2))
usr.bin/tip/tip/tip.c
417
bol = any(gch, value(EOL));
usr.bin/tip/tip/tip.h
281
int any(int, char *);
usr.bin/tip/tip/tipout.c
169
any(*cp, value(EXCEPTIONS)))
usr.sbin/fstyp/hammer2_disk.h
588
#define H2_LNK_VOLCONF(msg) ((dmsg_lnk_hammer2_volconf_t *)(msg)->any.buf)
usr.sbin/ifmcstat/printb.c
42
int i, any = 0;
usr.sbin/ifmcstat/printb.c
55
if (any)
usr.sbin/ifmcstat/printb.c
57
any = 1;
usr.sbin/lpr/pac/pac.c
209
while (any(*cp, " \t"))
usr.sbin/lpr/pac/pac.c
212
while (any(*cp, ".0123456789"))
usr.sbin/lpr/pac/pac.c
214
while (any(*cp, " \t"))
usr.sbin/lpr/pac/pac.c
216
for (cp2 = cp; !any(*cp2, " \t\n"); cp2++)
usr.sbin/lpr/pac/pac.c
85
static int any(int _ch, const char _str[]);
usr.sbin/mld6query/mld6.c
113
qaddr = &any;
usr.sbin/mld6query/mld6.c
78
struct in6_addr maddr = IN6ADDR_ANY_INIT, any = IN6ADDR_ANY_INIT;
usr.sbin/ypbind/yp_ping.c
212
struct sockaddr_in sin, *any = NULL;
usr.sbin/ypbind/yp_ping.c
236
any = &reqs[i]->sin;
usr.sbin/ypbind/yp_ping.c
250
clnt = clntudp_create(any, YPPROG, YPVERS, tv, &sock);