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

1 2 3 4

  /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/Index/Inputs/
preamble-with-error.h 1 typedef int Int;
3 extern Int *const www;
  /external/clang/test/CXX/basic/basic.start/basic.start.main/
p2.cpp 24 typedef int Int;
28 Int main(Int argc, Carp argv[]) {
34 typedef int Int;
38 Int main(Int argc, Carp argv[], Char *env[]) {
44 int main() {
49 static int main() { // expected-error {{'main' is not allowed to be declared static}
    [all...]
  /external/valgrind/main/none/tests/arm/
intdiv.c 4 typedef signed int Int;
5 typedef unsigned int UInt;
17 __attribute__((noinline)) Int do_sdiv32 ( Int x, Int y )
30 Int rs = do_sdiv32(x,y);
34 int main ( void )
  /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/jsoncpp/include/json/
config.h 56 // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for integer
76 typedef int Int;
77 typedef unsigned int UInt;
79 typedef int LargestInt;
80 typedef unsigned int LargestUInt;
88 typedef long long int Int64;
89 typedef unsigned long long int UInt64;
  /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/Index/
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...]
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;
28 typedef decltype(sizeof(int)) size_t;
60 Foo(std::initializer_list<int> il);
85 // CHECK-WITH-OVERRIDE: Identifier: "Int" [19:19 - 19:22] TypeRef=Int:16:1
    [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/clang/test/PCH/
cxx-templates.cpp 24 typedef int type;
30 void test(const int (&a6)[17]) {
31 int x = templ_f<int, 5>(3);
34 S<int, char>::partial();
35 S<int, float>::explicit_special();
41 S3<int> s3;
46 S6<const int[17]>::t2 b6 = a6;
49 template struct S4<int>;
51 S7<int[5]> s7_5
    [all...]
  /external/clang/test/Sema/
overloadable.c 3 int var __attribute__((overloadable)); // expected-error{{'overloadable' attribute only applies to functions}}
6 int *f(int) __attribute__((overloadable)); // expected-note 2{{previous overload of function is here}}
8 int *f(int); // expected-error{{redeclaration of 'f' must have the 'overloadable' attribute}} \
12 void test_f(int iv, float fv, double dv) {
13 int *ip = f(iv);
18 int *accept_funcptr(int (*)()) __attribute__((overloadable)); // \
20 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[];
43 int c;
58 const int seventeen = 17;
59 typedef int Int;
62 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are (…)
    [all...]
  /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;
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeValue.h 30 Int = 1L << 0,
35 // This is for attribute in which "default value" (0 for int type and empty
48 unsigned int type() const
51 void setType(unsigned int pType)
54 unsigned int getIntValue() const
57 void setIntValue(unsigned int pIntValue)
81 { return (m_Type & Int); }
114 unsigned int m_Type;
116 unsigned int m_IntValue;
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 31 Constant.Int = i;
54 int64_t Int;
70 return Constant.Int == other.Constant.Int;
83 int64_t getInt() const { return Constant.Int; }
  /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;
100 static inline Bool toBool ( Int x ) {
101 Int r = (x == 0) ? False : True;
104 static inline UChar toUChar ( Int x ) {
108 static inline HChar toHChar ( Int x ) {
112 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/libedit/src/
chartype.h 75 #define Int wint_t
112 static inline int
115 int w = wcwidth(c);
129 #define Int int
193 protected Char **ct_decode_argv(int, const char *[], ct_buffer_t *);
227 protected int ct_visual_width(Char);
250 protected int ct_chr_class(Char c);
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 42 switch((int)Fn->arg_begin()->getType()->getTypeID()) {
564 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Ty);
567 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 )

Completed in 1040 milliseconds

1 2 3 4