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

1 2 3

  /external/jsoncpp/include/json/
config.h 100 typedef __int64 Int64;
103 typedef long long int Int64;
106 typedef Int64 LargestInt;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 16 check("Int8", int64(x), 0x01, a, b, c, d, e, f, g, h)
22 check("Uint8", int64(x), 0x01, a, b, c, d, e, f, g, h)
28 check("Int16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
34 check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
40 check("Int32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
46 check("Uint32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
49 type Int64 int64
51 func (x Int64) m(a, b, c, d, e, f, g, h byte) {
52 check("Int64", int64(x), 0x0102030405060708, a, b, c, d, e, f, g, h
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 16 check("Int8", int64(x), 0x01, a, b, c, d, e, f, g, h)
22 check("Uint8", int64(x), 0x01, a, b, c, d, e, f, g, h)
28 check("Int16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
34 check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
40 check("Int32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
46 check("Uint32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
49 type Int64 int64
51 func (x Int64) m(a, b, c, d, e, f, g, h byte) {
52 check("Int64", int64(x), 0x0102030405060708, a, b, c, d, e, f, g, h
    [all...]
  /external/protobuf/js/binary/
arith.js 40 goog.provide('jspb.arith.Int64');
315 * Int64 is like UInt64, but modifies string conversions to interpret the stored
328 jspb.arith.Int64 = function(lo, hi) {
344 * @param {!jspb.arith.Int64} other
345 * @return {!jspb.arith.Int64}
347 jspb.arith.Int64.prototype.add = function(other) {
352 return new jspb.arith.Int64(lo >>> 0, hi >>> 0);
358 * @param {!jspb.arith.Int64} other
359 * @return {!jspb.arith.Int64}
361 jspb.arith.Int64.prototype.sub = function(other)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 24 bool Int64(int64_t i) { return out_.Int64(i); }
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 12 bool Int64(int64_t i) { cout << "Int64(" << i << ")" << endl; return true; }
  /external/llvm/lib/IR/
MDBuilder.cpp 132 Type *Int64 = Type::getInt64Ty(Context);
134 Vals[i * 3 + 0] = createConstant(ConstantInt::get(Int64, Fields[i].Offset));
135 Vals[i * 3 + 1] = createConstant(ConstantInt::get(Int64, Fields[i].Size));
146 Type *Int64 = Type::getInt64Ty(Context);
150 Ops[i * 2 + 2] = createConstant(ConstantInt::get(Int64, Fields[i].second));
168 IntegerType *Int64 = Type::getInt64Ty(Context);
169 ConstantInt *Off = ConstantInt::get(Int64, Offset);
172 createConstant(ConstantInt::get(Int64, 1))});
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
FieldType.cs 49 /// The <c>int64</c> field type.
51 Int64,
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
prettywriter.h 69 bool Int64(int64_t i64) { PrettyPrefix(kNumberType); return Base::WriteInt64(i64); }
writer.h 112 bool Int64(int64_t i64) { Prefix(kNumberType); return WriteInt64(i64); }
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 134 func NewInt(x int64) *Int { return new(Int).SetInt64(x) }
184 func (z *Int) SetInt64(x int64) *Int {
307 func (z *Int) Int64() int64 {
311 return int64(C.mpz_get_si(&z.i[0]))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpint.go 210 s := b.Int64()
237 s := b.Int64()
255 func (a *Mpint) CmpInt64(c int64) int {
266 func (a *Mpint) Int64() int64 {
274 return a.Val.Int64()
277 func (a *Mpint) SetInt64(c int64) {
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 134 func NewInt(x int64) *Int { return new(Int).SetInt64(x) }
184 func (z *Int) SetInt64(x int64) *Int {
307 func (z *Int) Int64() int64 {
311 return int64(C.mpz_get_si(&z.i[0]))
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpint.go 210 s := b.Int64()
237 s := b.Int64()
255 func (a *Mpint) CmpInt64(c int64) int {
266 func (a *Mpint) Int64() int64 {
274 return a.Val.Int64()
277 func (a *Mpint) SetInt64(c int64) {
  /external/llvm/lib/Target/Hexagon/
HexagonRegisterInfo.cpp 63 static const MCPhysReg Int64[] = {
82 return Int64;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
op.go 83 type ValAndOff int64
85 func (x ValAndOff) Val() int64 {
86 return int64(x) >> 32
88 func (x ValAndOff) Off() int64 {
89 return int64(int32(x))
91 func (x ValAndOff) Int64() int64 {
92 return int64(x)
100 func validVal(val int64) bool {
101 return val == int64(int32(val)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
decode.go 124 Offset int64 // error occurred after reading Offset bytes
199 // Int64 returns the number as an int64.
200 func (n Number) Int64() (int64, error) {
496 d.saveError(&UnmarshalTypeError{Value: "array", Type: v.Type(), Offset: int64(d.off)})
515 d.saveError(&UnmarshalTypeError{Value: "array", Type: v.Type(), Offset: int64(d.off)})
605 d.saveError(&UnmarshalTypeError{Value: "object", Type: v.Type(), Offset: int64(d.off)})
629 reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
633 d.saveError(&UnmarshalTypeError{Value: "object", Type: v.Type(), Offset: int64(d.off)}
    [all...]
  /prebuilts/go/darwin-x86/test/
64bit.go 32 type Int64 struct {
37 func (a Uint64) Int64() (c Int64) {
210 func (a Int64) Uint64() (c Uint64) {
216 func (a Int64) Cmp(b Int64) int {
233 func (a Int64) LeftShift(b uint) (c Int64) { return a.Uint64().LeftShift(b).Int64() }
235 func (a Int64) RightShift(b uint) (c Int64)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
op.go 83 type ValAndOff int64
85 func (x ValAndOff) Val() int64 {
86 return int64(x) >> 32
88 func (x ValAndOff) Off() int64 {
89 return int64(int32(x))
91 func (x ValAndOff) Int64() int64 {
92 return int64(x)
100 func validVal(val int64) bool {
101 return val == int64(int32(val)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
decode.go 124 Offset int64 // error occurred after reading Offset bytes
199 // Int64 returns the number as an int64.
200 func (n Number) Int64() (int64, error) {
496 d.saveError(&UnmarshalTypeError{Value: "array", Type: v.Type(), Offset: int64(d.off)})
515 d.saveError(&UnmarshalTypeError{Value: "array", Type: v.Type(), Offset: int64(d.off)})
605 d.saveError(&UnmarshalTypeError{Value: "object", Type: v.Type(), Offset: int64(d.off)})
629 reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
633 d.saveError(&UnmarshalTypeError{Value: "object", Type: v.Type(), Offset: int64(d.off)}
    [all...]
  /prebuilts/go/linux-x86/test/
64bit.go 32 type Int64 struct {
37 func (a Uint64) Int64() (c Int64) {
210 func (a Int64) Uint64() (c Uint64) {
216 func (a Int64) Cmp(b Int64) int {
233 func (a Int64) LeftShift(b uint) (c Int64) { return a.Uint64().LeftShift(b).Int64() }
235 func (a Int64) RightShift(b uint) (c Int64)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
Types.h 60 typedef long Int64;
66 typedef __int64 Int64;
69 typedef long long int Int64;
138 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
152 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
196 Value (UInt64)(Int64)-1 for size means unknown value. */
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
Types.h 83 typedef long Int64;
89 typedef __int64 Int64;
92 typedef long long int Int64;
161 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
175 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
219 Value (UInt64)(Int64)-1 for size means unknown value. */
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
Types.h 83 typedef long Int64;
89 typedef __int64 Int64;
92 typedef long long int Int64;
161 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
175 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
219 Value (UInt64)(Int64)-1 for size means unknown value. */
  /external/clang/include/clang/Basic/
TargetBuiltins.h 112 Int64,

Completed in 908 milliseconds

1 2 3