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

1 2 3 4 5 6 7 8 91011>>

  /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/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...]
  /external/jsoncpp/include/json/
config.h 100 typedef __int64 Int64;
103 typedef long long int Int64;
106 typedef Int64 LargestInt;
  /external/lzma/CPP/Common/
IntToString.h 21 void ConvertInt64ToString(Int64 value, char *s) throw();
22 void ConvertInt64ToString(Int64 value, wchar_t *s) throw();
  /external/lzma/CPP/Windows/
TimeUtils.h 14 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &fileTime) throw();
16 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw();
TimeUtils.cpp 17 static const UInt64 kNumSecondsInFileTime = (UInt64)(Int64)-1 / kNumTimeQuantumsInSecond;
125 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) throw()
132 Int64 v = (Int64)kUnixTimeOffset + unixTime;
144 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw()
147 return (Int64)(winTime / kNumTimeQuantumsInSecond) - kUnixTimeOffset;
  /external/lzma/CPP/7zip/Common/
OffsetStream.h 22 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
OffsetStream.cpp 21 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
LimitedStreams.h 61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
100 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
125 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
177 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
221 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
247 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 51 Type *Int64;
135 Int64 = Type::getInt64Ty(Context);
136 ReturnStruct = StructType::get(Boolean, Int64, (Type *)nullptr);
141 Int64Zero = ConstantInt::get(Int64, 0);
147 ElseIntrinsic, ReturnStruct, Int64, (Type *)nullptr);
150 BreakIntrinsic, Int64, Int64, (Type *)nullptr);
153 IfBreakIntrinsic, Int64, Boolean, Int64, (Type *)nullptr);
156 ElseBreakIntrinsic, Int64, Int64, Int64, (Type *)nullptr)
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
PercentPrinter.h 19 m_PrevValue(0), m_CurValue(0), m_Total((UInt64)(Int64)-1), m_NumExtraChars(0) {}
  /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))});
  /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...]
  /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/lzma/C/
7zTypes.h 73 typedef long Int64;
79 typedef __int64 Int64;
83 typedef long long int Int64;
168 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
182 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
226 Value (UInt64)(Int64)-1 for size means unknown value. */
XzIn.c 137 static SRes SeekFromCur(ILookInStream *inStream, Int64 *res)
142 static SRes Xz_ReadBackward(CXzStream *p, ILookInStream *stream, Int64 *startOffset, ISzAlloc *alloc)
167 *startOffset = -(Int64)i;
200 *startOffset = -(Int64)(indexSize + XZ_STREAM_FOOTER_SIZE);
212 *startOffset = -(Int64)sum;
274 SRes Xzs_ReadBackward(CXzs *p, ILookInStream *stream, Int64 *startOffset, ICompressProgress *progress, ISzAlloc *alloc)
276 Int64 endOffset = 0;
303 if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK)
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 65 external size_in_bits : Llvm.lltype -> t -> Int64.t
67 external store_size : Llvm.lltype -> t -> Int64.t
69 external abi_size : Llvm.lltype -> t -> Int64.t
79 external element_at_offset : Llvm.lltype -> Int64.t -> t -> int
81 external offset_of_element : Llvm.lltype -> int -> t -> Int64.t
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
PPC64Ops.go 162 {name: "MULLD", argLength: 2, reg: gp21, asm: "MULLD", typ: "Int64", commutative: true}, // arg0*arg1 (signed 64-bit)
181 {name: "MaskIfNotCarry", argLength: 1, reg: crgp, asm: "ADDME", typ: "Int64"}, // carry - 1 (if carry then 0 else -1)
183 {name: "SRADconst", argLength: 1, reg: gp11, asm: "SRAD", aux: "Int64"}, // arg0 >>a aux, 64 bits
184 {name: "SRAWconst", argLength: 1, reg: gp11, asm: "SRAW", aux: "Int64"}, // arg0 >>a aux, 32 bits
185 {name: "SRDconst", argLength: 1, reg: gp11, asm: "SRD", aux: "Int64"}, // arg0 >> aux, 64 bits
186 {name: "SRWconst", argLength: 1, reg: gp11, asm: "SRW", aux: "Int64"}, // arg0 >> aux, 32 bits
187 {name: "SLDconst", argLength: 1, reg: gp11, asm: "SLD", aux: "Int64"}, // arg0 << aux, 64 bits
188 {name: "SLWconst", argLength: 1, reg: gp11, asm: "SLW", aux: "Int64"}, // arg0 << aux, 32 bits
193 {name: "DIVD", argLength: 2, reg: gp21, asm: "DIVD", typ: "Int64"}, // arg0/arg1 (signed 64-bit)
195 {name: "DIVDU", argLength: 2, reg: gp21, asm: "DIVDU", typ: "Int64"}, // arg0/arg1 (unsigned 64-bit
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
PPC64Ops.go 162 {name: "MULLD", argLength: 2, reg: gp21, asm: "MULLD", typ: "Int64", commutative: true}, // arg0*arg1 (signed 64-bit)
181 {name: "MaskIfNotCarry", argLength: 1, reg: crgp, asm: "ADDME", typ: "Int64"}, // carry - 1 (if carry then 0 else -1)
183 {name: "SRADconst", argLength: 1, reg: gp11, asm: "SRAD", aux: "Int64"}, // arg0 >>a aux, 64 bits
184 {name: "SRAWconst", argLength: 1, reg: gp11, asm: "SRAW", aux: "Int64"}, // arg0 >>a aux, 32 bits
185 {name: "SRDconst", argLength: 1, reg: gp11, asm: "SRD", aux: "Int64"}, // arg0 >> aux, 64 bits
186 {name: "SRWconst", argLength: 1, reg: gp11, asm: "SRW", aux: "Int64"}, // arg0 >> aux, 32 bits
187 {name: "SLDconst", argLength: 1, reg: gp11, asm: "SLD", aux: "Int64"}, // arg0 << aux, 64 bits
188 {name: "SLWconst", argLength: 1, reg: gp11, asm: "SLW", aux: "Int64"}, // arg0 << aux, 32 bits
193 {name: "DIVD", argLength: 2, reg: gp21, asm: "DIVD", typ: "Int64"}, // arg0/arg1 (signed 64-bit)
195 {name: "DIVDU", argLength: 2, reg: gp21, asm: "DIVDU", typ: "Int64"}, // arg0/arg1 (unsigned 64-bit
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 52 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
85 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
  /external/lzma/CPP/7zip/
IStream.h 84 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
89 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 24 bool Int64(int64_t i) { return out_.Int64(i); }

Completed in 735 milliseconds

1 2 3 4 5 6 7 8 91011>>