HomeSort by relevance Sort by last modified time
    Searched full:poolsize (Results 1 - 13 of 13) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
StringBuilderPool.java 43 final int poolSize = sInstance.mPool.size();
44 final StringBuilder sb = poolSize > 0 ? (StringBuilder) sInstance.mPool.remove(poolSize - 1)
Suggest.java 522 int poolSize = StringBuilderPool.getSize();
524 while (poolSize < prefMaxSuggestions && garbageSize > 0) {
528 poolSize++;
532 if (poolSize == prefMaxSuggestions + 1) {
533 Log.w("Suggest", "String pool got too big: " + poolSize);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_among.h 41 int poolsize; member in struct:ebt_mac_wormhash
46 + (x)->poolsize * sizeof(struct ebt_mac_wormhash_tuple) : 0)
  /external/webkit/Source/JavaScriptCore/wtf/
BumpPointerAllocator.h 113 size_t poolSize = MINIMUM_BUMP_POOL_SIZE;
114 while (poolSize < minimumCapacity) {
115 poolSize <<= 1;
118 if (!poolSize)
122 PageAllocation allocation = PageAllocation::allocate(poolSize);
  /frameworks/base/core/java/android/database/sqlite/
DatabaseConnectionPool.java 81 int poolSize = mPool.size();
88 if (mMaxPoolSize == poolSize) {
114 db = mParentDbObj.createPoolConnection((short)(poolSize + 1));
116 mPool.add(poolSize, poolObj);
121 for (int i = 0; i < poolSize; i++) {
131 for (int i = 0; i < poolSize; i++) {
  /external/srec/portable/src/
pmemblock.c 282 static BOOL CreatePool(uint32 whichPool, uint32 poolSize)
307 pMemory = malloc(poolSize * (1 << whichPool) + PARTITION_CONTROL_BLOCK_SIZE);
320 retval = pt_create(name, pMemory, 0, poolSize * (1 << whichPool) + PARTITION_CONTROL_BLOCK_SIZE,
331 memoryPool[whichPool].poolInfo[currentNumberOfPools].size = poolSize;
339 static BOOL AddPool(uint32 whichPool, uint32 poolSize)
344 return CreatePool(whichPool, poolSize);
  /hardware/ti/omap3/dspbridge/inc/
mem.h 430 * poolSize size of the physical memory pool.
438 IN DWORD poolSize);
  /hardware/ti/omap3/dspbridge/libbridge/inc/
mem.h 430 * poolSize size of the physical memory pool.
438 IN DWORD poolSize);
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorService.java 52 * public NetworkService(int port, int poolSize)
55 * pool = Executors.newFixedThreadPool(poolSize);
  /external/icu4c/i18n/
uspoof_conf.cpp 326 int32_t poolSize = stringPool->size();
328 for (i=0; i<poolSize; i++) {
  /frameworks/base/core/java/android/hardware/
SensorManager.java 393 SensorEventPool(int poolSize) {
394 mPoolSize = poolSize;
395 mNumItemsInPool = poolSize;
396 mPool = new SensorEvent[poolSize];
    [all...]
  /dalvik/vm/oo/
Class.cpp     [all...]
  /dalvik/hit/samples/
android.hprof     [all...]

Completed in 682 milliseconds