Searched refs:Size (Results 51 - 75 of 1042) sorted by relevance

1234567891011>>

/external/protobuf/gtest/samples/
H A Dsample3_unittest.cc102 ASSERT_EQ(q->Size(), new_q->Size());
125 EXPECT_EQ(0u, q0_.Size());
136 EXPECT_EQ(0u, q1_.Size());
142 EXPECT_EQ(1u, q2_.Size());
/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/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h50 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
59 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
92 uint8_t *allocateSection(MemoryGroup &MemGroup, uintptr_t Size,
/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;
H A DCoderMixer2MT.cpp45 for (i = 0; i < InStreams.Size(); i++)
47 for (i = 0; i < OutStreams.Size(); i++)
86 for (int i = 0; i < _bindInfo.BindPairs.Size(); i++)
96 const CCoderStreamsInfo &c = _bindInfo.Coders[_coders.Size()];
116 for (int i = 0; i < _streamBinders.Size(); i++)
124 if (_coders.Size() != _bindInfo.Coders.Size())
128 for (i = 0; i < _coders.Size(); i++)
141 for (i = 0; i < _bindInfo.BindPairs.Size(); i++)
164 for (i = 0; i < _bindInfo.InStreams.Size();
[all...]
/external/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h29 uint64_t Size; member in struct:clang::LayoutOverrideSource::Layout
52 uint64_t &Size, uint64_t &Alignment,
/external/clang/lib/AST/
H A DDeclGroup.cpp24 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls; local
25 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
/external/clang/lib/CodeGen/
H A DEHScopeStack.h105 ptrdiff_t Size; member in class:clang::CodeGen::EHScopeStack::stable_iterator
107 stable_iterator(ptrdiff_t Size) : Size(Size) {} argument
111 stable_iterator() : Size(-1) {}
113 bool isValid() const { return Size >= 0; }
118 bool encloses(stable_iterator I) const { return Size <= I.Size; }
124 bool strictlyEncloses(stable_iterator I) const { return Size < I.Size; }
294 pushCopyOfCleanup(CleanupKind Kind, const void *Cleanup, size_t Size) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h20 // component specifies the base memory address of the region. The Size specifies
27 // alias, regardless of the value of the Size component.
105 /// Size - The maximum size of the location, in address-units, or
110 uint64_t Size; member in struct:llvm::AliasAnalysis::Location
118 : Ptr(P), Size(S), AATags(N) {}
128 Copy.Size = NewSize;
408 const Value *P, uint64_t Size) {
409 return getModRefInfo(I, Location(P, Size));
419 const Value *P, uint64_t Size) {
420 return getModRefInfo(CS, Location(P, Size));
407 getModRefInfo(const Instruction *I, const Value *P, uint64_t Size) argument
418 getModRefInfo(ImmutableCallSite CS, const Value *P, uint64_t Size) argument
430 getModRefInfo(const CallInst *C, const Value *P, uint64_t Size) argument
442 getModRefInfo(const InvokeInst *I, const Value *P, uint64_t Size) argument
452 getModRefInfo(const LoadInst *L, const Value *P, uint64_t Size) argument
461 getModRefInfo(const StoreInst *S, const Value *P, uint64_t Size) argument
474 getModRefInfo(const FenceInst *S, const Value *P, uint64_t Size) argument
483 getModRefInfo(const AtomicCmpXchgInst *CX, const Value *P, unsigned Size) argument
493 getModRefInfo(const AtomicRMWInst *RMW, const Value *P, unsigned Size) argument
503 getModRefInfo(const VAArgInst* I, const Value* P, uint64_t Size) argument
525 callCapturesBefore(const Instruction *I, const Value *P, uint64_t Size, DominatorTree *DT) argument
539 canBasicBlockModify(const BasicBlock &BB, const Value *P, uint64_t Size) argument
553 canInstructionRangeModRef(const Instruction &I1, const Instruction &I2, const Value *Ptr, uint64_t Size, const ModRefResult Mode) argument
[all...]
/external/llvm/lib/MC/
H A DMCNullStreamer.cpp32 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
35 uint64_t Size = 0, unsigned ByteAlignment = 0) override {}
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp30 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/lzma/CPP/7zip/Archive/7z/
H A D7zItem.h52 for (int i = UnpackSizes.Size() - 1; i >= 0; i--)
61 for (int i = 0; i < Coders.Size(); i++)
68 for(int i = 0; i < BindPairs.Size(); i++)
75 for(int i = 0; i < BindPairs.Size(); i++)
82 for(int i = 0; i < PackStreams.Size(); i++)
90 for (int i = Coders.Size() - 1; i >= 0; i--)
118 if (index < Defined.Size() && Defined[index])
129 while (index >= Defined.Size())
134 while (index >= Values.Size())
139 bool CheckSize(int size) const { return Defined.Size()
144 UInt64 Size; member in struct:NArchive::N7z::CFileItem
[all...]
/external/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp68 RegisteredObjectInfo(std::size_t Size, jit_code_entry *Entry, argument
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; member in struct:__anon10524::RegisteredObjectInfo
170 size_t Size = DebugObj.getBinary()->getMemoryBufferRef().getBufferSize(); local
185 JITCodeEntry->symfile_size = Size;
[all...]
H A DSectionMemoryManager.cpp21 uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size, argument
27 return allocateSection(RODataMem, Size, Alignment);
28 return allocateSection(RWDataMem, Size, Alignment);
31 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, argument
35 return allocateSection(CodeMem, Size, Alignment);
39 uintptr_t Size,
46 uintptr_t RequiredSize = Alignment * ((Size + Alignment - 1)/Alignment + 1);
59 MemGroup.FreeMem[i] = sys::MemoryBlock((void*)(Addr + Size),
60 EndOfBlock - Addr - Size);
97 unsigned FreeSize = EndOfBlock-Addr-Size;
38 allocateSection(MemoryGroup &MemGroup, uintptr_t Size, unsigned Alignment) argument
[all...]
/external/llvm/tools/lli/
H A DRemoteTargetExternal.cpp31 bool RemoteTargetExternal::allocateSpace(size_t Size, unsigned Alignment, argument
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) { argument
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) { argument
78 ", size: " << Size << "\n");
79 if (!SendLoadSection(Address, Data, (uint32_t)Size, true)) {
119 bool RemoteTargetExternal::SendAllocateSpace(uint32_t Alignment, uint32_t Size) { argument
135 SendLoadSection(uint64_t Addr, const void *Data, uint32_t Size, bool IsCode) argument
311 AppendWrite(const void *Data, uint32_t Size) argument
316 AppendRead(void *Data, uint32_t Size) argument
[all...]
/external/llvm/include/llvm/Support/
H A Draw_ostream.h103 void SetBufferSize(size_t Size) { argument
105 SetBufferAndMode(new char[Size], Size, InternalBuffer);
162 size_t Size = Str.size(); local
165 if (Size > (size_t)(OutBufEnd - OutBufCur))
166 return write(Str.data(), Size);
168 memcpy(OutBufCur, Str.data(), Size);
169 OutBufCur += Size;
212 raw_ostream &write(const char *Ptr, size_t Size);
264 /// writes the \p Size byte
289 SetBuffer(char *BufferStart, size_t Size) argument
[all...]
H A DMemoryObject.h43 /// @param Size - The number of bytes to copy.
47 virtual uint64_t readBytes(uint8_t *Buf, uint64_t Size,
H A Draw_os_ostream.h29 void write_impl(const char *Ptr, size_t Size) override;
/external/lzma/CPP/Common/
H A DWildcard.cpp155 M = MaskParts.Size();
156 N = TestNameParts.Size();
174 int delta = (int)pathParts.Size() - (int)PathParts.Size();
197 for (i = 0; i < PathParts.Size(); i++)
200 if (i == PathParts.Size())
208 for (int i = 0; i < SubNodes.Size(); i++)
224 if (item.PathParts.Size() <= 1)
254 for (int i = 0; i < IncludeItems.Size(); i++)
257 if (item.Recursive || item.PathParts.Size() >
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.h28 uptr Size() const;
/external/llvm/include/llvm/MC/
H A DConstantPools.h30 : Label(L), Value(Val), Size(Sz) {}
33 unsigned Size; member in struct:llvm::ConstantPoolEntry
48 // \param Size is the size in bytes of the entry
52 unsigned Size);
83 unsigned Size);
/external/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.cpp27 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
32 unsigned SizeBitWidth = Size.getValueType().getSizeInBits();
35 DAG.MaskedValueIsZero(Size, APInt(SizeBitWidth, 3))) {
42 Entry.Node = Size; Args.push_back(Entry);
26 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp39 CPropVariant *values = new CPropVariant[properties.Size()];
43 for(i = 0; i < properties.Size(); i++)
67 for(i = 0; i < realNames.Size(); i++)
70 RINOK(setProperties->SetProperties(&names.Front(), values, names.Size()));
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUMCAsmInfo.h26 getDataASDirective(unsigned int Size, unsigned int AS) const;
/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)

Completed in 1708 milliseconds

1234567891011>>