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

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/clib/
H A Dstrtol.c60 int neg, any, cutlim; local
63 * Skip white space and pick up leading +/- sign if any.
87 acc = any = 0;
105 * Set 'any' if any `digits' consumed; make it negative to indicate
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
124 any = -1;
126 any = 1;
131 if (any < 0) {
134 } else if (!any) {
[all...]
H A Dstrtoul.c60 int neg, any, cutlim; local
85 acc = any = 0;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 any = -1;
105 any = 1;
110 if (any < 0) {
113 } else if (!any) {
119 *endptr = (char *)(any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/clib/
H A Dstrtol.c60 int neg, any, cutlim; local
63 * Skip white space and pick up leading +/- sign if any.
87 acc = any = 0;
105 * Set 'any' if any `digits' consumed; make it negative to indicate
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
124 any = -1;
126 any = 1;
131 if (any < 0) {
134 } else if (!any) {
[all...]
H A Dstrtoul.c60 int neg, any, cutlim; local
85 acc = any = 0;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 any = -1;
105 any = 1;
110 if (any < 0) {
113 } else if (!any) {
119 *endptr = (char *)(any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/clib/
H A Dstrtol.c60 int neg, any, cutlim; local
63 * Skip white space and pick up leading +/- sign if any.
87 acc = any = 0;
105 * Set 'any' if any `digits' consumed; make it negative to indicate
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
124 any = -1;
126 any = 1;
131 if (any < 0) {
134 } else if (!any) {
[all...]
H A Dstrtoul.c60 int neg, any, cutlim; local
85 acc = any = 0;
102 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 any = -1;
105 any = 1;
110 if (any < 0) {
113 } else if (!any) {
119 *endptr = (char *)(any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/libiberty/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
97 * Skip white space and pick up leading +/- sign if any.
132 * Set any if any `digits' consumed; make it negative to indicate
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
148 any = -1;
150 any = 1;
155 if (any < 0) {
161 *endptr = (char *) (any
[all...]
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
100 any = -1;
102 any = 1;
107 if (any < 0) {
113 *endptr = (char *) (any ? s - 1 : nptr);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/pnp/isapnp/
H A Dcompat.c27 char any[8]; local
31 pnp_convert_id(any, ISAPNP_ANY_ID, ISAPNP_ANY_ID);
38 if (compare_pnp_id(card->id, id) || (memcmp(id, any, 7) == 0))
49 char any[8]; local
52 pnp_convert_id(any, ISAPNP_ANY_ID, ISAPNP_ANY_ID);
64 (memcmp(id, any, 7) == 0))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/pnp/isapnp/
H A Dcompat.c27 char any[8]; local
31 pnp_convert_id(any, ISAPNP_ANY_ID, ISAPNP_ANY_ID);
38 if (compare_pnp_id(card->id, id) || (memcmp(id, any, 7) == 0))
49 char any[8]; local
52 pnp_convert_id(any, ISAPNP_ANY_ID, ISAPNP_ANY_ID);
64 (memcmp(id, any, 7) == 0))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/frv/lib/
H A Dmemcpy.S9 * 2 of the License, or (at your option) any later version.
20 # - NOTE: must not use any stack. exception detection performs function return
124 # deal any exception generated by memcpy
H A Dmemset.S9 * 2 of the License, or (at your option) any later version.
20 # - NOTE: must not use any stack. exception detection performs function return
171 # deal any exception generated by memset
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/frv/lib/
H A Dmemcpy.S9 * 2 of the License, or (at your option) any later version.
20 # - NOTE: must not use any stack. exception detection performs function return
124 # deal any exception generated by memcpy
H A Dmemset.S9 * 2 of the License, or (at your option) any later version.
20 # - NOTE: must not use any stack. exception detection performs function return
171 # deal any exception generated by memset
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/9p/
H A Dfid.c73 * @any: if non-zero, return any fid associated with the dentry
77 static struct p9_fid *v9fs_fid_find(struct dentry *dentry, u32 uid, int any) argument
82 P9_DPRINTK(P9_DEBUG_VFS, " dentry: %s (%p) uid %d any %d\n",
83 dentry->d_name.name, dentry, uid, any);
89 if (any || fid->uid == uid) {
140 int i, n, l, clone, any, access; local
153 any = 0;
158 any = 1;
163 any
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/9p/
H A Dfid.c73 * @any: if non-zero, return any fid associated with the dentry
77 static struct p9_fid *v9fs_fid_find(struct dentry *dentry, u32 uid, int any) argument
82 P9_DPRINTK(P9_DEBUG_VFS, " dentry: %s (%p) uid %d any %d\n",
83 dentry->d_name.name, dentry, uid, any);
89 if (any || fid->uid == uid) {
140 int i, n, l, clone, any, access; local
153 any = 0;
158 any = 1;
163 any
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/sim/testsuite/sim/h8300/
H A Dadds.s27 test_cc_clear ; adds should not affect any condition codes
44 test_cc_clear ; adds should not affect any condition codes
61 test_cc_clear ; adds should not affect any condition codes
H A Dsubs.s27 test_cc_clear ; subs should not affect any condition codes
44 test_cc_clear ; subs should not affect any condition codes
61 test_cc_clear ; subs should not affect any condition codes
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/testsuite/sim/h8300/
H A Dadds.s27 test_cc_clear ; adds should not affect any condition codes
44 test_cc_clear ; adds should not affect any condition codes
61 test_cc_clear ; adds should not affect any condition codes
H A Dsubs.s27 test_cc_clear ; subs should not affect any condition codes
44 test_cc_clear ; subs should not affect any condition codes
61 test_cc_clear ; subs should not affect any condition codes
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/testsuite/sim/h8300/
H A Dadds.s27 test_cc_clear ; adds should not affect any condition codes
44 test_cc_clear ; adds should not affect any condition codes
61 test_cc_clear ; adds should not affect any condition codes

Completed in 114 milliseconds

1234567891011>>