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

1 2 3 4 5

  /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/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/valgrind/coregrind/m_debuginfo/
priv_misc.h 92 Int ML_(read_Int)( const UChar* data );
95 DEF_READ(Int);
  /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/valgrind/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/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;
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...]
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/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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
VarType.java 60 Int;
  /external/valgrind/none/tests/arm64/
memory.c 12 typedef unsigned short int UShort;
13 typedef unsigned int UInt;
14 typedef signed int Int;
16 typedef signed long long int Long;
17 typedef unsigned long long int ULong;
42 Int i;
127 do { int i; for (i = 0; i < sizeof(area); i++) \
173 printf("LDR (literal, int reg)\n");
305 static void show_block_xor ( UChar* block1, UChar* block2, Int n
    [all...]
cvtf_imm.c 5 typedef signed long long int Long;
6 typedef unsigned long long int ULong;
8 typedef signed int Int;
9 typedef unsigned int UInt;
11 typedef union { double d64; float f32[2]; unsigned long long int i64; } U;
68 __attribute__((noinline)) double do_scvtf_d_w_imm1 ( Int x )
76 __attribute__((noinline)) double do_scvtf_d_w_imm16 ( Int x )
84 __attribute__((noinline)) double do_scvtf_d_w_imm32 ( Int x )
93 __attribute__((noinline)) double do_ucvtf_d_w_imm1 ( Int x
    [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 28 Int = 1L << 0,
33 // This is for attribute in which "default value" (0 for int type and empty
45 unsigned int type() const { return m_Type; }
47 void setType(unsigned int pType) { m_Type = pType; }
49 unsigned int getIntValue() const { return m_IntValue; }
51 void setIntValue(unsigned int pIntValue) { m_IntValue = pIntValue; }
73 inline bool isIntValue() const { return (m_Type & Int); }
105 unsigned int m_Type;
107 unsigned int m_IntValue;
  /external/valgrind/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;
106 static inline Bool toBool ( Int x ) {
107 Int r = (x == 0) ? False : True;
110 static inline UChar toUChar ( Int x ) {
114 static inline HChar toHChar ( Int x ) {
118 static inline UShort toUShort ( Int x )
    [all...]
  /external/valgrind/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);

Completed in 595 milliseconds

1 2 3 4 5