Searched defs:initialSize (Results 1 - 25 of 51) sorted by relevance

123

/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringWriter.java39 * size of <code>initialSize</code> characters. The StringBuffer is also
42 public Support_StringWriter(int initialSize) { argument
43 if (initialSize >= 0) {
44 buf = new StringBuffer(initialSize);
/external/javassist/src/main/javassist/bytecode/
H A DLongVector.java30 public LongVector(int initialSize) { argument
31 int vsize = ((initialSize >> ABITS) & ~(VSIZE - 1)) + VSIZE;
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
H A DGwtWorkarounds.java96 static CharOutput stringBuilderOutput(int initialSize) { argument
97 final StringBuilder builder = new StringBuilder(initialSize);
/external/guava/guava/src/com/google/common/io/
H A DGwtWorkarounds.java210 static CharOutput stringBuilderOutput(int initialSize) { argument
211 final StringBuilder builder = new StringBuilder(initialSize);
/external/deqp/framework/delibs/debase/
H A DdeMemory.c293 size_t initialSize; member in struct:__anon4183
331 void* const ptr = deAlignedMalloc(s_alignedReallocCases[caseNdx].initialSize, s_alignedReallocCases[caseNdx].alignment);
336 deMemset(ptr, 0xaa, s_alignedReallocCases[caseNdx].initialSize);
340 const size_t numPreserved = s_alignedReallocCases[caseNdx].newSize < s_alignedReallocCases[caseNdx].initialSize
342 : s_alignedReallocCases[caseNdx].initialSize;
/external/skia/src/gpu/ccpr/
H A DGrCCPRAtlas.cpp51 int initialSize = GrNextPow2(SkTMax(minWidth, minHeight)); variable
52 initialSize = SkTMax(int(kMinSize), initialSize);
53 initialSize = SkTMin(initialSize, fMaxAtlasSize);
54 fHeight = fWidth = initialSize;
55 fTopNode = skstd::make_unique<Node>(nullptr, 0, 0, initialSize, initialSize);
/external/swiftshader/src/OpenGL/libGL/
H A DIndexDataManager.cpp172 StreamingIndexBuffer::StreamingIndexBuffer(unsigned int initialSize) : mIndexBuffer(nullptr), mBufferSize(initialSize) argument
174 if(initialSize > 0)
176 mIndexBuffer = new sw::Resource(initialSize + 16);
180 ERR("Out of memory allocating an index buffer of size %u.", initialSize);
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DIndexDataManager.cpp154 StreamingIndexBuffer::StreamingIndexBuffer(unsigned int initialSize) : mIndexBuffer(nullptr), mBufferSize(initialSize) argument
156 if(initialSize > 0)
158 mIndexBuffer = new sw::Resource(initialSize + 16);
162 ERR("Out of memory allocating an index buffer of size %u.", initialSize);
/external/swiftshader/src/OpenGL/libGLESv2/
H A DIndexDataManager.cpp168 StreamingIndexBuffer::StreamingIndexBuffer(size_t initialSize) : mIndexBuffer(NULL), mBufferSize(initialSize) argument
170 if(initialSize > 0)
172 mIndexBuffer = new sw::Resource(initialSize + 16);
176 ERR("Out of memory allocating an index buffer of size %u.", initialSize);
/external/flatbuffers/net/FlatBuffers/
H A DFlatBufferBuilder.cs53 /// <param name="initialSize">
56 public FlatBufferBuilder(int initialSize) argument
58 if (initialSize <= 0)
59 throw new ArgumentOutOfRangeException("initialSize",
60 initialSize, "Must be greater than zero");
61 _space = initialSize;
62 _bb = new ByteBuffer(new byte[initialSize]);
/external/deqp/external/vulkancts/modules/vulkan/wsi/
H A DvktWsiSurfaceTests.cpp241 MovePtr<Window> createWindow (const Display& display, const Maybe<UVec2>& initialSize) argument
245 return MovePtr<Window>(display.createWindow(initialSize));
H A DvktWsiDisplayTimingTests.cpp200 de::MovePtr<vk::wsi::Window> createWindow (const vk::wsi::Display& display, const Maybe<UVec2>& initialSize) argument
204 return de::MovePtr<vk::wsi::Window>(display.createWindow(initialSize));
H A DvktWsiIncrementalPresentTests.cpp203 de::MovePtr<vk::wsi::Window> createWindow (const vk::wsi::Display& display, const Maybe<UVec2>& initialSize) argument
207 return de::MovePtr<vk::wsi::Window>(display.createWindow(initialSize));
H A DvktWsiSharedPresentableImageTests.cpp207 de::MovePtr<vk::wsi::Window> createWindow (const vk::wsi::Display& display, const Maybe<UVec2>& initialSize) argument
211 return de::MovePtr<vk::wsi::Window>(display.createWindow(initialSize));
H A DvktWsiSwapchainTests.cpp264 MovePtr<Window> createWindow (const Display& display, const Maybe<UVec2>& initialSize) argument
268 return MovePtr<Window>(display.createWindow(initialSize));
/external/icu/icu4c/source/i18n/
H A Duspoof_impl.cpp615 uint32_t initialSize = (sizeof(SpoofDataHeader) + 15) & ~15; local
616 U_ASSERT(initialSize == sizeof(SpoofDataHeader));
618 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize));
619 fMemLimit = initialSize;
624 uprv_memset(fRawData, 0, initialSize);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1080 ANTLR3_UINT32 initialSize; local
1086 initialSize = sizeHint;
1090 initialSize = ANTLR3_VECTOR_INTERNAL_SIZE;
1095 vector->elements = (pANTLR3_VECTOR_ELEMENT)ANTLR3_MALLOC((size_t)(sizeof(ANTLR3_VECTOR_ELEMENT) * initialSize));
1111 vector->elementsSize = initialSize; // Available entries
/external/guice/lib/build/
H A Dguava-testlib-16.0.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/libxml2/
H A Dxpath.c785 int initialSize)
788 if (initialSize <= 0)
789 initialSize = 1;
790 list->items = (void **) xmlMalloc(initialSize * sizeof(void *));
797 list->size = initialSize;
826 xmlPointerListCreate(int initialSize) argument
837 if (initialSize > 0) {
838 xmlPointerListAddSize(ret, NULL, initialSize);
783 xmlPointerListAddSize(xmlPointerListPtr list, void *item, int initialSize) argument
H A Dxmlschemas.c3380 int initialSize,
3384 if (initialSize <= 0)
3385 initialSize = 1;
3387 initialSize * sizeof(void *));
3392 list->sizeItems = initialSize;
3446 int initialSize,
3451 if (initialSize <= 0)
3452 initialSize = 1;
3454 initialSize * sizeof(void *));
3459 list->sizeItems = initialSize;
3379 xmlSchemaItemListAddSize(xmlSchemaItemListPtr list, int initialSize, void *item) argument
3694 xmlSchemaAddItemSize(xmlSchemaItemListPtr *list, int initialSize, void *item) argument
[all...]
/external/webrtc/webrtc/examples/androidapp/third_party/autobanh/
H A Dautobanh.jarMETA-INF/MANIFEST.MF de/tavendo/autobahn/ByteBufferInputStream.class ByteBufferInputStream.java package de.tavendo ...
/external/guice/extensions/persist/lib/
H A Dognl-2.6.7.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/ASTAdd.class ASTAdd.java package ognl ...
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
H A Dhibernate-search.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/search/ org/hibernate/search/annotations/ ...
/external/guice/extensions/struts2/lib/
H A Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/internal/ ognl/SimpleNode.class SimpleNode ...

Completed in 1693 milliseconds

123