Searched refs:base (Results 176 - 200 of 1274) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dinit-ref3.C20 class base { class
22 base(void) { } function in class:base
23 ~base(void) { }
27 class foo : public base {
37 void func2(base & b) {
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr14029.C11 int *const & base() const { return ptr; } function in struct:Iterator
17 int trip_count = (last.base() - first.base()) >> 1;
27 switch(last.base() - first.base()) {
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/unique_ptr/assign/
H A Dassign_neg.cc23 struct base { virtual ~base() {} }; struct
24 struct derived : base {};
33 std::unique_ptr<base> p3(new base);
/haiku-buildtools/gcc/gmp/mpz/
H A Dget_str.c1 /* mpz_get_str (string, base, mp_src) -- Convert the multiple precision
2 number MP_SRC to a string STRING of base BASE. If STRING is NULL
31 mpz_get_str (char *res_str, int base, mpz_srcptr x) argument
43 if (base >= 0)
46 if (base == 0)
47 base = 10;
48 else if (base > 36)
51 if (base > 62)
57 base = -base;
[all...]
H A Dout_str.c1 /* mpz_out_str(stream, base, integer) -- Output to STREAM the multi prec.
2 integer INTEGER in base BASE.
26 mpz_out_str (FILE *stream, int base, mpz_srcptr x) argument
40 if (base >= 0)
43 if (base == 0)
44 base = 10;
45 else if (base > 36)
48 if (base > 62)
54 base = -base;
[all...]
/haiku-buildtools/legacy/gcc/libiberty/
H A Dstrtol.c65 strtol(nptr, endptr, base)
68 register int base;
78 * If base is 0, allow 0x for hex and 0 for octal, else
79 * assume decimal; if base is already 16, allow 0x.
89 if ((base == 0 || base == 16) &&
93 base = 16;
95 if (base == 0)
96 base = c == '0' ? 8 : 10;
101 * base
[all...]
H A Dstrtoul.c53 strtoul(nptr, endptr, base)
56 register int base;
75 if ((base == 0 || base == 16) &&
79 base = 16;
81 if (base == 0)
82 base = c == '0' ? 8 : 10;
83 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
84 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
92 if (c >= base)
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/i386/
H A Difunc-3.s8 .long bar1-base
21 .long bar1-base
25 .long abs1-base
32 .long abs1-base
41 .long bar2-base
53 .long bar2-base
55 .equ base,0xabc0
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dnew2.C14 struct base { struct
17 base () function in struct:base
26 class derived : public base {
36 base* base_ptr;
40 base_ptr = new base;
55 void base::operator delete (void* p)
59 void *base::operator new (size_t size)
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dproc_ptr_comp_2.f9023 integer :: base
29 base=obj%ppc(2)
30 if (base/=4) call abort
35 base=obj%ppc1(4)
36 if (base/=8) call abort
41 base=f(6)
42 if (base/=12) call abort
H A Dgeneric_15.f9017 SUBROUTINE odfamilycnames(base,nfam,cnames)
18 TYPE(odbase),INTENT(in) :: base local in subroutine:odfamilycnames
24 SUBROUTINE odfamilycname(base,pos,cname)
25 TYPE(odbase),INTENT(in) :: base local in subroutine:odfamilycname
35 TYPE(odbase) :: base variable in program:main
39 CALL odfname(base,i,cname)
41 CALL odfname(base,i,cnames)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dnot_special.C20 struct base struct
22 base() {} function in struct:base
23 base(const base&) {++copy;} argument
24 base& operator=(const base&) {++assign; return *this;} argument
28 : base
38 derived d2(static_cast<derived&&>(d)); // should not call base::(const base&)
42 d2 = static_cast<derived&&>(d); // should not call base
[all...]
/haiku-buildtools/gcc/gcc/fortran/
H A Dconstructor.c46 node_copy (splay_tree_node node, void *base) argument
51 c->base = (gfc_constructor_base)base;
65 node_copy_and_insert (splay_tree_node node, void *base) argument
68 gfc_constructor_insert ((gfc_constructor_base*)base,
69 node_copy (node, base), n);
78 c->base = NULL;
95 gfc_constructor_copy (gfc_constructor_base base) argument
99 if (!base)
103 splay_tree_foreach (base, node_copy_and_inser
110 gfc_constructor_free(gfc_constructor_base base) argument
118 gfc_constructor_append(gfc_constructor_base *base, gfc_constructor *c) argument
129 gfc_constructor_append_expr(gfc_constructor_base *base, gfc_expr *e, locus *where) argument
142 gfc_constructor_insert(gfc_constructor_base *base, gfc_constructor *c, int n) argument
160 gfc_constructor_insert_expr(gfc_constructor_base *base, gfc_expr *e, locus *where, int n) argument
173 gfc_constructor_lookup(gfc_constructor_base base, int offset) argument
205 gfc_constructor_lookup_expr(gfc_constructor_base base, int offset) argument
230 gfc_constructor_first(gfc_constructor_base base) argument
265 gfc_constructor_lookup_next(gfc_constructor_base base, int offset) argument
[all...]
/haiku-buildtools/binutils/libiberty/
H A Dstrtol.c34 char **@var{endptr}, int @var{base})
36 char **@var{endptr}, int @var{base})
39 long integer value according to the given @var{base}, which must be
40 between 2 and 36 inclusive, or be the special value 0. If @var{base}
42 to indicate bases 8 and 16, respectively, else default to base 10.
43 When the base is 16 (either explicitly or implicitly), a prefix of
90 strtol(const char *nptr, char **endptr, register int base) argument
100 * If base is 0, allow 0x for hex and 0 for octal, else
101 * assume decimal; if base is already 16, allow 0x.
111 if ((base
[all...]
H A Dstrtoul.c61 strtoul(const char *nptr, char **endptr, register int base) argument
80 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == '0' ? 8 : 10;
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
97 if (c >= base)
103 acc *= base;
[all...]
H A Dstrtoll.c34 char **@var{endptr}, int @var{base})
36 const char *@var{string}, char **@var{endptr}, int @var{base})
39 long long integer value according to the given @var{base}, which must be
40 between 2 and 36 inclusive, or be the special value 0. If @var{base}
42 to indicate bases 8 and 16, respectively, else default to base 10.
43 When the base is 16 (either explicitly or implicitly), a prefix of
98 strtoll(const char *nptr, char **endptr, register int base) argument
108 * If base is 0, allow 0x for hex and 0 for octal, else
109 * assume decimal; if base is already 16, allow 0x.
119 if ((base
[all...]
H A Dstrtoull.c66 strtoull(const char *nptr, char **endptr, register int base) argument
85 if ((base == 0 || base == 16) &&
89 base = 16;
91 if (base == 0)
92 base = c == '0' ? 8 : 10;
93 cutoff = (ullong_type)ULLONG_MAX / (ullong_type)base;
94 cutlim = (ullong_type)ULLONG_MAX % (ullong_type)base;
102 if (c >= base)
108 acc *= base;
[all...]
/haiku-buildtools/gcc/libiberty/
H A Dstrtol.c34 char **@var{endptr}, int @var{base})
36 char **@var{endptr}, int @var{base})
39 long integer value according to the given @var{base}, which must be
40 between 2 and 36 inclusive, or be the special value 0. If @var{base}
42 to indicate bases 8 and 16, respectively, else default to base 10.
43 When the base is 16 (either explicitly or implicitly), a prefix of
90 strtol(const char *nptr, char **endptr, register int base) argument
100 * If base is 0, allow 0x for hex and 0 for octal, else
101 * assume decimal; if base is already 16, allow 0x.
111 if ((base
[all...]
H A Dstrtoul.c61 strtoul(const char *nptr, char **endptr, register int base) argument
80 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == '0' ? 8 : 10;
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
97 if (c >= base)
103 acc *= base;
[all...]
H A Dstrtoll.c34 char **@var{endptr}, int @var{base})
36 const char *@var{string}, char **@var{endptr}, int @var{base})
39 long long integer value according to the given @var{base}, which must be
40 between 2 and 36 inclusive, or be the special value 0. If @var{base}
42 to indicate bases 8 and 16, respectively, else default to base 10.
43 When the base is 16 (either explicitly or implicitly), a prefix of
98 strtoll(const char *nptr, char **endptr, register int base) argument
108 * If base is 0, allow 0x for hex and 0 for octal, else
109 * assume decimal; if base is already 16, allow 0x.
119 if ((base
[all...]
H A Dstrtoull.c66 strtoull(const char *nptr, char **endptr, register int base) argument
85 if ((base == 0 || base == 16) &&
89 base = 16;
91 if (base == 0)
92 base = c == '0' ? 8 : 10;
93 cutoff = (ullong_type)ULLONG_MAX / (ullong_type)base;
94 cutlim = (ullong_type)ULLONG_MAX % (ullong_type)base;
102 if (c >= base)
108 acc *= base;
[all...]
/haiku-buildtools/legacy/binutils/libiberty/
H A Dstrtol.c33 @deftypefn Supplemental {long int} strtol (const char *@var{string}, char **@var{endptr}, int @var{base})
34 @deftypefnx Supplemental {unsigned long int} strtoul (const char *@var{string}, char **@var{endptr}, int @var{base})
37 long integer value according to the given @var{base}, which must be
38 between 2 and 36 inclusive, or be the special value 0. If @var{base}
40 to indicate bases 8 and 16, respectively, else default to base 10.
41 When the base is 16 (either explicitly or implicitly), a prefix of
88 strtol(const char *nptr, char **endptr, register int base) argument
98 * If base is 0, allow 0x for hex and 0 for octal, else
99 * assume decimal; if base is already 16, allow 0x.
109 if ((base
[all...]
H A Dstrtoul.c61 strtoul(const char *nptr, char **endptr, register int base) argument
80 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == '0' ? 8 : 10;
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
97 if (c >= base)
103 acc *= base;
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/arm/
H A Dsrs-arm.l2 [^:]*:12: Error: SRS base register must be r13 -- `srsdb r4,#13'
3 [^:]*:13: Error: SRS base register must be r13 -- `srsda r4,#13'
4 [^:]*:14: Error: SRS base register must be r13 -- `srsia r4,#13'
5 [^:]*:15: Error: SRS base register must be r13 -- `srsib r4,#13'
6 [^:]*:24: Error: SRS base register must be r13 -- `srsea r4,#13'
7 [^:]*:25: Error: SRS base register must be r13 -- `srsfd r4,#13'
8 [^:]*:26: Error: SRS base register must be r13 -- `srsfa r4,#13'
9 [^:]*:27: Error: SRS base register must be r13 -- `srsed r4,#13'
10 [^:]*:30: Error: SRS base register must be r13 -- `srs r4,#13'
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr49938.C5 namespace base { namespace
18 bool CheckSignature (const base::StringPiece& name, const
19 base::StringPiece& zone, const
20 base::StringPiece& signature, uint16 rrtype,
21 const std::vector<base::StringPiece>& rrdatas);
33 bool DNSSECKeySet::CheckSignature (const base::StringPiece& name,
34 const base::StringPiece& zone, const base::StringPiece& signature,
35 uint16 rrtype, const std::vector<base::StringPiece>& rrdatas)
38 for (std::vector<base
[all...]

Completed in 129 milliseconds

1234567891011>>