Home
last modified time | relevance | path

Searched refs:Int64 (Results 1 – 25 of 160) sorted by relevance

1234567

/external/opencv3/3rdparty/openexr/Imath/
DImathRandom.cpp68 static const Int64 a = Int64 (0x5deece66dLL); in rand48Next()
69 static const Int64 c = Int64 (0xbLL); in rand48Next()
76 Int64 x = (Int64 (state[2]) << 32) | in rand48Next()
77 (Int64 (state[1]) << 16) | in rand48Next()
78 Int64 (state[0]); in rand48Next()
122 union {double d; Int64 i;} u; in erand48()
124 u.i = (Int64 (0x3ff) << 52) | // sign and exponent in erand48()
125 (Int64 (state[2]) << 36) | // significand in erand48()
126 (Int64 (state[1]) << 20) | in erand48()
127 (Int64 (state[0]) << 4) | in erand48()
[all …]
DImathInt64.h51 typedef unsigned __int64 Int64; typedef
53 typedef long unsigned int Int64;
55 typedef long long unsigned int Int64;
/external/opencv3/3rdparty/openexr/IlmImf/
DImfHuf.cpp145 inline Int64
146 hufLength (Int64 code) in hufLength()
152 inline Int64
153 hufCode (Int64 code) in hufCode()
160 outputBits (int nBits, Int64 bits, Int64 &c, int &lc, char *&out) in outputBits()
172 inline Int64
173 getBits (int nBits, Int64 &c, int &lc, const char *&in) in getBits()
207 hufCanonicalCodeTable (Int64 hcode[HUF_ENCSIZE]) in hufCanonicalCodeTable()
209 Int64 n[59]; in hufCanonicalCodeTable()
229 Int64 c = 0; in hufCanonicalCodeTable()
[all …]
DImfTileOffsets.h70 Int64 writeTo (OStream &os) const;
84 Int64 & operator () (int dx, int dy, int lx, int ly);
85 Int64 & operator () (int dx, int dy, int l);
86 const Int64 & operator () (int dx, int dy, int lx, int ly) const;
87 const Int64 & operator () (int dx, int dy, int l) const;
101 std::vector<std::vector<std::vector <Int64> > > _offsets;
DImfStdIO.h81 virtual Int64 tellg ();
82 virtual void seekg (Int64 pos);
121 virtual Int64 tellp ();
122 virtual void seekp (Int64 pos);
143 virtual Int64 tellp ();
144 virtual void seekp (Int64 pos);
DImfXdr.h162 write (T &out, Int64 v);
245 read (T &in, Int64 &v);
499 write (T &out, Int64 v) in write()
540 union {Int64 i; double d;} u; in write()
781 read (T &in, Int64 &v) in read()
787 v = ((Int64) b[0] & 0x00000000000000ffLL) | in read()
788 (((Int64) b[1] << 8) & 0x000000000000ff00LL) | in read()
789 (((Int64) b[2] << 16) & 0x0000000000ff0000LL) | in read()
790 (((Int64) b[3] << 24) & 0x00000000ff000000LL) | in read()
791 (((Int64) b[4] << 32) & 0x000000ff00000000LL) | in read()
[all …]
DImfStdIO.cpp135 Int64
143 StdIFStream::seekg (Int64 pos) in seekg()
195 Int64
203 StdOFStream::seekp (Int64 pos) in seekp()
225 Int64
233 StdOSStream::seekp (Int64 pos) in seekp()
DImfTileOffsets.cpp120 Int64 tileOffset = is.tellg(); in findTiles()
158 Int64 position = is.tellg(); in reconstructFromFile()
217 Int64
226 Int64 pos = os.tellp(); in writeTo()
305 Int64 &
338 Int64 &
345 const Int64 &
378 const Int64 &
DImfIO.h110 virtual Int64 tellg () = 0;
118 virtual void seekg (Int64 pos) = 0;
180 virtual Int64 tellp () = 0;
188 virtual void seekp (Int64 pos) = 0;
/external/llvm/lib/Target/AMDGPU/
DSIAnnotateControlFlow.cpp51 Type *Int64; member in __anoncda3c9e40111::SIAnnotateControlFlow
123 Int64 = Type::getInt64Ty(Context); in doInitialization()
124 ReturnStruct = StructType::get(Boolean, Int64, (Type *)nullptr); in doInitialization()
129 Int64Zero = ConstantInt::get(Int64, 0); in doInitialization()
135 ElseIntrinsic, ReturnStruct, Int64, (Type *)nullptr); in doInitialization()
138 BreakIntrinsic, Int64, Int64, (Type *)nullptr); in doInitialization()
141 IfBreakIntrinsic, Int64, Boolean, Int64, (Type *)nullptr); in doInitialization()
144 ElseBreakIntrinsic, Int64, Int64, Int64, (Type *)nullptr); in doInitialization()
147 LoopIntrinsic, Boolean, Int64, (Type *)nullptr); in doInitialization()
150 EndCfIntrinsic, Void, Int64, (Type *)nullptr); in doInitialization()
[all …]
/external/lzma/CS/7zip/
DICoder.cs34 void SetProgress(Int64 inSize, Int64 outSize); in SetProgress()
61 Int64 inSize, Int64 outSize, ICodeProgress progress); in Code()
/external/llvm/lib/IR/
DMDBuilder.cpp132 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() local
134 Vals[i * 3 + 0] = createConstant(ConstantInt::get(Int64, Fields[i].Offset)); in createTBAAStructNode()
135 Vals[i * 3 + 1] = createConstant(ConstantInt::get(Int64, Fields[i].Size)); in createTBAAStructNode()
146 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() local
150 Ops[i * 2 + 2] = createConstant(ConstantInt::get(Int64, Fields[i].second)); in createTBAAStructTypeNode()
168 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode() local
169 ConstantInt *Off = ConstantInt::get(Int64, Offset); in createTBAAStructTagNode()
172 createConstant(ConstantInt::get(Int64, 1))}); in createTBAAStructTagNode()
/external/v8/test/unittests/compiler/mips64/
Dinstruction-selector-mips64-unittest.cc75 MachineType::Int64()},
79 MachineType::Int64()},
83 MachineType::Int64()}};
95 MachineType::Int64()},
99 MachineType::Int64()},
103 MachineType::Int64()},
107 MachineType::Int64()}};
123 MachineType::Int64()},
125 MachineType::Int64()},
169 MachineType::Int64()},
[all …]
/external/v8/test/unittests/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc67 MachineType::Int64()},
71 MachineType::Int64()},
75 MachineType::Int64()}};
143 MachineType::Int64()},
149 MachineType::Int64()},
179 MachineType::Int64()}};
196 MachineType::Int64()},
202 MachineType::Int64()},
208 MachineType::Int64()},
214 MachineType::Int64()},
[all …]
/external/lzma/CPP/Windows/
DTimeUtils.cpp17 static const UInt64 kNumSecondsInFileTime = (UInt64)(Int64)-1 / kNumTimeQuantumsInSecond;
125 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) throw() in UnixTime64ToFileTime()
132 Int64 v = (Int64)kUnixTimeOffset + unixTime; in UnixTime64ToFileTime()
144 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw() in FileTimeToUnixTime64()
147 return (Int64)(winTime / kNumTimeQuantumsInSecond) - kUnixTimeOffset; in FileTimeToUnixTime64()
/external/jsoncpp/include/json/
Dconfig.h100 typedef __int64 Int64; typedef
103 typedef long long int Int64; typedef
106 typedef Int64 LargestInt;
/external/lzma/C/
D7zTypes.h73 typedef long Int64; typedef
79 typedef __int64 Int64; typedef
83 typedef long long int Int64; typedef
168 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
182 SRes (*Seek)(void *p, Int64 *pos, ESzSeek origin);
DXzIn.c137 static SRes SeekFromCur(ILookInStream *inStream, Int64 *res) in SeekFromCur()
142 static SRes Xz_ReadBackward(CXzStream *p, ILookInStream *stream, Int64 *startOffset, ISzAlloc *allo… in Xz_ReadBackward()
167 *startOffset = -(Int64)i; in Xz_ReadBackward()
200 *startOffset = -(Int64)(indexSize + XZ_STREAM_FOOTER_SIZE); in Xz_ReadBackward()
212 *startOffset = -(Int64)sum; in Xz_ReadBackward()
274 SRes Xzs_ReadBackward(CXzs *p, ILookInStream *stream, Int64 *startOffset, ICompressProgress *progre… in Xzs_ReadBackward()
276 Int64 endOffset = 0; in Xzs_ReadBackward()
303 …if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK) in Xzs_ReadBackward()
/external/v8/test/cctest/compiler/
Dcodegen-tester.cc593 BufferedRawMachineAssemblerTester<int64_t> m(MachineType::Int64(), in TEST()
594 MachineType::Int64()); in TEST()
605 MachineType::Int64(), MachineType::Int64(), MachineType::Int64()); in TEST()
618 MachineType::Int64(), MachineType::Int64(), MachineType::Int64(), in TEST()
619 MachineType::Int64()); in TEST()
654 BufferedRawMachineAssemblerTester<void> m(MachineType::Int64(), in TEST()
655 MachineType::Int64()); in TEST()
673 MachineType::Int64(), MachineType::Int64(), MachineType::Int64()); in TEST()
695 MachineType::Int64(), MachineType::Int64(), MachineType::Int64(), in TEST()
696 MachineType::Int64()); in TEST()
/external/lzma/CPP/7zip/Common/
DLimitedStreams.h61 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);
DLimitedStreams.cpp52 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
118 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
180 STDMETHODIMP CExtentsStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
235 STDMETHODIMP CTailInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
299 STDMETHODIMP CLimitedCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
328 STDMETHODIMP CTailOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaBench.cs129 public override Int64 Length { get { return 0; } }
130 public override Int64 Position { get { return 0; } set { } }
148 public Int64 ApprovedStart;
149 public Int64 InSize;
152 public void SetProgress(Int64 inSize, Int64 outSize) in SetProgress()
314 decoder.Code(compressedStream, crcOutStream, 0, (Int64)outSize, null); in LzmaBenchmark()
/external/llvm/bindings/ocaml/target/
Dllvm_target.ml68 external size_in_bits : Llvm.lltype -> t -> Int64.t
70 external store_size : Llvm.lltype -> t -> Int64.t
72 external abi_size : Llvm.lltype -> t -> Int64.t
82 external element_at_offset : Llvm.lltype -> Int64.t -> t -> int
84 external offset_of_element : Llvm.lltype -> int -> t -> Int64.t
/external/llvm/test/Bindings/OCaml/
Dtarget.ml54 assert_equal (DL.size_in_bits sty dl) (Int64.of_int 96);
55 assert_equal (DL.store_size sty dl) (Int64.of_int 12);
56 assert_equal (DL.abi_size sty dl) (Int64.of_int 12);
60 assert_equal (DL.element_at_offset sty (Int64.of_int 1) dl) 0;
61 assert_equal (DL.offset_of_element sty 1 dl) (Int64.of_int 4);
/external/jsoncpp/src/test_lib_json/
Dmain.cpp37 return static_cast<double>(Json::Int64(value / 2)) * 2.0 + in uint64ToDouble()
38 Json::Int64(value & 1); in uint64ToDouble()
779 val = Json::Value(Json::Int64(1) << 40); in JSONTEST_FIXTURE()
795 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asInt64()); in JSONTEST_FIXTURE()
796 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asLargestInt()); in JSONTEST_FIXTURE()
797 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asUInt64()); in JSONTEST_FIXTURE()
798 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asLargestUInt()); in JSONTEST_FIXTURE()
799 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asDouble()); in JSONTEST_FIXTURE()
800 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asFloat()); in JSONTEST_FIXTURE()
821 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asInt64()); in JSONTEST_FIXTURE()
[all …]

1234567