Searched refs:any (Results 1 - 25 of 232) sorted by relevance

12345678910

/barrelfish-master/lib/libc/iconv/
H A D_strtoul.h51 int any, cutlim, i, neg; local
64 * Skip white space and pick up leading +/- sign if any.
94 for (acc = 0, any = 0;; c = *s++) {
103 if (any < 0)
108 any = -1;
111 any = 0;
115 any = 1;
120 if (neg && any > 0)
124 *endptr = __DECONST(void *, any ? s - 1 : nptr);
H A D_strtol.h52 int any, cutlim, i, neg; local
68 * Skip white space and pick up leading +/- sign if any.
107 * Set any if any `digits' consumed; make it negative to indicate
120 for (acc = 0, any = 0;; c = *s++) {
129 if (any < 0)
135 any = -1;
138 any = 0;
142 any = 1;
150 any
[all...]
/barrelfish-master/lib/libc/locale/
H A Dwcstol.c56 int neg, any, cutlim; local
82 acc = any = 0;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
107 any = -1;
109 any = 1;
114 if (any < 0) {
117 } else if (!any) {
123 *endptr = (wchar_t *)(any ? s - 1 : nptr);
H A Dwcstoll.c62 int neg, any, cutlim; local
88 acc = any = 0;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
113 any = -1;
115 any = 1;
120 if (any < 0) {
123 } else if (!any) {
129 *endptr = (wchar_t *)(any ? s - 1 : nptr);
H A Dwcstoul.c56 int neg, any, cutlim; local
82 acc = any = 0;
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
105 any = -1;
107 any = 1;
112 if (any < 0) {
115 } else if (!any) {
121 *endptr = (wchar_t *)(any ? s - 1 : nptr);
H A Dwcstoull.c62 int neg, any, cutlim; local
88 acc = any = 0;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
111 any = -1;
113 any = 1;
118 if (any < 0) {
121 } else if (!any) {
127 *endptr = (wchar_t *)(any ? s - 1 : nptr);
H A Dwcstoumax.c62 int neg, any, cutlim; local
88 acc = any = 0;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
111 any = -1;
113 any = 1;
118 if (any < 0) {
121 } else if (!any) {
127 *endptr = (wchar_t *)(any ? s - 1 : nptr);
H A Dwcstoimax.c62 int neg, any, cutlim; local
88 acc = any = 0;
112 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
113 any = -1;
115 any = 1;
120 if (any < 0) {
123 } else if (!any) {
129 *endptr = (wchar_t *)(any ? s - 1 : nptr);
/barrelfish-master/lib/libc/stdlib/
H A Dstrtoimax.c61 int neg, any, cutlim; local
65 * Skip white space and pick up leading +/- sign if any.
92 acc = any = 0;
111 * Set 'any' if any `digits' consumed; make it negative to indicate
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
130 any = -1;
132 any = 1;
137 if (any < 0) {
140 } else if (!any) {
[all...]
H A Dstrtol.c62 int neg, any, cutlim; local
66 * Skip white space and pick up leading +/- sign if any.
93 acc = any = 0;
111 * Set 'any' if any `digits' consumed; make it negative to indicate
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
130 any = -1;
132 any = 1;
137 if (any < 0) {
140 } else if (!any) {
[all...]
H A Dstrtoll.c61 int neg, any, cutlim; local
65 * Skip white space and pick up leading +/- sign if any.
92 acc = any = 0;
111 * Set 'any' if any `digits' consumed; make it negative to indicate
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
130 any = -1;
132 any = 1;
137 if (any < 0) {
140 } else if (!any) {
[all...]
H A Dstrtoul.c60 int neg, any, cutlim; local
89 acc = any = 0;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
107 any = -1;
109 any = 1;
114 if (any < 0) {
117 } else if (!any) {
123 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoull.c61 int neg, any, cutlim; local
90 acc = any = 0;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
108 any = -1;
110 any = 1;
115 if (any < 0) {
118 } else if (!any) {
124 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoumax.c61 int neg, any, cutlim; local
90 acc = any = 0;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
108 any = -1;
110 any = 1;
115 if (any < 0) {
118 } else if (!any) {
124 *endptr = (char *)(any ? s - 1 : nptr);
/barrelfish-master/usr/drivers/usb/usb_manager/
H A Dusb_endpoint.c46 uint8_t any = 1; local
66 any = 0;
75 any = 0;
84 any = 0;
91 if (!(ep_index--) && !any) {
101 if (device->ctrl_ep.descriptor && any && !ep_index) {
/barrelfish-master/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DElementType.java31 private static String any = "any"; field in class:ElementType
70 if(any.equals(term.functor()))
/barrelfish-master/lib/acpica/source/compiler/
H A Daslsupport.y22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
34 * license, and in no event shall the patent license extend to any additions
44 * Redistribution of source code of any substantial portion of the Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
56 * Redistribution of source code of any substantial portion of the Covered
60 * addition, Licensee may not authorize further sublicense of source of any
[all...]
H A Daslhelpers.y22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
34 * license, and in no event shall the patent license extend to any additions
44 * Redistribution of source code of any substantial portion of the Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
56 * Redistribution of source code of any substantial portion of the Covered
60 * addition, Licensee may not authorize further sublicense of source of any
[all...]
/barrelfish-master/lib/openssl-1.0.0d/test/
H A Dbntest.com5 $! 0 (warning) if any test failed.
H A Dtverify.com47 $! Run the command for any left-over arguments.
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dlists.pl671 This predicate does not perform any type testing functions.
726 This predicate does not perform any type testing functions.
753 This predicate does not perform any type testing functions.
793 This predicate does not perform any type testing functions.
821 This predicate does not perform any type testing functions.
845 This predicate does not perform any type testing functions.
870 This predicate does not perform any type testing functions.
896 This predicate does not perform any type testing functions.
925 This predicate does not perform any type testing functions.
952 This predicate does not perform any typ
[all...]
/barrelfish-master/tools/fof/
H A DIntroduction.tex34 language does not have any formal semantics. And, no, this is not
43 step before any compiler correctness proof, be it mechanized or on
/barrelfish-master/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_prime.pl25 # * Copyright remains Eric Young's, and as such any Copyright notices in
48 * Copyright remains Eric Young's, and as such any Copyright notices in
69 * 4. If you include any Windows specific code (or a derivative thereof) from
85 * The licence and distribution terms for any publically available version or
/barrelfish-master/lib/openssl-1.0.0d/util/
H A Dadd_cr.pl80 * Copyright remains Eric Young's, and as such any Copyright notices in
101 * 4. If you include any Windows specific code (or a derivative thereof) from
117 * The licence and distribution terms for any publically available version or
/barrelfish-master/usr/eclipseclp/ecrc_solvers/grace/
H A Dqueens.pl57 % any of its right-hand neigbours

Completed in 68 milliseconds

12345678910