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

12345

/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dstrtol.c57 int neg, any, cutlim; local
60 * Skip white space and pick up leading +/- sign if any.
84 acc = any = 0;
102 * Set 'any' if any `digits' consumed; make it negative to indicate
120 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
121 any = -1;
123 any = 1;
128 if (any < 0) {
131 } else if (!any) {
[all...]
H A Dstrtoll.c57 int neg, any, cutlim; local
60 * Skip white space and pick up leading +/- sign if any.
84 acc = any = 0;
103 * Set 'any' if any `digits' consumed; make it negative to indicate
121 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
122 any = -1;
124 any = 1;
129 if (any < 0) {
132 } else if (!any) {
[all...]
H A Dstrtoq.c61 register int neg, any, cutlim; local
64 * Skip white space and pick up leading +/- sign if any.
104 * Set any if any `digits' consumed; make it negative to indicate
117 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
126 if (any < 0)
130 any = -1;
134 any = 1;
140 any = -1;
144 any
[all...]
H A Dstrtoul.c57 int neg, any, cutlim; local
82 acc = any = 0;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
110 } else if (!any) {
116 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoull.c57 int neg, any, cutlim; local
82 acc = any = 0;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
110 } else if (!any) {
116 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtouq.c60 register int neg, any, cutlim; local
88 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
97 if (any < 0)
100 any = -1;
104 any = 1;
109 if (neg && any > 0)
112 *endptr = (char *) (any ? s - 1 : nptr);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dstrtol.c97 register int neg = 0, any, cutlim; local
100 * Skip white space and pick up leading +/- sign if any.
135 * Set any if any `digits' consumed; make it negative to indicate
141 for (acc = 0, any = 0;; c = *s++) {
150 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
151 any = -1;
153 any = 1;
158 if (any < 0) {
164 *endptr = (char *) (any
[all...]
H A Dstrtoul.c70 register int neg = 0, any, cutlim; local
93 for (acc = 0, any = 0;; c = *s++) {
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 any = -1;
105 any = 1;
110 if (any < 0) {
116 *endptr = (char *) (any ? s - 1 : nptr);
/haiku-fatelf/src/bin/network/tcpdump/libpcap/Win32/Src/
H A Dgetnetent.c7 * duplicated in all such forms and that any documentation,
31 static char *any(char *, char *);
71 cp = any(p, "#\n");
76 cp = any(p, " \t");
82 p = any(cp, " \t");
97 cp = any(cp, " \t");
106 any(cp, match) function
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Duseless-if-before-free18 # (at your option) any later version.
57 Detect any instance in FILE of a useless "if" test before a free call, e.g.,
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdb-events.sh13 # (at your option) any later version.
68 (at your option) any later version.
88 If editing this file, please also run gdb-events.sh and merge any
182 /* Deliver any pending events. */
404 /* Just zap any events left around from last time. */
411 /* Process any pending events. Because one of the deliveries could
494 # Replace any leading spaces with tabs
/haiku-fatelf/src/bin/gdb/bfd/
H A Dsrec.c12 (at your option) any later version.
659 tdata_save = abfd->tdata.any;
662 if (abfd->tdata.any != tdata_save && abfd->tdata.any != NULL)
663 bfd_release (abfd, abfd->tdata.any);
664 abfd->tdata.any = tdata_save;
695 tdata_save = abfd->tdata.any;
698 if (abfd->tdata.any != tdata_save && abfd->tdata.any != NULL)
699 bfd_release (abfd, abfd->tdata.any);
[all...]
H A Dversados.c13 (at your option) any later version.
512 union ext_any any; local
513 if (!get_record (abfd, &any))
515 switch (any.header.type)
523 process_esd (abfd, &any.esd, 1);
526 process_otr (abfd, &any.otr, 1);
661 union ext_any any; local
675 get_record (abfd, &any);
676 switch (any.header.type)
682 process_esd (abfd, &any
[all...]
H A Dsco5-core.c11 (at your option) any later version.
320 if (abfd->tdata.any)
322 bfd_release (abfd, abfd->tdata.any);
323 abfd->tdata.any = NULL;
357 /* If somebody calls any byte-swapping routines, shoot them. */
361 abort (); /* This way doesn't require any declaration for ANSI to fuck up */
H A Dvms.c11 (at your option) any later version.
285 abfd->tdata.any = (struct vms_private_data_struct*) bfd_alloc (abfd, amt);
286 if (abfd->tdata.any == 0)
339 bfd_release (abfd, abfd->tdata.any);
340 abfd->tdata.any = 0;
425 PTR tdata_save = abfd->tdata.any;
561 if (abfd->tdata.any != tdata_save && abfd->tdata.any != NULL)
562 bfd_release (abfd, abfd->tdata.any);
563 abfd->tdata.any
[all...]
H A Dhppabsd-core.c10 (at your option) any later version.
27 gross hacks to trad-core.c or hpux-core.c. So instead we keep any
33 I would not expect this to be of use to any other host/target, but
204 bfd_release (abfd, abfd->tdata.any);
205 abfd->tdata.any = NULL;
233 /* If somebody calls any byte-swapping routines, shoot them. */
237 /* This way doesn't require any declaration for ANSI to fuck up. */
H A Dnetbsd-core.c12 (at your option) any later version.
224 bfd_release (abfd, abfd->tdata.any);
225 abfd->tdata.any = NULL;
256 /* If somebody calls any byte-swapping routines, shoot them. */
261 /* This way doesn't require any declaration for ANSI to fuck up. */
H A Dptrace-core.c14 (at your option) any later version.
104 text. I don't think that any of these things are supported on the
131 bfd_release (abfd, abfd->tdata.any);
132 abfd->tdata.any = NULL;
165 /* If somebody calls any byte-swapping routines, shoot them. */
169 abort (); /* This way doesn't require any declaration for ANSI to fuck up */
H A Dtrad-core.c12 (at your option) any later version.
230 bfd_release (abfd, abfd->tdata.any);
231 abfd->tdata.any = NULL;
269 /* If somebody calls any byte-swapping routines, shoot them. */
273 abort (); /* This way doesn't require any declaration for ANSI to fuck up */
H A Dihex.c11 (at your option) any later version.
561 tdata_save = abfd->tdata.any;
564 if (abfd->tdata.any != tdata_save && abfd->tdata.any != NULL)
565 bfd_release (abfd, abfd->tdata.any);
566 abfd->tdata.any = tdata_save;
H A Drs6000-core.c19 (at your option) any later version.
74 #define core_hdr(bfd) ((CoreHdr *) bfd->tdata.any)
240 but I don't see any easy way to get that info right now. */
627 bfd_release (abfd, abfd->tdata.any);
628 abfd->tdata.any = NULL;
H A Dsom.h13 (at your option) any later version.
46 so for now, define _PA_RISC_ID to accept any random value for a model
69 PTR any; member in union:som_symbol::__anon3642
H A Dbinary.c11 (at your option) any later version.
105 abfd->tdata.any = (PTR) sec;
168 /* Change any non-alphanumeric characters to underscores. */
183 asection *sec = (asection *) abfd->tdata.any;
/haiku-fatelf/src/bin/network/wget/
H A Dconfigure.bat9 rem (at your option) any later version.
21 rem If you modify this program, or any covered work, by linking or
/haiku-fatelf/src/bin/bash/support/
H A Dcheckbashisms13 # (at your option) any later version.
43 GNU General Public License, version 3, or (at your option) any later version.

Completed in 151 milliseconds

12345