Searched refs:capacity (Results 176 - 200 of 461) sorted by relevance

1234567891011>>

/external/v8/src/
H A Dzone.cc54 int capacity() const { return size_ - sizeof(Segment); } function in class:v8::internal::Segment
148 memset(start, kZapDeadByte, keep->capacity());
H A Delements.h76 // Modifies both the length and capacity of a JSArray, resizing the underlying
83 int capacity,
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkedBlock.h69 size_t capacity();
177 inline size_t MarkedBlock::capacity() function in class:JSC::MarkedBlock
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMInternal.mm48 return [[NSMapTable alloc] initWithKeyOptions:keyOptions valueOptions:valueOptions capacity:0];
/external/webkit/Source/WebCore/dom/
H A DNamedNodeMap.h74 void reserveInitialCapacity(unsigned capacity) { m_attributes.reserveInitialCapacity(capacity); } argument
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntArrayList.java116 public int capacity() { method in class:IntArrayList
/external/chromium/googleurl/src/
H A Durl_canon_stdstring.h64 str_->resize(str_->capacity());
/external/chromium/net/spdy/
H A Dspdy_frame_builder.h119 size_t capacity() const { function in class:spdy::SpdyFrameBuilder
136 // Resize the capacity, note that the input value should include the size of
/external/guava/guava/src/com/google/common/collect/
H A DLinkedHashMultimap.java94 * Constructs an empty {@code LinkedHashMultimap} with enough capacity to hold
137 Maps.capacity(multimap.keySet().size())));
139 = new LinkedHashSet<Map.Entry<K, V>>(Maps.capacity(multimap.size()));
153 return new LinkedHashSet<V>(Maps.capacity(expectedValuesPerKey));
380 setMap(new LinkedHashMap<K, Collection<V>>(Maps.capacity(distinctKeys)));
/external/icu4c/common/
H A Dcharstr.h84 * Returns a writable buffer for appending and writes the buffer's capacity to
95 * @param minCapacity required minimum capacity of the returned buffer;
97 * @param desiredCapacityHint desired capacity of the returned buffer;
99 * @param resultCapacity will be set to the capacity of the returned buffer
121 UBool ensureCapacity(int32_t capacity, int32_t desiredCapacityHint, UErrorCode &errorCode);
/external/icu4c/common/unicode/
H A Dutf8.h377 * @param i string offset, must be i<capacity
378 * @param capacity size of the string buffer
384 #define U8_APPEND(s, i, capacity, c, isError) { \
387 } else if((uint32_t)(c)<=0x7ff && (i)+1<(capacity)) { \
390 } else if((uint32_t)(c)<=0xd7ff && (i)+2<(capacity)) { \
395 (i)=utf8_appendCharSafeBody(s, (int32_t)(i), (int32_t)(capacity), c, &(isError)); \
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/
H A DEntropyComputeUtil.java50 for (int i = 0; i < positions.capacity() / 3; i++){
/external/kernel-headers/original/linux/mmc/
H A Dcard.h35 unsigned int capacity; member in struct:mmc_csd
/external/valgrind/main/drd/
H A Ddrd_vc.h66 unsigned capacity; /**< number of elements allocated for array vc. */ member in struct:__anon15051
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Ducol.h595 * @param resultCapacity capacity of the fillin buffer
639 * @param capacity capacity of the buffer
650 int32_t capacity,
659 * @param capacity capacity of the buffer
676 int32_t capacity,
1064 * @param capacity buffer capacity
1079 int32_t capacity,
[all...]
/external/webkit/Source/WebCore/icu/unicode/
H A Ducol.h595 * @param resultCapacity capacity of the fillin buffer
639 * @param capacity capacity of the buffer
650 int32_t capacity,
659 * @param capacity capacity of the buffer
676 int32_t capacity,
1064 * @param capacity buffer capacity
1079 int32_t capacity,
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebbackforwardlist.cpp399 return backForwardList->capacity();
408 * exceeds its capacity, items will be removed everytime a new item has been
461 // Clear the current list by setting capacity to 0
462 int capacity = backForwardList->capacity(); local
464 backForwardList->setCapacity(capacity);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp275 int capacity = lst->capacity(); local
278 lst->setCapacity(capacity); //revert capacity
470 return d->lst->capacity();
/external/webkit/Source/WebKit/win/
H A DWebBackForwardList.h84 virtual HRESULT STDMETHODCALLTYPE capacity(
/external/emma/core/java12/com/vladium/jcd/cls/
H A DConstantCollection.java194 ConstantCollection (final int capacity) argument
196 m_constants = capacity < 0 ? new ArrayList () : new ArrayList (capacity);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedHashMultimap.java90 * Constructs an empty {@code LinkedHashMultimap} with enough capacity to hold
133 Maps.capacity(multimap.keySet().size())));
135 = new LinkedHashSet<Map.Entry<K, V>>(Maps.capacity(multimap.size()));
149 return new LinkedHashSet<V>(Maps.capacity(expectedValuesPerKey));
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java54 assertEquals(11, queue.capacity());
63 assertEquals(11, queue.capacity());
72 assertEquals(8, queue.capacity());
82 assertEquals(8, queue.capacity());
91 assertEquals(11, queue.capacity());
101 assertEquals(11, queue.capacity());
111 assertEquals(8, queue.capacity());
123 assertEquals(11, queue.capacity());
133 assertEquals(11, queue.capacity());
143 assertEquals(8, queue.capacity());
[all...]
/external/icu4c/io/
H A Dufile.c145 int32_t capacity,
150 if (capacity < 0) {
162 result->str.fLimit = stringBuf+capacity;
144 u_fstropen(UChar *stringBuf, int32_t capacity, const char *locale) argument
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DTangentBinormalGenerator.java192 VertexData[] vertices = initVertexData(vertexBuffer.capacity() / 3);
218 VertexData[] vertices = initVertexData(vertexBuffer.capacity() / 3);
266 VertexData[] vertices = initVertexData(vertexBuffer.capacity() / 3);
277 for (int i = 2; i < vertexBuffer.capacity() / 3; i++) {
399 final int size = vertexBuffer.capacity() / 3;
627 FloatBuffer lineVertex = BufferUtils.createFloatBuffer(vertexBuffer.capacity() * 2);
628 FloatBuffer lineColor = BufferUtils.createFloatBuffer(vertexBuffer.capacity() / 3 * 4 * 2);
630 for (int i = 0; i < vertexBuffer.capacity() / 3; i++) {
676 IntBuffer lineIndex = BufferUtils.createIntBuffer(vertexBuffer.capacity() / 3 * 6);
677 FloatBuffer lineVertex = BufferUtils.createFloatBuffer(vertexBuffer.capacity() *
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashCountedSet.h43 int capacity() const;
85 inline int HashCountedSet<Value, HashFunctions, Traits>::capacity() const function in class:WTF::HashCountedSet
87 return m_impl.capacity();

Completed in 9248 milliseconds

1234567891011>>