Home
last modified time | relevance | path

Searched refs:GetCapacity (Results 1 – 15 of 15) sorted by relevance

/external/vixl/test/
Dtest-code-buffer.cc37 VIXL_CHECK(code_buffer.GetCapacity() == 2); in TEST()
41 VIXL_CHECK(code_buffer.GetCapacity() == 2); in TEST()
48 VIXL_CHECK(code_buffer.GetCapacity() > 2); in TEST()
/external/vixl/src/
Dcode-buffer-vixl.h94 return GetOffsetAddress<T>(GetCapacity()); in GetEndAddress()
141 size_t GetCapacity() const { return capacity_; } in GetCapacity() function
143 return GetCapacity();
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTArray.h255 T* pNewArray = new T[other.GetCapacity()]; in Copy()
271 m_uiCapacity = other.GetCapacity(); in Copy()
350 unsigned int GetCapacity() const in GetCapacity() function
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tools.pas131 function GetCapacity: Integer;
179 property Capacity: Integer read GetCapacity write SetCapacity;
220 function GetCapacity: Integer;
468 function TList<T>.GetCapacity: Integer; in GetCapacity() function
/external/lzma/CPP/7zip/Common/
DStreamObjects.h72 size_t GetCapacity() const { return _capacity; } in GetCapacity() function
/external/v8/src/
Delements.h149 virtual uint32_t GetCapacity(JSObject* holder,
Dcode-stub-assembler.h956 Node* GetCapacity(Node* dictionary);
Dcode-stub-assembler.cc4418 Node* CodeStubAssembler::GetCapacity(Node* dictionary) { in GetCapacity() function in v8::internal::CodeStubAssembler
4448 Node* capacity = SmiUntag(GetCapacity<Dictionary>(dictionary)); in NameDictionaryLookup()
4535 Node* capacity = SmiUntag(GetCapacity<Dictionary>(dictionary)); in NumberDictionaryLookup()
4662 Node* capacity = GetCapacity<Dictionary>(dictionary); in Add()
Delements.cc1236 uint32_t GetCapacity(JSObject* holder, FixedArrayBase* backing_store) final { in GetCapacity() function in v8::internal::__anon51de3a750111::ElementsAccessorBase
Dobjects.cc8196 object->GetElementsAccessor()->GetCapacity(*object, object->elements()); in FastGetOwnValuesOrEntries()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas227 ReturnValue := FIList.GetCapacity;
/external/vixl/src/aarch64/
Dassembler-aarch64.h445 return static_cast<ptrdiff_t>(GetBuffer().GetCapacity());
449 return GetBuffer().GetCapacity();
473 (offset < static_cast<ptrdiff_t>(GetBuffer()->GetCapacity()))); in GetInstructionOffset()
3059 return GetBuffer().GetCapacity();
3062 return GetBuffer().GetCapacity();
Dmacro-assembler-aarch64.h2884 static_cast<ptrdiff_t>(GetBuffer().GetCapacity())); in GetNextCheckPoint()
/external/vixl/test/aarch32/
Dtest-assembler-aarch32.cc3555 VIXL_CHECK(masm.GetBuffer()->GetCapacity() == kBaseBufferSize); in TEST_NOASM()
3568 VIXL_CHECK(masm.GetBuffer()->GetCapacity() == kBaseBufferSize); in TEST_NOASM()
3573 VIXL_CHECK(masm.GetBuffer()->GetCapacity() > kBaseBufferSize); in TEST_NOASM()
3585 VIXL_CHECK(masm.GetBuffer()->GetCapacity() == kBaseBufferSize); in TEST_NOASM()
3609 VIXL_CHECK(masm.GetBuffer()->GetCapacity() == kBaseBufferSize); in TEST_NOASM()
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.cc454 size_t buffer_size = GetBuffer()->GetCapacity(); in ComputeCheckpoint()