HomeSort by: relevance | last modified time | path
    Searched defs:any (Results 1 - 25 of 68) sorted by relevancy

1 2 3

  /src/tests/usr.bin/xlint/lint1/
msg_185.c 8 typedef struct any { struct
10 } any; typedef in typeref:struct:any
15 initialization_with_redundant_braces(any arg)
18 any local = { 3.0 };
msg_185.c 8 typedef struct any { struct
10 } any; typedef in typeref:struct:any
15 initialization_with_redundant_braces(any arg)
18 any local = { 3.0 };
gcc_cast_union.c 7 * As of GCC 10.3.0, GCC only prints a generic warning without any details:
62 union anything any; local in function:test
64 any = (union anything)(_Bool)0;
65 any = (union anything)(char)'\0';
66 any = (union anything)(signed char)'\0';
67 any = (union anything)(unsigned char)'\0';
68 any = (union anything)(short)'\0';
69 any = (union anything)(unsigned short)'\0';
70 any = (union anything)(int)'\0';
71 any = (union anything)(unsigned int)'\0'
    [all...]
  /src/common/lib/libc/stdlib/
_strtol.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 int i, neg, any, cutlim; local in function:_FUNCNAME
80 * Skip white space and pick up leading +/- sign if any.
136 * Set any if any `digits' consumed; make it negative to indicate
149 for (acc = 0, any = 0;; c = *s++) {
160 if (any < 0
    [all...]
_strtoul.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 int i, neg, any, cutlim; local in function:_FUNCNAME
80 * Skip white space and pick up leading +/- sign if any.
127 for (acc = 0, any = 0;; c = *s++) {
138 if (any < 0)
143 any = -1;
146 any = 0
    [all...]
_strtol.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 int i, neg, any, cutlim; local in function:_FUNCNAME
80 * Skip white space and pick up leading +/- sign if any.
136 * Set any if any `digits' consumed; make it negative to indicate
149 for (acc = 0, any = 0;; c = *s++) {
160 if (any < 0
    [all...]
_strtoul.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 int i, neg, any, cutlim; local in function:_FUNCNAME
80 * Skip white space and pick up leading +/- sign if any.
127 for (acc = 0, any = 0;; c = *s++) {
138 if (any < 0)
143 any = -1;
146 any = 0
    [all...]
  /src/sys/arch/ia64/stand/common/
strtol.c 24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 int neg = 0, any, cutlim; local in function:strtol
71 * Skip white space and pick up leading +/- sign if any.
106 * Set any if any `digits' consumed; make it negative to indicate
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)
    [all...]
strtol.c 24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 int neg = 0, any, cutlim; local in function:strtol
71 * Skip white space and pick up leading +/- sign if any.
106 * Set any if any `digits' consumed; make it negative to indicate
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)
    [all...]
  /src/lib/libc/locale/
_wcstol.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 int neg, any, cutlim; local in function:INT_FUNCNAME
76 * Skip white space and pick up leading +/- sign if any.
114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
120 if (any < 0)
124 any = -1;
128 any = 1
    [all...]
_wcstoul.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 int neg, any, cutlim; local in function:INT_FUNCNAME
70 * Skip white space and pick up leading +/- sign if any.
100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
106 if (any < 0)
109 any = -1;
113 any = 1
    [all...]
_wcstol.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 int neg, any, cutlim; local in function:INT_FUNCNAME
76 * Skip white space and pick up leading +/- sign if any.
114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
120 if (any < 0)
124 any = -1;
128 any = 1
    [all...]
_wcstoul.h 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 int neg, any, cutlim; local in function:INT_FUNCNAME
70 * Skip white space and pick up leading +/- sign if any.
100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
106 if (any < 0)
109 any = -1;
113 any = 1
    [all...]
  /src/sys/dev/
random.c 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
252 bool privileged = false, any = false; local in function:random_write
283 any = true;
301 if (any && error == 0)
random.c 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
252 bool privileged = false, any = false; local in function:random_write
283 any = true;
301 if (any && error == 0)
  /src/sys/dev/sun/
ms.c 29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
235 int mb, ub, d, get, put, any; local in function:ms_input
329 any = 0;
347 any = 1
381 if (any) {
ms.c 29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
235 int mb, ub, d, get, put, any; local in function:ms_input
329 any = 0;
347 any = 1
381 if (any) {
  /src/sys/netbt/
rfcomm_dlc.c 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
28 * ON ANY THEORY OF LIABILITY, WHETHER IN
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
76 struct rfcomm_dlc *new, *dlc, *any, *best; local in function:rfcomm_dlc_newconn
92 any = best = NULL;
109 any = dlc;
114 dlc = best ? best : any;
190 * DLC timeout function is scheduled when we sent any of SABM,
217 * already open, so we don't need to worry about any previous mod
    [all...]
rfcomm_dlc.c 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
28 * ON ANY THEORY OF LIABILITY, WHETHER IN
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
76 struct rfcomm_dlc *new, *dlc, *any, *best; local in function:rfcomm_dlc_newconn
92 any = best = NULL;
109 any = dlc;
114 dlc = best ? best : any;
190 * DLC timeout function is scheduled when we sent any of SABM,
217 * already open, so we don't need to worry about any previous mod
    [all...]
  /src/tests/net/inpcb/
inpcb_bind.c 6 * Permission to use, copy, modify, and distribute this software for any
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
118 unicast_testsuite(struct addrinfo *local, struct addrinfo *any)
126 rc |= runtest(s++, any, 0, 0, NULL, EADDRINUSE);
127 rc |= runtest(s++, any, 1, 0, NULL, 0);
134 rc |= runtest(s++, any, 0, 0, NULL, 0);
153 rc |= runtest(s++, any, 0, 1, NULL, 0);
154 rc |= runtest(s++, any, 0, 1, NULL, 0);
155 rc |= runtest(s++, any, 1, 0, NULL, EADDRINUSE)
349 struct addrinfo hints, *baddr, *any, *mifa; local in function:main
    [all...]
inpcb_bind.c 6 * Permission to use, copy, modify, and distribute this software for any
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
118 unicast_testsuite(struct addrinfo *local, struct addrinfo *any)
126 rc |= runtest(s++, any, 0, 0, NULL, EADDRINUSE);
127 rc |= runtest(s++, any, 1, 0, NULL, 0);
134 rc |= runtest(s++, any, 0, 0, NULL, 0);
153 rc |= runtest(s++, any, 0, 1, NULL, 0);
154 rc |= runtest(s++, any, 0, 1, NULL, 0);
155 rc |= runtest(s++, any, 1, 0, NULL, EADDRINUSE)
349 struct addrinfo hints, *baddr, *any, *mifa; local in function:main
    [all...]
  /src/bin/mt/
mt.c 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
294 int any, i; local in function:printreg
297 any = 0;
306 if (any)
308 any = 1;
mt.c 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
294 int any, i; local in function:printreg
297 any = 0;
306 if (any)
308 any = 1;
  /src/sys/arch/sparc/dev/
ms_pckbport.c 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
198 int mb, ub, d, get, put, any; local in function:ms_pckbport_input
234 any = 0;
254 any = 1; \
292 if (any) {
  /src/sys/compat/common/
vfs_syscalls_30.c 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
86 /* Handle any padding. */
222 bool any = false; local in function:compat_30_sys_getdents
289 any = true;
309 any = true;
313 if (!any) {
386 * and call the device open routine if any
    [all...]

Completed in 30 milliseconds

1 2 3