HomeSort by relevance Sort by last modified time
    Searched refs:int64 (Results 51 - 75 of 2223) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/testing/iotest/
writer.go 11 func TruncateWriter(w io.Writer, n int64) io.Writer {
17 n int64
26 if int64(n) > t.n {
30 t.n -= int64(n)
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl_386.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
21 func setTimeval(sec, usec int64) Timeval {
syscall_nacl_amd64p32.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
21 func setTimeval(sec, usec int64) Timeval {
syscall_nacl_arm.go 8 Sec int64
13 Sec int64
17 func setTimespec(sec, nsec int64) Timespec {
21 func setTimeval(sec, usec int64) Timeval {
  /prebuilts/go/linux-x86/src/testing/iotest/
writer.go 11 func TruncateWriter(w io.Writer, n int64) io.Writer {
17 n int64
26 if int64(n) > t.n {
30 t.n -= int64(n)
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream.h 172 virtual int64 ByteCount() const = 0;
227 virtual int64 ByteCount() const = 0;
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream.h 172 virtual int64 ByteCount() const = 0;
227 virtual int64 ByteCount() const = 0;
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
zero_copy_stream.h 172 virtual int64 ByteCount() const = 0;
227 virtual int64 ByteCount() const = 0;
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream.h 172 virtual int64 ByteCount() const = 0;
227 virtual int64 ByteCount() const = 0;
  /external/regex-re2/re2/testing/
re2_arg_test.cc 17 int64 value;
28 // string integer value short ushort int uint int64 uint64
60 static_cast<int64>(0xFFFFFFFF80000000LL),
74 { "-9223372036854775808", static_cast<int64>(0x8000000000000000LL),
78 { "9223372036854775808", static_cast<int64>(9223372036854775808ULL),
80 { "18446744073709551615", static_cast<int64>(18446744073709551615ULL),
126 PARSE_FOR_TYPE(int64, 4);
  /prebuilts/go/darwin-x86/test/
divmod.go 89 var ntest int64 = 0
108 sx := int64(x)
109 sy := int64(y)
111 if (int64(int32(sx)) == sx || int64(int32(^sx)) == ^sx) && (int64(int32(sy)) == sy || int64(int32(^sy)) == ^sy) {
114 if (int64(int16(sx)) == sx || int64(int16(^sx)) == ^sx) && (int64(int16(sy)) == sy || int64(int16(^sy)) == ^sy)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug411.go 8 // because the compiler tried to registerize the int64 being
9 // used as a memory operand of a int64->float64 move.
13 func f1(a int64) {
bug431.go 14 func F(i int64) int64 {
18 var V = F(int64(C) / 1e6)
  /prebuilts/go/linux-x86/test/
divmod.go 89 var ntest int64 = 0
108 sx := int64(x)
109 sy := int64(y)
111 if (int64(int32(sx)) == sx || int64(int32(^sx)) == ^sx) && (int64(int32(sy)) == sy || int64(int32(^sy)) == ^sy) {
114 if (int64(int16(sx)) == sx || int64(int16(^sx)) == ^sx) && (int64(int16(sy)) == sy || int64(int16(^sy)) == ^sy)
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug411.go 8 // because the compiler tried to registerize the int64 being
9 // used as a memory operand of a int64->float64 move.
13 func f1(a int64) {
bug431.go 14 func F(i int64) int64 {
18 var V = F(int64(C) / 1e6)
  /prebuilts/go/darwin-x86/src/bytes/
reader.go 19 i int64 // current reading index
26 if r.i >= int64(len(r.s)) {
29 return int(int64(len(r.s)) - r.i)
36 func (r *Reader) Size() int64 { return int64(len(r.s)) }
39 if r.i >= int64(len(r.s)) {
44 r.i += int64(n)
48 func (r *Reader) ReadAt(b []byte, off int64) (n int, err error) {
53 if off >= int64(len(r.s)) {
65 if r.i >= int64(len(r.s))
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
reader.go 18 i int64 // current reading index
25 if r.i >= int64(len(r.s)) {
28 return int(int64(len(r.s)) - r.i)
35 func (r *Reader) Size() int64 { return int64(len(r.s)) }
38 if r.i >= int64(len(r.s)) {
43 r.i += int64(n)
47 func (r *Reader) ReadAt(b []byte, off int64) (n int, err error) {
52 if off >= int64(len(r.s)) {
64 if r.i >= int64(len(r.s))
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
reader.go 19 i int64 // current reading index
26 if r.i >= int64(len(r.s)) {
29 return int(int64(len(r.s)) - r.i)
36 func (r *Reader) Size() int64 { return int64(len(r.s)) }
39 if r.i >= int64(len(r.s)) {
44 r.i += int64(n)
48 func (r *Reader) ReadAt(b []byte, off int64) (n int, err error) {
53 if off >= int64(len(r.s)) {
65 if r.i >= int64(len(r.s))
    [all...]
  /prebuilts/go/linux-x86/src/strings/
reader.go 18 i int64 // current reading index
25 if r.i >= int64(len(r.s)) {
28 return int(int64(len(r.s)) - r.i)
35 func (r *Reader) Size() int64 { return int64(len(r.s)) }
38 if r.i >= int64(len(r.s)) {
43 r.i += int64(n)
47 func (r *Reader) ReadAt(b []byte, off int64) (n int, err error) {
52 if off >= int64(len(r.s)) {
64 if r.i >= int64(len(r.s))
    [all...]
  /prebuilts/go/darwin-x86/test/interface/
embed.go 15 type Inter interface { M() int64 }
17 type T int64
18 func (t T) M() int64 { return int64(t) }
31 func check(s string, v int64) {
  /prebuilts/go/linux-x86/test/interface/
embed.go 15 type Inter interface { M() int64 }
17 type T int64
18 func (t T) M() int64 { return int64(t) }
31 func check(s string, v int64) {
  /prebuilts/go/darwin-x86/src/math/rand/
rng.go 27 rng_cooked [_LEN]int64 = [...]int64{
186 vec [_LEN]int64 // current feedback register
201 func (rng *rngSource) Seed(seed int64) {
217 var u int64
218 u = int64(x) << 40
220 u ^= int64(x) << 20
222 u ^= int64(x)
229 // Int63 returns a non-negative pseudo-random 63-bit integer as an int64.
230 func (rng *rngSource) Int63() int64 {
    [all...]
  /prebuilts/go/linux-x86/src/math/rand/
rng.go 27 rng_cooked [_LEN]int64 = [...]int64{
186 vec [_LEN]int64 // current feedback register
201 func (rng *rngSource) Seed(seed int64) {
217 var u int64
218 u = int64(x) << 40
220 u ^= int64(x) << 20
222 u ^= int64(x)
229 // Int63 returns a non-negative pseudo-random 63-bit integer as an int64.
230 func (rng *rngSource) Int63() int64 {
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_linux_amd64.go 20 _C_long int64
21 _C_long_long int64
25 Sec int64
26 Nsec int64
30 Sec int64
31 Usec int64
37 Offset int64
38 Freq int64
39 Maxerror int64
40 Esterror int64
    [all...]

Completed in 1262 milliseconds

1 23 4 5 6 7 8 91011>>