Home
last modified time | relevance | path

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

/external/lzma/CPP/Common/
DBuffer.h26 size_t GetCapacity() const { return _capacity; } in GetCapacity() function
59 if (b1.GetCapacity() != b2.GetCapacity())
61 for (size_t i = 0; i < b1.GetCapacity(); i++)
/external/lzma/CPP/7zip/Archive/7z/
D7zHandler.cpp280 if (coder.MethodID == k_Delta && coder.Props.GetCapacity() == 1) in GetProperty()
282 else if (coder.MethodID == k_LZMA && coder.Props.GetCapacity() == 5) in GetProperty()
287 else if (coder.MethodID == k_LZMA2 && coder.Props.GetCapacity() == 1) in GetProperty()
293 else if (coder.MethodID == k_PPMD && coder.Props.GetCapacity() == 5) in GetProperty()
302 else if (coder.MethodID == k_AES && coder.Props.GetCapacity() >= 1) in GetProperty()
328 else if (coder.Props.GetCapacity() > 0) in GetProperty()
331 for (size_t bi = 0; bi < coder.Props.GetCapacity(); bi++) in GetProperty()
333 if (bi > 5 && bi + 1 < coder.Props.GetCapacity()) in GetProperty()
D7zOut.cpp279 size_t propsSize = coder.Props.GetCapacity(); in WriteFolder()
551 streamSpec->Init(data, data.GetCapacity()); in EncodeStream()
554 folderItem.UnpackCRC = CrcCalc(data, data.GetCapacity()); in EncodeStream()
555 UInt64 dataSize64 = data.GetCapacity(); in EncodeStream()
D7zOut.h68 void WriteBytes(const CByteBuffer &data) { WriteBytes(data, data.GetCapacity()); } in WriteBytes()
D7zDecode.cpp232 size_t size = props.GetCapacity(); in Decode()
D7zUpdate.cpp85 size_t c1 = a1.GetCapacity(); in CompareBuffers()
86 size_t c2 = a2.GetCapacity(); in CompareBuffers()
D7zIn.cpp167 Set(archive, byteBuffer, byteBuffer.GetCapacity()); in Set()
/external/lzma/CPP/7zip/Common/
DStreamObjects.h34 void Init(CReferenceBuf *ref) { Init(ref->Buf, ref->Buf.GetCapacity(), ref); } in Init()
50 size_t GetCapacity() const { return _capacity; } in GetCapacity() function
/external/lzma/CPP/7zip/UI/Common/
DOpenArchive.cpp170 if (sig.GetCapacity() < kNumHashBytes) in OpenStream()
191 … if (sig.GetCapacity() != 0 && pos + sig.GetCapacity() <= processedSize + (kNumHashBytes - 1) && in OpenStream()
192 TestSignature(buf + pos, sig, sig.GetCapacity())) in OpenStream()
/external/v8/src/
Delements.h138 virtual uint32_t GetCapacity(FixedArrayBase* backing_store) = 0;
Delements.cc590 virtual uint32_t GetCapacity(FixedArrayBase* backing_store) { in GetCapacity() function in v8::internal::ElementsAccessorBase
1265 ForArray(arguments)->GetCapacity(arguments)); in GetCapacityImpl()
/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/chromium_org/v8/src/
Delements.h180 virtual uint32_t GetCapacity(FixedArrayBase* backing_store) = 0;
Delements.cc871 virtual uint32_t GetCapacity(FixedArrayBase* backing_store) { in GetCapacity() function in v8::internal::ElementsAccessorBase
1845 ForArray(arguments)->GetCapacity(arguments)); in GetCapacityImpl()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas227 ReturnValue := FIList.GetCapacity;
/external/lzma/CPP/7zip/UI/Console/
DMain.cpp286 for (size_t j = 0; j < sig.GetCapacity(); j++) in Main2()