Searched refs:type (Results 276 - 300 of 7833) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/unsorted/
H A DSIset.c1 #define E0 ((type *)10000000)
5 #define limm0 ((type)(int)&glob0)
11 #define E1 ((type *)11111111)
15 #define limm1 ((type)(int)&glob1)
23 #define type int macro
26 type r0, r1; type *p0, *p1;
30 type r0, r1; type *p0, *p1;
34 type r
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/unsorted/
H A DHIset.c1 #define E0 ((type *)10000000)
5 #define limm0 ((type)(int)&glob0)
11 #define E1 ((type *)11111111)
15 #define limm1 ((type)(int)&glob1)
23 #define type short macro
26 type r0, r1; type *p0, *p1;
30 type r0, r1; type *p0, *p1;
34 type r
[all...]
H A DQIset.c1 #define E0 ((type *)10000000)
5 #define limm0 ((type)(int)&glob0)
11 #define E1 ((type *)11111111)
15 #define limm1 ((type)(int)&glob1)
23 #define type char macro
26 type r0, r1; type *p0, *p1;
30 type r0, r1; type *p0, *p1;
34 type r
[all...]
H A DSFset.c1 #define E0 ((type *)10000000)
5 #define limm0 ((type)(int)&glob0)
11 #define E1 ((type *)11111111)
15 #define limm1 ((type)(int)&glob1)
23 #define type float macro
26 type r0, r1; type *p0, *p1;
30 type r0, r1; type *p0, *p1;
34 type r
[all...]
H A DSIset.c1 #define E0 ((type *)10000000)
5 #define limm0 ((type)(int)&glob0)
11 #define E1 ((type *)11111111)
15 #define limm1 ((type)(int)&glob1)
23 #define type int macro
26 type r0, r1; type *p0, *p1;
30 type r0, r1; type *p0, *p1;
34 type r
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/add_rvalue_reference/
H A Dvalue.cc32 VERIFY( (is_same<add_rvalue_reference<int>::type, int&&>::value) );
33 VERIFY( (is_same<add_rvalue_reference<int&&>::type, int&&>::value) );
34 VERIFY( (is_same<add_rvalue_reference<const int>::type, const int&&>::value) );
35 VERIFY( (is_same<add_rvalue_reference<int*>::type, int*&&>::value) );
36 VERIFY( (is_same<add_rvalue_reference<ClassType&&>::type, ClassType&&>::value) );
37 VERIFY( (is_same<add_rvalue_reference<ClassType>::type, ClassType&&>::value) );
38 VERIFY( (is_same<add_rvalue_reference<int(int)>::type, int(&&)(int)>::value) );
39 VERIFY( (is_same<add_rvalue_reference<void>::type, void>::value) );
40 VERIFY( (is_same<add_rvalue_reference<const void>::type, const void>::value) );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/identity/
H A Dvalue.cc32 VERIFY( (is_same<identity<int>::type, int>::value) );
33 VERIFY( (is_same<identity<int&>::type, int&>::value) );
34 VERIFY( (is_same<identity<int&&>::type, int&&>::value) );
35 VERIFY( (is_same<identity<int*>::type, int*>::value) );
36 VERIFY( (is_same<identity<ClassType&&>::type, ClassType&&>::value) );
37 VERIFY( (is_same<identity<ClassType>::type, ClassType>::value) );
38 VERIFY( (is_same<identity<int(int)>::type, int(int)>::value) );
39 VERIFY( (is_same<identity<void>::type, void>::value) );
40 VERIFY( (is_same<identity<const void>::type, const void>::value) );
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dlinux-tdep.c32 struct type *siginfo_type;
50 struct type *
54 struct type *int_type, *uint_type, *long_type, *void_ptr_type;
55 struct type *uid_type, *pid_type;
56 struct type *sigval_type, *clock_type;
57 struct type *siginfo_type, *sifields_type;
58 struct type *type; local
114 type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
115 append_composite_type_field (type, "si_pi
[all...]
H A Ddoublest.h25 struct type;
32 data type. */
43 point values to the widest type supported by the host.
90 based on the type size when FLOATFORMAT is NULL. */
92 const struct floatformat *floatformat_from_type (const struct type *type);
95 const struct type *type);
96 extern void store_typed_floating (void *addr, const struct type *type,
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/zaurus/stand/zboot/
H A Dbootinfo.c35 bi_find(int type) argument
42 if (btinfo->type == type) {
50 bi_add(struct btinfo_common *what, int type, int size) argument
55 what->type = type;
58 idx = bi_find(type);
67 bi_del(int type) argument
73 idx = bi_find(type);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/src/lib/
H A Ddefs.h49 #define NEWARRAY(type,ptr,size,where,action) do { \
50 if ((ptr = calloc(sizeof(type), (unsigned)(size))) == NULL) { \
52 where, (unsigned long)(size * sizeof(type))); \
57 #define RENEW(type,ptr,size,where,action) do { \
58 type *_newptr; \
59 _newptr = realloc(ptr, (size_t)(sizeof(type) * (size))); \
62 where, (unsigned long)(size * sizeof(type))); \
69 #define NEW(type, ptr, where, action) NEWARRAY(type, ptr, 1, where, action)
73 #define ALLOC(type,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Deabi-ci.asm34 .type __GOT_START__,@object
39 .type __GOT1_START__,@object
44 .type __GOT2_START__,@object
49 .type __FIXUP_START__,@object
54 .type __CTOR_LIST__,@object
59 .type __DTOR_LIST__,@object
64 .type __SDATA_START__,@object
66 .type _SDA_BASE_,@object
72 .type __SBSS_START__,@object
77 .type _SDA2_BASE
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/aligned_storage/
H A Dvalue.cc35 VERIFY( (sizeof(aligned_storage<4, align_c>::type) >= 4) );
36 VERIFY( (__alignof__(aligned_storage<4, align_c>::type) == align_c) );
39 VERIFY( (sizeof(aligned_storage<1, align_s>::type) >= 1) );
40 VERIFY( (__alignof__(aligned_storage<1, align_s>::type) == align_s) );
43 VERIFY( (sizeof(aligned_storage<7, align_i>::type) >= 7) );
44 VERIFY( (__alignof__(aligned_storage<7, align_i>::type) == align_i) );
47 VERIFY( (sizeof(aligned_storage<2, align_d>::type) >= 2) );
48 VERIFY( (__alignof__(aligned_storage<2, align_d>::type) == align_d) );
51 VERIFY( (sizeof(aligned_storage<20, align_ai>::type) >= 20) );
52 VERIFY( (__alignof__(aligned_storage<20, align_ai>::type)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/remove_reference/
H A Dvalue.cc32 VERIFY( (is_same<remove_reference<int&>::type, int>::value) );
33 VERIFY( (is_same<remove_reference<int>::type, int>::value) );
34 VERIFY( (is_same<remove_reference<const int&>::type, const int>::value) );
35 VERIFY( (is_same<remove_reference<int*&>::type, int*>::value) );
36 VERIFY( (is_same<remove_reference<ClassType&>::type, ClassType>::value) );
37 VERIFY( (is_same<remove_reference<ClassType>::type, ClassType>::value) );
38 VERIFY( (is_same<remove_reference<int(&)(int)>::type, int(int)>::value) );
39 VERIFY( (is_same<remove_reference<int&&>::type, int>::value) );
40 VERIFY( (is_same<remove_reference<int>::type, int>::value) );
41 VERIFY( (is_same<remove_reference<const int&&>::type, cons
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/3_function_objects/
H A Dresult_of.cc32 template<typename F> struct result { typedef int type; }; typedef in struct:int_result_of::result
38 template<typename F> struct result { typedef float type; }; typedef in struct:int_result_type_and_float_result_of::result
56 VERIFY((is_same<result_of<int_result_type(float)>::type, int>::value));
57 VERIFY((is_same<result_of<int_result_of(double)>::type, int>::value));
58 VERIFY((is_same<result_of<int_result_of(void)>::type, void>::value));
59 VERIFY((is_same<result_of<const int_result_of(double)>::type, int>::value));
60 VERIFY((is_same<result_of<volatile int_result_of(void)>::type, void>::value));
61 VERIFY((is_same<result_of<int_result_type_and_float_result_of(char)>::type, int>::value));
62 VERIFY((is_same<result_of<func_ptr(char, float)>::type, int>::value));
63 VERIFY((is_same<result_of<func_ref(char, float)>::type, in
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/3_function_objects/
H A Dresult_of.cc33 template<typename F> struct result { typedef int type; }; typedef in struct:int_result_of::result
39 template<typename F> struct result { typedef float type; }; typedef in struct:int_result_type_and_float_result_of::result
57 VERIFY((is_same<result_of<int_result_type(float)>::type, int>::value));
58 VERIFY((is_same<result_of<int_result_of(double)>::type, int>::value));
59 VERIFY((is_same<result_of<int_result_of(void)>::type, void>::value));
60 VERIFY((is_same<result_of<const int_result_of(double)>::type, int>::value));
61 VERIFY((is_same<result_of<volatile int_result_of(void)>::type, void>::value));
62 VERIFY((is_same<result_of<int_result_type_and_float_result_of(char)>::type, int>::value));
63 VERIFY((is_same<result_of<func_ptr(char, float)>::type, int>::value));
64 VERIFY((is_same<result_of<func_ref(char, float)>::type, in
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-ifunc/
H A Difunc-5-i386.s2 .type foo, %gnu_indirect_function
4 .type foo, @function
8 .type start,"function"
11 .type _start,"function"
14 .type __start,"function"
17 .type __start,"function"
H A Difunc-5-local-i386.s2 .type foo, %gnu_indirect_function
3 .type foo, @function
7 .type start,"function"
10 .type _start,"function"
13 .type __start,"function"
16 .type __start,"function"
H A Difunc-6-i386.s2 .type foo, %gnu_indirect_function
4 .type foo, @function
9 .type start,"function"
12 .type _start,"function"
15 .type __start,"function"
18 .type __start,"function"
H A Difunc-7-i386.s2 .type foo, %gnu_indirect_function
4 .type foo, @function
9 .type start,"function"
12 .type _start,"function"
15 .type __start,"function"
18 .type __start,"function"
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/tc1/
H A Ddr161.C3 // DR161: Access to protected nested type
9 typedef int type; typedef in struct:N1::A
16 A::type t;
21 A::type t;
32 typedef int type; typedef in struct:N2::A
40 typename A<T>::type t;
45 typename A<T>::type t;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Dtypedef34.C7 typedef T type; typedef in struct:remove_reference
18 typedef typename remove_reference<Seq>::type seq;
19 typedef forward_as_lref<typename seq::seq_type> type; //#0 typedef in struct:apply1
25 typedef forward_as_lref<typename remove_reference<Seq>::type::seq_type> type; //#1 typedef in struct:apply
36 apply<reverse_view >::type a2;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.law/
H A Doperators28.C8 int type; member in class:new_test
10 void* operator new(size_t sz, int count, int type);
13 void* new_test::operator new(size_t sz, int count, int type) argument
17 printf("%d %d %d\n", sz, count, type);
20 ((new_test *)p)->type = type;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/decay/requirements/
H A Dtypedefs.cc33 typedef decay<bool>::type test1_type;
37 typedef decay<const int>::type test2_type;
40 typedef decay<int[4]>::type test3_type;
41 VERIFY( (is_same<test3_type, std::remove_extent<int[4]>::type*>::value) );
44 typedef decay<fn_type>::type test4_type;
45 VERIFY( (is_same<test4_type, std::add_pointer<fn_type>::type>::value) );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/4_metaprogramming/add_pointer/
H A Dvalue.cc33 VERIFY( (is_same<add_pointer<int>::type, int*>::value) );
34 VERIFY( (is_same<add_pointer<int*>::type, int**>::value) );
35 VERIFY( (is_same<add_pointer<const int>::type, const int*>::value) );
36 VERIFY( (is_same<add_pointer<int&>::type, int*>::value) );
37 VERIFY( (is_same<add_pointer<ClassType*>::type, ClassType**>::value) );
38 VERIFY( (is_same<add_pointer<ClassType>::type, ClassType*>::value) );

Completed in 310 milliseconds

<<11121314151617181920>>