Searched defs:Size (Results 51 - 75 of 555) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.cpp43 inline void EmitSize(size_t Size) { argument
44 size_t SizeInWords = (Size + 3) / 4;
H A DARMUnwindOpAsm.h85 void EmitBytes(const uint8_t *Opcode, size_t Size) { argument
86 Ops.insert(Ops.end(), Opcode, Opcode + Size);
87 OpBegins.push_back(OpBegins.back() + Size);
/external/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp47 static bool IsInSmallSection(uint64_t Size) { argument
48 return Size > 0 && Size <= (uint64_t)SmallDataThreshold;
/external/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.h28 const InstSeq &Analyze(uint64_t Imm, unsigned Size, bool LastInstrIsADDiu);
57 unsigned Size; member in class:llvm::MipsAnalyzeImmediate
H A DMipsFrameLowering.cpp114 unsigned Size = TRI.getMinimalPhysRegClass(*R)->getSize(); local
115 Offset = RoundUpToAlignment(Offset + Size, Size);
H A DMipsTargetObjectFile.cpp45 static bool IsInSmallSection(uint64_t Size) { argument
46 return Size > 0 && Size <= SSThreshold;
/external/llvm/tools/lli/
H A DRemoteTarget.cpp31 bool RemoteTarget::allocateSpace(size_t Size, unsigned Alignment, argument
34 sys::MemoryBlock Mem = sys::Memory::AllocateRWX(Size, Prev, &ErrorMsg);
46 bool RemoteTarget::loadData(uint64_t Address, const void *Data, size_t Size) { argument
47 memcpy ((void*)Address, Data, Size);
51 bool RemoteTarget::loadCode(uint64_t Address, const void *Data, size_t Size) { argument
52 memcpy ((void*)Address, Data, Size);
53 sys::MemoryBlock Mem((void*)Address, Size);
H A DRemoteTarget.h41 /// @param Size Amount of space, in bytes, to allocate.
47 virtual bool allocateSpace(size_t Size,
51 bool isAllocatedMemory(uint64_t Address, uint32_t Size) { argument
52 uint64_t AddressEnd = Address + Size;
67 /// @param Size Number of bytes to copy.
73 size_t Size);
79 /// @param Size Number of bytes to copy.
85 size_t Size);
H A DRemoteTargetExternal.h34 bool WriteBytes(const void *Data, size_t Size) { argument
35 return RPC.WriteBytes(Data, Size);
38 bool ReadBytes(void *Data, size_t Size) { return RPC.ReadBytes(Data, Size); } argument
43 /// @param Size Amount of space, in bytes, to allocate.
49 bool allocateSpace(size_t Size, unsigned Alignment,
56 /// @param Size Number of bytes to copy.
60 bool loadData(uint64_t Address, const void *Data, size_t Size) override;
66 /// @param Size Number of bytes to copy.
70 bool loadCode(uint64_t Address, const void *Data, size_t Size) overrid
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.h22 UInt64 Size; member in struct:CMultiStream::CSubStreamInfo
31 for (int i = 0; i < Streams.Size(); i++)
35 total += Streams[i].Size;
63 UInt64 Size;
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A Dvectorbuffer.cpp24 TInt TNodeBuffer::TNode::Size() const function in class:TNodeBuffer::TNode
43 TNode* node = aPred->Size() == 0 ? aPred : aPred->iSucc;
47 node->iSucc = reinterpret_cast<TNode*>(start + aData.Size());
50 __ASSERT_DEBUG(node->Size() == aData.Size(), VECPANIC(KErrCorrupt));
52 Mem::Copy(start, aData.Ptr(), aData.Size());
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc25 int32_t FontData::Size() const { function in class:sfntly::FontData
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/sfntly/cpp/src/sfntly/port/
H A Dmemory_output_stream.cc68 size_t MemoryOutputStream::Size() { function in class:sfntly::MemoryOutputStream
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfEmbeddedFileParameterDictionary_autogen.cpp11 int64_t SkPdfEmbeddedFileParameterDictionary::Size(SkPdfNativeDoc* doc) { function in class:SkPdfEmbeddedFileParameterDictionary
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
H A DSkPdfFileTrailerDictionary_autogen.cpp11 int64_t SkPdfFileTrailerDictionary::Size(SkPdfNativeDoc* doc) { function in class:SkPdfFileTrailerDictionary
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
H A DSkPdfType0FunctionDictionary_autogen.cpp11 SkPdfArray* SkPdfType0FunctionDictionary::Size(SkPdfNativeDoc* doc) { function in class:SkPdfType0FunctionDictionary
12 SkPdfNativeObject* ret = get("Size", "");
20 return get("Size", "") != NULL;
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs37 public int Size { get { return _size; } } property in class:DotZLib.CircularBuffer
42 int trueCount = Math.Min(count, _capacity - Size);
53 if (Size == _capacity) // no room
63 int trueCount = Math.Min(count,Size);
74 if (Size == 0)
/external/chromium_org/ppapi/cpp/
H A Dsize.h18 class Size { class in namespace:pp
22 Size() { function in class:pp::Size
28 /// converting the <code>PP_Size</code> to a <code>Size</code>. This is an
32 Size(const PP_Size& s) { // Implicit. function in class:pp::Size
39 /// converting them to a <code>Size</code>.
43 Size(int w, int h) { function in class:pp::Size
50 ~Size() {
53 /// PP_Size() allows implicit conversion of a <code>Size</code> to a
56 /// @return A Size.
77 /// @return The value of width for this <code>Size</cod
[all...]
/external/ceres-solver/examples/
H A Dfields_of_experts.h100 int Size() const { function in class:ceres::examples::FieldsOfExperts
/external/chromium_org/chrome/renderer/net/
H A Dpredictor_queue.h49 size_t Size() const { return size_; } function in class:DnsQueue
74 const BufferSize buffer_size_; // Size one smaller than allocated space.
/external/chromium_org/third_party/webrtc/base/
H A Dopenssldigest.cc33 size_t OpenSSLDigest::Size() const { function in class:rtc::OpenSSLDigest
48 if (!md_ || len < Size()) {
54 ASSERT(md_len == Size());
/external/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp78 StringRef::size_type Pos = LineStr.find(" Size:");
80 // Skip past the " Size:" prefix.
81 LineStr = LineStr.substr(Pos + strlen(" Size:"));
83 unsigned long long Size = 0; local
84 (void)LineStr.getAsInteger(10, Size);
85 CurrentLayout.Size = Size;
108 unsigned long long Size = 0; local
109 (void)LineStr.getAsInteger(10, Size);
110 CurrentLayout.Size
156 layoutRecordType(const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) argument
[all...]
/external/clang/lib/Rewrite/Core/
H A DRewriteRope.cpp83 /// Size - This is the number of bytes of file this node (including any
85 unsigned Size; member in class:__anon17964::RopePieceBTreeNode
91 RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
96 unsigned size() const { return Size; }
162 Size = 0;
193 /// FullRecomputeSizeLocally - This method recomputes the 'Size' field by
196 Size = 0;
198 Size += getPiece(i).size();
262 Size -= Pieces[i].size();
264 Size
[all...]
/external/clang/lib/Sema/
H A DTypeLocBuilder.cpp20 size_t Size = L.getFullDataSize(); local
21 reserve(Size);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp64 DefinedOrUnknownSVal Size = local
70 svalBuilder.evalEQ(state, Extent, Size);

Completed in 427 milliseconds

1234567891011>>