/external/emma/core/java12/com/vladium/jcd/cls/ |
D | ElementFactory.java | 21 public static IAttributeCollection newAttributeCollection (final int capacity) in newAttributeCollection() 26 public static IConstantCollection newConstantCollection (final int capacity) in newConstantCollection() 31 public static IFieldCollection newFieldCollection (final int capacity) in newFieldCollection() 36 public static IInterfaceCollection newInterfaceCollection (final int capacity) in newInterfaceCollection() 41 public static IMethodCollection newMethodCollection (final int capacity) in newMethodCollection()
|
/external/google-fruit/include/fruit/impl/util/ |
D | hash_helpers.defn.h | 32 inline HashSet<T> createHashSet(size_t capacity) { in createHashSet() 37 inline HashSetWithArenaAllocator<T> createHashSetWithArenaAllocator(size_t capacity, MemoryPool& me… in createHashSetWithArenaAllocator() 43 createHashSetWithArenaAllocatorAndCustomFunctors(size_t capacity, MemoryPool& memory_pool, Hasher h… in createHashSetWithArenaAllocatorAndCustomFunctors() 55 inline HashMap<Key, Value> createHashMap(size_t capacity) { in createHashMap() 60 inline HashMapWithArenaAllocator<Key, Value> createHashMapWithArenaAllocator(std::size_t capacity, in createHashMapWithArenaAllocator() 68 createHashMapWithArenaAllocatorAndCustomFunctors(size_t capacity, MemoryPool& memory_pool, Hasher h… in createHashMapWithArenaAllocatorAndCustomFunctors()
|
/external/google-fruit/include/fruit/impl/normalized_component_storage/ |
D | normalized_component_storage.defn.h | 26 NormalizedComponentStorage::createLazyComponentWithNoArgsSet(size_t capacity, MemoryPool& memory_po… in createLazyComponentWithNoArgsSet() 33 NormalizedComponentStorage::createLazyComponentWithArgsSet(size_t capacity, MemoryPool& memory_pool… in createLazyComponentWithArgsSet() 40 NormalizedComponentStorage::createLazyComponentWithNoArgsReplacementMap(size_t capacity, MemoryPool… in createLazyComponentWithNoArgsReplacementMap() 47 NormalizedComponentStorage::createLazyComponentWithArgsReplacementMap(size_t capacity, MemoryPool& … in createLazyComponentWithArgsReplacementMap()
|
/external/perfetto/include/perfetto/ext/base/ |
D | container_annotations.h | 26 #define ANNOTATE_NEW_BUFFER(buffer, capacity, new_size) \ argument 32 #define ANNOTATE_DELETE_BUFFER(buffer, capacity, old_size) \ argument 38 #define ANNOTATE_CHANGE_SIZE(buffer, capacity, old_size, new_size) \ argument 50 #define ANNOTATE_NEW_BUFFER(buffer, capacity, new_size) argument 51 #define ANNOTATE_DELETE_BUFFER(buffer, capacity, old_size) argument 52 #define ANNOTATE_CHANGE_SIZE(buffer, capacity, old_size, new_size) argument
|
/external/icu/icu4c/source/layoutex/ |
D | RunArrays.cpp | 52 void RunArray::init(le_int32 capacity) in init() 94 void FontRuns::init(le_int32 capacity) in init() 100 void FontRuns::grow(le_int32 capacity) in grow() 146 void LocaleRuns::init(le_int32 capacity) in init() 152 void LocaleRuns::grow(le_int32 capacity) in grow() 198 void ValueRuns::init(le_int32 capacity) in init() 204 void ValueRuns::grow(le_int32 capacity) in grow()
|
/external/emma/core/java12/com/vladium/util/ |
D | ByteArrayOStream.java | 52 final int capacity = pos + 2; in write2() local 76 final int capacity = pos + 3; in write3() local 101 final int capacity = pos + 4; in write4() local 226 public final int capacity () in capacity() method in ByteArrayOStream 244 final int capacity = pos + 1; in write() local 273 final int capacity = pos + length; in write() local
|
/external/icu/icu4c/source/common/ |
D | uscript.cpp | 33 UScriptCode *dest, int32_t capacity, UErrorCode *err) { in setCodes() 47 setOneCode(UScriptCode script, UScriptCode *scripts, int32_t capacity, UErrorCode *err) { in setOneCode() 59 UScriptCode *scripts, int32_t capacity, UErrorCode *err) { in getCodesFromLocale() 101 int32_t capacity, in uscript_getCode()
|
D | utrace.cpp | 92 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { in outputChar() 128 char *outBuf, int32_t *outIx, int32_t capacity) { in outputHexBytes() 138 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { in outputPtrBytes() 157 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t ind… in outputString() 172 char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { in outputUString() 191 utrace_vformat(char *outBuf, int32_t capacity, int32_t indent, const char *fmt, va_list args) { in utrace_vformat() 385 utrace_format(char *outBuf, int32_t capacity, in utrace_format()
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | BufferAllocator.java | 60 public abstract AllocatedBuffer allocateHeapBuffer(int capacity); in allocateHeapBuffer() 63 public abstract AllocatedBuffer allocateDirectBuffer(int capacity); in allocateDirectBuffer()
|
/external/tensorflow/tensorflow/python/training/ |
D | input.py | 128 capacity=32, argument 215 capacity=32, argument 286 capacity=32, shared_name=None, name=None): argument 329 capacity=32, shared_name=None, name=None): argument 760 def _batch(tensors, batch_size, keep_input, num_threads=1, capacity=32, argument 800 def _batch_join(tensors_list, batch_size, keep_input, capacity=32, argument 835 def _shuffle_batch(tensors, batch_size, capacity, min_after_dequeue, argument 879 def _shuffle_batch_join(tensors_list, batch_size, capacity, argument 929 def batch(tensors, batch_size, num_threads=1, capacity=32, argument 1028 def maybe_batch(tensors, keep_input, batch_size, num_threads=1, capacity=32, argument [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
D | LoadPathToFileCache.java | 37 public LoadPathToFileCache(int capacity) { in LoadPathToFileCache() 116 private final int capacity; field in LoadPathToFileCache.LRUCache 118 LRUCache(int capacity) { in LRUCache()
|
/external/testng/src/test/java/test/morten/ |
D | SampleTest.java | 7 private int capacity = 10; field in SampleTest 24 public SampleTest(int capacity, float loadFactor) in SampleTest()
|
/external/icu/icu4c/source/i18n/ |
D | upluralrules.cpp | 83 UChar *keyword, int32_t capacity, in uplrules_select() 100 UChar *keyword, int32_t capacity, in uplrules_selectFormatted() 122 UChar *keyword, int32_t capacity, in uplrules_selectForRange() 142 UChar *keyword, int32_t capacity, in uplrules_selectWithFormat()
|
D | collationdatawriter.cpp | 56 RuleBasedCollator::cloneBinary(uint8_t *dest, int32_t capacity, UErrorCode &errorCode) const { in cloneBinary() 80 int32_t indexes[], uint8_t *dest, int32_t capacity, in writeBase() 90 int32_t indexes[], uint8_t *dest, int32_t capacity, in writeTailoring() 102 int32_t indexes[], uint8_t *dest, int32_t capacity, in write()
|
D | udatpg.cpp | 61 UChar *bestPattern, int32_t capacity, in udatpg_getBestPattern() 72 UChar *bestPattern, int32_t capacity, in udatpg_getBestPatternWithOptions() 89 UChar *skeleton, int32_t capacity, in udatpg_getSkeleton() 107 UChar *skeleton, int32_t capacity, in udatpg_getBaseSkeleton() 126 UChar *conflictingPattern, int32_t capacity, int32_t *pLength, in udatpg_addPattern() 188 UChar *fieldName, int32_t capacity, in udatpg_getFieldDisplayName()
|
/external/guava/android/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | MonitorBenchmark.java | 33 int capacity; field in MonitorBenchmark 60 int capacity = this.capacity; in addsAndRemoves() local
|
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | MonitorBenchmark.java | 33 int capacity; field in MonitorBenchmark 60 int capacity = this.capacity; in addsAndRemoves() local
|
/external/webrtc/rtc_base/ |
D | buffer.h | 90 BufferT(size_t size, size_t capacity) in BufferT() 106 BufferT(U* data, size_t size, size_t capacity) : BufferT(size, capacity) { in BufferT() 149 size_t capacity() const { in capacity() function 335 void EnsureCapacity(size_t capacity) { in EnsureCapacity() 358 void EnsureCapacityWithHeadroom(size_t capacity, bool extra_headroom) { in EnsureCapacityWithHeadroom()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/ |
D | ArrayChannelTest.kt | 150 val capacity = 42 in <lambda>() constant 157 val capacity = 42 in <lambda>() constant
|
/external/vixl/src/ |
D | assembler-base-vixl.h | 41 explicit AssemblerBase(size_t capacity) in AssemblerBase() 43 AssemblerBase(byte* buffer, size_t capacity) in AssemblerBase()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | Queues.java | 54 public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) { in newArrayBlockingQueue() 126 public static <E> LinkedBlockingDeque<E> newLinkedBlockingDeque(int capacity) { in newLinkedBlockingDeque() 161 public static <E> LinkedBlockingQueue<E> newLinkedBlockingQueue(int capacity) { in newLinkedBlockingQueue()
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/ |
D | trt_lru_cache.h | 50 explicit LRUCache(size_t capacity) : capacity_(capacity) {} in LRUCache() 52 size_t capacity() const { return capacity_; } in capacity() function 54 void reserve(size_t capacity) { in reserve()
|
/external/guava/guava/src/com/google/common/collect/ |
D | Queues.java | 54 public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) { in newArrayBlockingQueue() 126 public static <E> LinkedBlockingDeque<E> newLinkedBlockingDeque(int capacity) { in newLinkedBlockingDeque() 161 public static <E> LinkedBlockingQueue<E> newLinkedBlockingQueue(int capacity) { in newLinkedBlockingQueue()
|
/external/abseil-cpp/absl/container/internal/ |
D | hashtablez_sampler.h | 73 std::atomic<size_t> capacity; member 111 size_t capacity) { in RecordStorageChangedSlow() 153 inline void RecordStorageChanged(size_t size, size_t capacity) { in RecordStorageChanged()
|
/external/webrtc/third_party/abseil-cpp/absl/container/internal/ |
D | hashtablez_sampler.h | 73 std::atomic<size_t> capacity; member 111 size_t capacity) { in RecordStorageChangedSlow() 153 inline void RecordStorageChanged(size_t size, size_t capacity) { in RecordStorageChanged()
|