/external/opencv3/modules/imgproc/perf/opencl/ |
perf_imgproc.cpp | 57 typedef TestBaseWithParam<Size> EqualizeHistFixture; 61 const Size srcSize = GetParam(); 76 typedef TestBaseWithParam<Size> CalcHistFixture; 80 const Size srcSize = GetParam(); 100 typedef TestBaseWithParam<Size> CalcBackProjFixture; 104 const Size srcSize = GetParam(); 130 typedef tuple<Size, MatType, Border> CopyMakeBorderParamType; 137 const Size srcSize = get<0>(params); 143 const Size dstSize = srcSize + Size(12, 12) [all...] |
/external/llvm/include/llvm/Support/ |
Allocator.h | 13 /// Allocate method accepting a size and alignment, and a Deallocate accepting 14 /// a pointer and size. Further, the LLVM "Allocator" concept has overloads of 15 /// Allocate and Deallocate for setting size and alignment based on the final 44 /// \brief Allocate \a Size bytes of \a Alignment aligned memory. This method 46 void *Allocate(size_t Size, size_t Alignment) { 55 return static_cast<DerivedT *>(this)->Allocate(Size, Alignment); 58 /// \brief Deallocate \a Ptr to \a Size bytes of memory allocated by this 60 void Deallocate(const void *Ptr, size_t Size) { 69 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size); 93 LLVM_ATTRIBUTE_RETURNS_NONNULL void *Allocate(size_t Size, [all...] |
MemoryObject.h | 20 /// to block or do some work to get it. More significantly, the exact size of 25 /// isValidAddress can be used to test addresses without knowing the exact size 32 /// Returns the size of the region in bytes. (The region is contiguous, so 35 /// @result - The size of the region. 42 /// and large enough to hold size bytes. 43 /// @param Size - The number of bytes to copy. 47 virtual uint64_t readBytes(uint8_t *Buf, uint64_t Size, 52 /// block until (address - base + size) bytes have been read 54 /// @param size - amount of data that must be available on return 56 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0 [all...] |
raw_os_ostream.h | 29 void write_impl(const char *Ptr, size_t Size) override;
|
/external/llvm/lib/ExecutionEngine/ |
GDBRegistrationListener.cpp | 68 RegisteredObjectInfo(std::size_t Size, jit_code_entry *Entry, 70 : Size(Size), Entry(Entry), Obj(std::move(Obj)) {} 73 : Size(Other.Size), Entry(Other.Entry), Obj(std::move(Other.Obj)) {} 76 Size = Other.Size; 82 std::size_t Size; 170 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); 185 JITCodeEntry->symfile_size = Size; [all...] |
/external/llvm/tools/lli/ |
RemoteTargetExternal.cpp | 31 bool RemoteTargetExternal::allocateSpace(size_t Size, unsigned Alignment, 33 DEBUG(dbgs() << "Message [allocate space] size: " << Size << 35 if (!SendAllocateSpace(Alignment, Size)) { 52 bool RemoteTargetExternal::loadData(uint64_t Address, const void *Data, size_t Size) { 54 ", size: " << Size << "\n"); 55 if (!SendLoadSection(Address, Data, (uint32_t)Size, false)) { 76 bool RemoteTargetExternal::loadCode(uint64_t Address, const void *Data, size_t Size) { 78 ", size: " << Size << "\n") [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_ignoreset.h | 28 uptr Size() const;
|
/external/libchrome/base/memory/ |
aligned_memory.h | 6 // or local stack data of a given alignment and size. For example, if you need 24 // float* my_array = static_cast<float*>(AlignedAlloc(size, alignment)); 32 // static_cast<float*>(AlignedAlloc(size, alignment))); 53 template <size_t Size, size_t ByteAlignment> 57 template <size_t Size> \ 58 class AlignedMemory<Size, byte_alignment> { \ 60 ALIGNAS(byte_alignment) uint8_t data_[Size]; \ 97 BASE_EXPORT void* AlignedAlloc(size_t size, size_t alignment);
|
/external/llvm/include/llvm/MC/ |
ConstantPools.h | 31 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {} 34 unsigned Size; 50 // \param Size is the size in bytes of the entry 54 unsigned Size, SMLoc Loc); 85 unsigned Size, SMLoc Loc);
|
/external/llvm/lib/Target/AArch64/ |
AArch64SelectionDAGInfo.h | 25 SDValue Dst, SDValue Src, SDValue Size,
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64TargetStreamer.h | 27 const MCExpr *addConstantPoolEntry(const MCExpr *, unsigned Size, SMLoc Loc);
|
/external/llvm/lib/Target/Hexagon/ |
HexagonSelectionDAGInfo.h | 27 SDValue Size, unsigned Align,
|
/external/llvm/lib/Target/Mips/ |
MipsSERegisterInfo.h | 31 const TargetRegisterClass *intRegClass(unsigned Size) const override;
|
/external/llvm/lib/Target/XCore/ |
XCoreSelectionDAGInfo.cpp | 21 SDValue Dst, SDValue Src, SDValue Size, unsigned Align, 26 unsigned SizeBitWidth = Size.getValueType().getSizeInBits(); 27 // Call __memcpy_4 if the src, dst and size are all 4 byte aligned. 29 DAG.MaskedValueIsZero(Size, APInt(SizeBitWidth, 3))) { 36 Entry.Node = Size; Args.push_back(Entry);
|
/external/lzma/CPP/7zip/UI/Common/ |
SetProperties.cpp | 40 CPropVariant *values = new CPropVariant[properties.Size()];
44 for (i = 0; i < properties.Size(); i++)
68 for (i = 0; i < realNames.Size(); i++)
71 RINOK(setProperties->SetProperties(&names.Front(), values, names.Size()));
|
/external/opencv3/modules/calib3d/test/ |
test_chessboardgenerator.hpp | 17 Size patternSize; 20 ChessBoardGenerator(const Size& patternSize = Size(8, 6)); 24 Size cornersSize() const;
|
/external/opencv3/modules/core/perf/opencl/ |
perf_gemm.cpp | 59 typedef tuple<Size, FlagType, MatType> GemmParams; 63 ::testing::Values(Size(640, 640), Size(1280, 1280)), 67 const Size srcSize = get<0>(params);
|
/external/opencv3/samples/cpp/tutorial_code/TrackingMotion/ |
cornerSubPix_Demo.cpp | 85 cout<<"** Number of corners detected: "<<corners.size()<<endl; 87 for( size_t i = 0; i < corners.size(); i++ ) 95 Size winSize = Size( 5, 5 ); 96 Size zeroZone = Size( -1, -1 ); 103 for( size_t i = 0; i < corners.size(); i++ )
|
/external/sfntly/cpp/src/sfntly/data/ |
font_data.cc | 25 int32_t FontData::Size() const { 26 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_); 30 if (offset + length > Size() || offset < 0 || length < 0) 39 if (offset > Size() || offset < 0)
|
/external/webrtc/webrtc/base/ |
md5digest.cc | 15 size_t Md5Digest::Size() const {
|
md5digest.h | 26 size_t Size() const override;
|
sha1digest.cc | 15 size_t Sha1Digest::Size() const {
|
sha1digest.h | 26 size_t Size() const override;
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
HighSpeedVideoConfiguration.java | 24 import android.util.Size; 62 mSize = new Size(mWidth, mHeight); 104 * Convenience method to return the size of this high speed video configuration. 106 * @return a Size with positive width and height 108 public Size getSize() { 113 * Convenience method to return the max batch size of this high speed video configuration. 115 * @return the maximal batch size for this high speed video configuration 170 private final Size mSize;
|
/frameworks/base/media/mca/filterfw/native/core/ |
vertex_frame.h | 32 // Create a VertexFrame of the specified size (in bytes). 33 explicit VertexFrame(int size); 37 // Upload the given data to the vertex buffer. The size must match the size 39 // be able to fit within the allocated space (i.e. size must not exceed the 40 // frame's size). 41 bool WriteData(const uint8_t* data, int size); 43 // The size of the vertex buffer in bytes. 44 int Size() const; 70 // The size of this frame in byte [all...] |