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

1 2 3 4 5 6 7 8 91011

  /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));
  /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...]
  /prebuilts/go/darwin-x86/src/crypto/rand/
util.go 24 // coprime to all the elements of smallPrimes without further big.Int
26 var smallPrimesProduct = new(big.Int).SetUint64(16294579238595022365)
31 func Prime(rand io.Reader, bits int) (p *big.Int, err error) {
43 p = new(big.Int)
45 bigMod := new(big.Int)
54 bytes[0] &= uint8(int(1<<b) - 1)
105 // Int returns a uniform random value in [0, max). It panics if max <= 0.
106 func Int(rand io.Reader, max *big.Int) (n *big.Int, err error)
    [all...]
  /prebuilts/go/linux-x86/src/crypto/rand/
util.go 24 // coprime to all the elements of smallPrimes without further big.Int
26 var smallPrimesProduct = new(big.Int).SetUint64(16294579238595022365)
31 func Prime(rand io.Reader, bits int) (p *big.Int, err error) {
43 p = new(big.Int)
45 bigMod := new(big.Int)
54 bytes[0] &= uint8(int(1<<b) - 1)
105 // Int returns a uniform random value in [0, max). It panics if max <= 0.
106 func Int(rand io.Reader, max *big.Int) (n *big.Int, err error)
    [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 )
v8memory_a.c 22 typedef unsigned short int UShort;
23 typedef unsigned int UInt;
24 typedef signed int Int;
26 typedef signed long long int Long;
27 typedef unsigned long long int ULong;
42 Int i;
50 static void show_block_xor ( UChar* block1, UChar* block2, Int n )
52 Int i;
84 int i;
    [all...]
v8memory_t.c 22 typedef unsigned short int UShort;
23 typedef unsigned int UInt;
24 typedef signed int Int;
26 typedef signed long long int Long;
27 typedef unsigned long long int ULong;
42 Int i;
50 static void show_block_xor ( UChar* block1, UChar* block2, Int n )
52 Int i;
84 int i;
    [all...]
  /external/clang/test/CXX/class/class.friend/
p1.cpp 7 int intfield;
14 typedef int Int;
15 Int typedeffed_member();
21 int myglobal;
34 friend int Outer::Inner::intfield; // expected-error {{friends can only be classes or functions}}
35 friend int Outer::Inner::missing_field; //expected-error {{friends can only be classes or functions}}
36 friend int myoperation(float); // okay
37 friend int myglobal; // expected-error {{friends can only be classes or functions}}
58 friend int Base::typedeffed_member(); // okay: should look through typede
    [all...]
  /external/jsoncpp/include/json/
config.h 65 // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for
91 typedef int Int;
92 typedef unsigned int UInt;
94 typedef int LargestInt;
95 typedef unsigned int LargestUInt;
103 typedef long long int Int64;
104 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/valgrind/none/tests/arm64/
crc32.c 13 typedef unsigned short int UShort;
14 typedef unsigned int UInt;
15 typedef signed int Int;
17 typedef signed long long int Long;
18 typedef unsigned long long int ULong;
53 int main ( void )
  /prebuilts/go/darwin-x86/test/alias3.dir/
a.go 15 Int int
16 IntAlias = Int
19 Int
36 M1(Int) float64
  /prebuilts/go/darwin-x86/test/interface/
bigdata.go 51 type Int int32
52 func (z Int) M() int64 { return int64(z) }
57 var int Int = 12345
63 test("int", int)
64 test("&int", &int)
  /prebuilts/go/linux-x86/test/alias3.dir/
a.go 15 Int int
16 IntAlias = Int
19 Int
36 M1(Int) float64
  /prebuilts/go/linux-x86/test/interface/
bigdata.go 51 type Int int32
52 func (z Int) M() int64 { return int64(z) }
57 var int Int = 12345
63 test("int", int)
64 test("&int", &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 )
  /libcore/luni/src/test/java/libcore/java/nio/file/
InvalidPathExceptionTest.java 25 public void test_Constructor$String$String$Int() {
28 int index = 0;
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 22 bool Int(int i) { return out_.Int(i); }
47 int main(int, char*[]) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 10 bool Int(int i) { cout << "Int(" << i << ")" << endl; return true; }
29 int main() {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
iface_test.go 14 var x int
20 if got := i.(int); got != 5 {
30 if got := i.(int); got != 5 {
43 func e2int3(i interface{}) int {
45 return i.(int)
56 func e2int4(i interface{}, p *int) int {
58 return i.(int)
61 type Int int
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15528.go 19 func (x *RWS) Read(p []byte) (n int, err error) { return }
20 func (x *RWS) Write(p []byte) (n int, err error) { return }
21 func (x *RWS) Seek(offset int64, whence int) (n int64, err error) { return }
33 {1, "int 1"},
34 {int(1), "int 1"},
35 {Int(int(2)), "main.Int Int=2"}
    [all...]
  /prebuilts/go/darwin-x86/test/
typeswitch.go 15 Int
27 a int
32 var c = make(chan int)
34 var a = []int{0, 1, 2, 3}
36 var m = make(map[string]int)
45 func f(i int) interface{} {
49 case Int:
74 case int:
75 assert(x == 7 && i == Int, "int")
    [all...]

Completed in 622 milliseconds

1 2 3 4 5 6 7 8 91011