HomeSort by relevance Sort by last modified time
    Searched defs:Int (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/clang/test/ASTMerge/Inputs/
function2.c 1 typedef int Int;
2 void f0(Int);
3 void f1(Int, double);
4 void f2(int, int);
5 void f3(int);
7 int f5(int) __attribute__((const));
struct1.c 1 typedef int Int;
6 Int field1;
14 Int field1;
15 int field2;
21 struct S2 { int i; float f; } x2;
24 struct S3 { int i; float f; double d; } x3;
27 struct S4 { int i; } x4;
30 struct S5 { int i : 8; unsigned j : 8; } x5;
33 struct S6 { int i : 8; unsigned j : 8; } x6
    [all...]
  /external/clang/test/CXX/basic/basic.start/basic.start.main/
p2.cpp 22 typedef int Int;
26 Int main(Int argc, Carp argv[]) {
32 typedef int Int;
36 Int main(Int argc, Carp argv[], Char *env[]) {
42 int main() {
47 static int main() { // expected-error {{'main' is not allowed to be declared static}
    [all...]
  /external/clang/test/CXX/class/class.friend/
p1.cpp 5 int intfield;
12 typedef int Int;
13 Int typedeffed_member();
19 int myglobal;
32 friend int Outer::Inner::intfield; // expected-error {{friends can only be classes or functions}}
33 friend int Outer::Inner::missing_field; //expected-error {{friends can only be classes or functions}}
34 friend int myoperation(float); // okay
35 friend int myglobal; // expected-error {{friends can only be classes or functions}}
53 friend int Base::typedeffed_member(); // okay: should look through typede
    [all...]
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 2 int f(Args ...args) {
7 int a;
10 typedef int Integer;
16 typedef int Int;
19 virtual void foo(Int);
23 virtual void foo(Int) override;
44 // CHECK-WITH-OVERRIDE: Identifier: "Int" [19:19 - 19:22] TypeRef=Int:16:13
51 // CHECK-WITH-OVERRIDE: Identifier: "Int" [23:20 - 23:23] TypeRef=Int:16:1
    [all...]
annotate-tokens.c 1 typedef int T;
2 struct X { int a, b; };
12 typedef int Int;
13 enum Color g(int i, ...) {
15 (void)__builtin_va_arg(va, Int);
16 (void)__builtin_types_compatible_p(Int, Int);
36 __attribute__((unavailable)) Int __attribute__((unavailable)) test() __attribute__((unavailable));
39 int x;
    [all...]
  /external/clang/test/CodeGen/
pointer-arithmetic.c 3 typedef int Int;
5 int f0(int *a, Int *b) { return a - b; }
7 int f1(const char *a, char *b) { return b - a; }
11 void *f2(void *a, int b) { return a + b; }
12 void *f2_0(void *a, int b) { return &a[b]; }
13 void *f2_1(void *a, int b) { return (a += b); }
14 void *f3(int a, void *b) { return a + b;
    [all...]
  /external/clang/test/Sema/
overloadable.c 3 int var __attribute__((overloadable)); // expected-error{{'overloadable' attribute can only be applied to a function}}
5 int *f(int) __attribute__((overloadable)); // expected-note 2{{previous overload of function is here}}
7 int *f(int); // expected-error{{redeclaration of 'f' must have the 'overloadable' attribute}} \
11 void test_f(int iv, float fv, double dv) {
12 int *ip = f(iv);
17 int *accept_funcptr(int (*)()) __attribute__((overloadable)); // \
19 float *accept_funcptr(int (*)(int, double)) __attribute__((overloadable)); //
    [all...]
cast.c 20 typedef int Int;
24 typedef _Complex int CInt;
33 (void) (Int) v;
45 void testInt(Int v) {
47 (void) (Int) v;
55 (void) (VoidPtr) v; // expected-warning{{cast to 'VoidPtr' (aka 'void *') from smaller integer type 'Int' (aka 'int')}}
56 (void) (CharPtr) v; // expected-warning{{cast to 'CharPtr' (aka 'char *') from smaller integer type 'Int' (aka 'int')}}
    [all...]
MicrosoftExtensions.c 6 int a[]; /* expected-warning {{flexible array member 'a' in otherwise empty struct is a Microsoft extension}} */
10 int l;
12 int c1[]; /* expected-warning {{flexible array member 'c1' in a union is a Microsoft extension}} */
19 int l;
20 int D[];
46 int c;
61 const int seventeen = 17;
62 typedef int Int;
65 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are (…)
    [all...]
  /external/valgrind/main/none/tests/amd64/
pcmpxstrx64.c 10 typedef unsigned int UInt;
11 typedef signed int Int;
13 typedef unsigned long long int ULong;
20 Int i;
27 Int i;
304 int main ( void )
pcmpxstrx64w.c 11 typedef unsigned int UInt;
12 typedef signed int Int;
14 typedef unsigned long long int ULong;
21 Int i;
28 Int i;
305 int main ( void )
aes.c 6 typedef unsigned int UInt;
7 typedef signed int Int;
9 typedef unsigned long long int ULong;
31 Int i;
49 static int tohex (int nib)
58 Int i;
224 static void AESKEYGENASSIST(int imm, char* s_argL, char* s_exp)
282 int imm; // only for aeskeygenassis
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubCall.h 61 JITStubCall(JIT* jit, int (JIT_STUB *stub)(STUB_ARGS_DECLARATION))
64 , m_returnType(Int)
72 , m_returnType(Int)
215 ASSERT(m_returnType == Value || m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
217 ASSERT(m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
230 enum { Void, VoidPtr, Int, Value, Cell } m_returnType;
  /external/clang/test/PCH/
cxx-templates.cpp 16 typedef int type;
22 void test(const int (&a6)[17]) {
23 int x = templ_f<int, 5>(3);
26 S<int, char>::partial();
27 S<int, float>::explicit_special();
33 S3<int> s3;
38 S6<const int[17]>::t2 b6 = a6;
41 template struct S4<int>;
43 S7<int[5]> s7_5
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
VarType.java 60 Int;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pv_amr_wb_type_defs.h 82 ; Define generic signed and unsigned int
84 typedef signed int Int;
86 typedef unsigned int UInt;
132 typedef Int Flag;
136 typedef Int Bool;
  /external/clang/test/SemaCXX/
explicit.cpp 4 A(int);
8 explicit B(int);
11 B::B(int) { }
25 operator int();
32 void f(int);
50 explicit operator int() const;
60 int i1 = (int)z;
61 int i2 = int(z)
    [all...]
MicrosoftExtensions.cpp 15 void r6() throw(int); // expected-warning {{exception specification in declaration does not match previous declaration}}
42 int a;
45 int c;
50 int e;
51 int ee;
54 typedef int D; // expected-warning {{types declared in an anonymous union are a Microsoft extension}}
60 int a2;
64 int c2;
69 int e2;
70 int ee2
    [all...]
  /external/llvm/unittests/Support/
IntegersSubsetTest.cpp 20 class Int : public APInt {
22 Int() {}
23 Int(uint64_t V) : APInt(64, V) {}
24 Int(const APInt& Src) : APInt(Src) {}
31 typedef IntRange<Int> Range;
32 typedef IntegersSubsetGeneric<Int> Subset;
33 typedef IntegersSubsetMapping<unsigned,Subset,Int> Mapping;
45 Ranges.push_back(Range(Int(i*10), Int(i*10 + 8)));
50 EXPECT_EQ(TheSubset.getItem(i).getLow(), Int(i*10))
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_basictypes.h 55 typedef unsigned int UInt;
56 typedef signed int Int;
59 typedef unsigned long long int ULong;
60 typedef signed long long int Long;
90 static inline Bool toBool ( Int x ) {
91 Int r = (x == 0) ? False : True;
94 static inline UChar toUChar ( Int x ) {
98 static inline HChar toHChar ( Int x ) {
102 static inline UShort toUShort ( Int x )
    [all...]
  /external/valgrind/main/memcheck/tests/amd64/
sse_memory.c 13 typedef unsigned int UInt;
14 typedef signed int Int;
39 static void randomise ( UChar* p, Int n )
41 Int i;
48 Int i;
68 Int i;
70 printf("%02x", (Int)(*v)[i]);
75 Int i;
77 printf("%02x", (Int)( ((*v)[i]) & ((*mask)[i]) ))
    [all...]
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 42 switch((int)Fn->arg_begin()->getType()->getTypeID()) {
557 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Ty);
560 Op = CallInst::Create(Int, Op, CI->getName(), CI);
  /external/valgrind/main/VEX/useful/
show_fp_state.c 10 typedef unsigned int UInt;
11 typedef unsigned long long int ULong;
15 typedef int Int;
16 typedef long long int Long;
96 Int i, j, k;
153 int i;
165 int main ( void )
smchash.c 6 typedef signed int Int;
7 typedef unsigned int UInt;
8 typedef unsigned long long int Addr64;
10 typedef unsigned long int UWord;
24 Int nbytes;
32 Int r;
50 Int nToAlloc = gb->nbytes + (gb->ga & 3);
234 Int cmp_UInt_ps ( UInt* p1, UInt* p2 ) {
240 Int nSetBits ( UInt w
    [all...]

Completed in 391 milliseconds

1 2 3