Searched refs:pool (Results 176 - 200 of 504) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/state_trackers/egl/wayland/
H A Dnative_shm.c88 struct wl_shm_pool *pool; local
109 pool = wl_shm_create_pool(shmdpy->wl_shm, wsh.fd, wsh.size);
110 buffer = wl_shm_pool_create_buffer(pool, 0, width, height,
112 wl_shm_pool_destroy(pool);
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.h78 // parser to look for extensions in an alternate pool. However, note that
81 DynamicMessageFactory(const DescriptorPool* pool);
87 // d->file()->pool() == DescriptorPool::generated_pool(),
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DAnnotationSetPool.java32 package org.jf.dexlib2.writer.pool;
H A DBaseIndexPool.java32 package org.jf.dexlib2.writer.pool;
H A DBaseOffsetPool.java32 package org.jf.dexlib2.writer.pool;
H A DStringPool.java32 package org.jf.dexlib2.writer.pool;
H A DTypePool.java32 package org.jf.dexlib2.writer.pool;
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-keyboard.js305 var pool = [];
312 pool.push(audio);
314 this.sounds[soundId] = pool;
776 var pool = this.sounds[sound];
777 if (!pool) {
781 // Search the sound pool for a free resource.
782 for (var i = 0; i < pool.length; i++) {
783 if (pool[i].paused) {
784 pool[i].play();
846 var pool
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrProcessor.cpp46 static void DeleteTLS(void* pool) { argument
47 SkDELETE(reinterpret_cast<GrMemoryPool*>(pool));
/external/chromium_org/third_party/webrtc/base/
H A Dhttprequest.cc74 ReuseSocketPool pool(&factory);
75 client_.set_pool(&pool);
/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h255 /// Does this pool, or any of its ancestors, contain any diagnostics?
260 /// Add a diagnostic to this pool.
265 /// Steal the diagnostics from the given pool.
266 void steal(DelayedDiagnosticPool &pool) { argument
267 if (pool.Diagnostics.empty()) return;
270 Diagnostics = std::move(pool.Diagnostics);
272 Diagnostics.append(pool.pool_begin(), pool.pool_end());
274 pool.Diagnostics.clear();
285 /// Add a diagnostic to the current delay pool
[all...]
H A DAttributeList.h472 /// individual attributes which are deallocated with the pool.
520 /// Reclaim all the attributes in the given pool chain, which is
541 // We don't care about the order of the pool.
547 void takePool(AttributeList *pool);
550 /// Create a new pool for a factory.
553 /// Move the given pool's allocations to this pool.
554 AttributePool(AttributePool &pool) : Factory(pool.Factory), Head(pool
799 mutable AttributePool pool; member in class:clang::AttributeList
[all...]
/external/deqp/framework/delibs/depool/
H A DdePoolArray.h23 * \brief Memory pool array class.
40 deMemPool* pool; /*!< Pool from which all memory is allocated from. */ member in struct:dePoolArray_s
52 dePoolArray* dePoolArray_create (deMemPool* pool, int elementSize);
61 * \brief Declare a template pool array class.
65 * This macro declares a pool array with all the necessary functions for
66 * operating with it. All allocated memory is taken from the memory pool
80 * Array* Array_create (deMemPool* pool);
96 deMemPool* pool; \
106 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \
118 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool) \
[all...]
H A DdePoolMultiSet.h23 * \brief Memory pool multiset class.
38 * \brief Declare a template pool multiset class interface.
52 * MultiSet* MultiSet_create (deMemPool* pool);
67 deMemPool* pool; \
72 TYPENAME* TYPENAME##_create (deMemPool* pool); \
110 * \brief Implement a template pool multiset class.
125 TYPENAME* TYPENAME##_create (deMemPool* pool) \
128 TYPENAME* set = DE_POOL_NEW(pool, TYPENAME); \
134 set->pool = pool; \
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DDownsampler.java125 * @param pool A pool of recycled bitmaps
131 public Bitmap decode(InputStream is, BitmapPool pool, int outWidth, int outHeight, DecodeFormat decodeFormat) { argument
166 final Bitmap downsampled = downsampleWithSize(bis, options, pool, inWidth, inHeight, sampleSize, decodeFormat);
170 rotated = TransformationUtils.rotateImageExif(downsampled, pool, orientation);
172 if (downsampled != rotated && !pool.put(downsampled)) {
184 BitmapPool pool, int inWidth, int inHeight, int sampleSize, DecodeFormat decodeFormat) {
191 setInBitmap(options, pool.get(inWidth, inHeight, config));
183 downsampleWithSize(RecyclableBufferedInputStream bis, BitmapFactory.Options options, BitmapPool pool, int inWidth, int inHeight, int sampleSize, DecodeFormat decodeFormat) argument
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotation.java53 ConstPool pool; field in class:Annotation
62 * @param type the index into the constant pool table.
66 * @param cp the constant pool table.
71 pool = cp;
81 * @param cp the constant pool table.
94 * @param cp the constant pool table.
124 * @param cp the constant pool table.
174 * @param nameIndex the index into the constant pool table.
195 p.name = pool.addUtf8Info(name);
204 String name = pool
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java26 ClassPool pool = ClassPool.getDefault();
27 generate(pool);
28 CtClass clazz = pool.get("test.ScannerTest$GeneratedTest");
78 private static void generate(ClassPool pool) throws CannotCompileException, IOException, NotFoundException { argument
106 CtClass clazz = pool.makeClass("test.ScannerTest$GeneratedTest");
110 CtClass stringClass = pool.get("java.lang.String");
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDescriptors.java116 final GenericDescriptor result = pool.findSymbol(name);
140 final GenericDescriptor result = pool.findSymbol(name);
164 final GenericDescriptor result = pool.findSymbol(name);
187 final GenericDescriptor result = pool.findSymbol(name);
220 final DescriptorPool pool = new DescriptorPool(dependencies);
222 new FileDescriptor(proto, dependencies, pool);
329 private final DescriptorPool pool; field in class:Descriptors.FileDescriptor
333 final DescriptorPool pool)
335 this.pool = pool;
331 FileDescriptor(final FileDescriptorProto proto, final FileDescriptor[] dependencies, final DescriptorPool pool) argument
[all...]
/external/chromium_org/third_party/icu/source/data/
H A DMakefile.in370 RES_FILES = $(ALL_RES_SRC:%.txt=$(BUILDDIR)/%.res) $(BUILDDIR)/$(INDEX_NAME).res $(BUILDDIR)/pool.res
371 RES_FILES_SHORT = $(ALL_RES_SRC:%.txt=%.res) $(INDEX_NAME).res pool.res
376 CURR_FILES = $(CURR_SRC:%.txt=$(CURRBLDDIR)/%.res) $(CURRBLDDIR)/$(INDEX_NAME).res $(CURRBLDDIR)/pool.res
377 CURR_FILES_SHORT = $(CURR_SRC:%.txt=$(CURR_TREE)/%.res) $(CURR_TREE)/$(INDEX_NAME).res $(CURR_TREE)/pool.res
381 LANG_FILES = $(LANG_SRC:%.txt=$(LANGBLDDIR)/%.res) $(LANGBLDDIR)/$(INDEX_NAME).res $(LANGBLDDIR)/pool.res
382 LANG_FILES_SHORT = $(LANG_SRC:%.txt=$(LANG_TREE)/%.res) $(LANG_TREE)/$(INDEX_NAME).res $(LANG_TREE)/pool.res
386 REGION_FILES = $(REGION_SRC:%.txt=$(REGIONBLDDIR)/%.res) $(REGIONBLDDIR)/$(INDEX_NAME).res $(REGIONBLDDIR)/pool.res
387 REGION_FILES_SHORT = $(REGION_SRC:%.txt=$(REGION_TREE)/%.res) $(REGION_TREE)/$(INDEX_NAME).res $(REGION_TREE)/pool.res
391 ZONE_FILES = $(ZONE_SRC:%.txt=$(ZONEBLDDIR)/%.res) $(ZONEBLDDIR)/$(INDEX_NAME).res $(ZONEBLDDIR)/pool.res
392 ZONE_FILES_SHORT = $(ZONE_SRC:%.txt=$(ZONE_TREE)/%.res) $(ZONE_TREE)/$(INDEX_NAME).res $(ZONE_TREE)/pool
[all...]
/external/icu/icu4c/source/data/
H A DMakefile.in364 RES_FILES = $(ALL_RES_SRC:%.txt=$(BUILDDIR)/%.res) $(BUILDDIR)/$(INDEX_NAME).res $(BUILDDIR)/pool.res
365 RES_FILES_SHORT = $(ALL_RES_SRC:%.txt=%.res) $(INDEX_NAME).res pool.res
370 CURR_FILES = $(CURR_SRC:%.txt=$(CURRBLDDIR)/%.res) $(CURRBLDDIR)/$(INDEX_NAME).res $(CURRBLDDIR)/pool.res
371 CURR_FILES_SHORT = $(CURR_SRC:%.txt=$(CURR_TREE)/%.res) $(CURR_TREE)/$(INDEX_NAME).res $(CURR_TREE)/pool.res
375 LANG_FILES = $(LANG_SRC:%.txt=$(LANGBLDDIR)/%.res) $(LANGBLDDIR)/$(INDEX_NAME).res $(LANGBLDDIR)/pool.res
376 LANG_FILES_SHORT = $(LANG_SRC:%.txt=$(LANG_TREE)/%.res) $(LANG_TREE)/$(INDEX_NAME).res $(LANG_TREE)/pool.res
380 REGION_FILES = $(REGION_SRC:%.txt=$(REGIONBLDDIR)/%.res) $(REGIONBLDDIR)/$(INDEX_NAME).res $(REGIONBLDDIR)/pool.res
381 REGION_FILES_SHORT = $(REGION_SRC:%.txt=$(REGION_TREE)/%.res) $(REGION_TREE)/$(INDEX_NAME).res $(REGION_TREE)/pool.res
385 ZONE_FILES = $(ZONE_SRC:%.txt=$(ZONEBLDDIR)/%.res) $(ZONEBLDDIR)/$(INDEX_NAME).res $(ZONEBLDDIR)/pool.res
386 ZONE_FILES_SHORT = $(ZONE_SRC:%.txt=$(ZONE_TREE)/%.res) $(ZONE_TREE)/$(INDEX_NAME).res $(ZONE_TREE)/pool
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DMethodInfo.java69 * a constant pool table
99 * a constant pool table
122 * Copies all constant pool items to a given new constant pool
217 * Returns a constant pool table used by this method.
349 * The added attribute must share the same constant pool table as this
371 * The added attribute must share the same constant pool table as this
388 * @param pool used for making type hierarchy.
394 public void rebuildStackMapIf6(ClassPool pool, ClassFile cf) argument
398 rebuildStackMap(pool);
413 rebuildStackMap(ClassPool pool) argument
430 rebuildStackMapForME(ClassPool pool) argument
[all...]
/external/skia/tools/
H A Dbench_pictures_main.cpp170 SkDiscardableMemoryPool* pool = SkGetGlobalDiscardableMemoryPool(); local
172 SkASSERT(pool->getRAMUsed() == 0);
174 pool->setRAMBudget(SK_MaxU32);
201 int cacheHits = pool->getCacheHits();
202 int cacheMisses = pool->getCacheMisses();
203 pool->resetCacheHitsAndMisses();
213 size_t bytes = pool->getRAMUsed();
/external/chromium_org/net/socket/
H A Dwebsocket_transport_client_socket_pool_unittest.cc378 WebSocketTransportClientSocketPool* pool)
380 pool_(pool),
560 WebSocketTransportClientSocketPool pool(kMaxSockets,
582 handle.Init("a", params_, LOW, callback.callback(), &pool, BoundNetLog());
601 WebSocketTransportClientSocketPool pool(kMaxSockets,
625 handle.Init("a", params_, LOW, callback.callback(), &pool, BoundNetLog());
641 WebSocketTransportClientSocketPool pool(kMaxSockets,
658 handle.Init("a", params_, LOW, callback.callback(), &pool, BoundNetLog());
673 WebSocketTransportClientSocketPool pool(kMaxSockets,
689 handle.Init("a", params_, LOW, callback.callback(), &pool, BoundNetLo
377 RequestSocketCallback(ClientSocketHandle* handle, WebSocketTransportClientSocketPool* pool) argument
[all...]
H A Dclient_socket_pool_manager.cc26 // Limit of sockets of each socket pool.
279 HttpProxyClientSocketPool* pool = local
282 RequestSocketsForPool(pool, connection_group, http_proxy_params,
289 pool, net_log);
293 SOCKSClientSocketPool* pool = local
296 RequestSocketsForPool(pool, connection_group, socks_params,
302 request_priority, callback, pool,
314 TransportClientSocketPool* pool = local
317 RequestSocketsForPool(pool, connection_group, tcp_params,
324 pool, net_lo
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassWriter.java159 * The type of CONSTANT_Class constant pool items.
164 * The type of CONSTANT_Fieldref constant pool items.
169 * The type of CONSTANT_Methodref constant pool items.
174 * The type of CONSTANT_InterfaceMethodref constant pool items.
179 * The type of CONSTANT_String constant pool items.
184 * The type of CONSTANT_Integer constant pool items.
189 * The type of CONSTANT_Float constant pool items.
194 * The type of CONSTANT_Long constant pool items.
199 * The type of CONSTANT_Double constant pool items.
204 * The type of CONSTANT_NameAndType constant pool item
253 final ByteVector pool; field in class:ClassWriter
[all...]

Completed in 3435 milliseconds

1234567891011>>