HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 101 - 125 of 303) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
AtPhonebook.java 432 // maxSize = currSize + currSize / 2 rounded up to nearest power of 2
435 int maxSize = (currSize < 100) ? 100 : currSize;
436 maxSize += maxSize / 2;
437 return roundUpToPowerOfTwo(maxSize);
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 121 /*package*/ CounterMap(int maxSize) {
122 mMap = new HashMap<T, Integer>(maxSize);
408 * @param maxSize the maximum number of content cursors to cache
410 public ContentCache(String name, String[] baseProjection, int maxSize) {
412 mLruCache = new LruCache<String, Cursor>(maxSize) {
  /frameworks/base/libs/hwui/
ShapeCache.h 327 void setMaxSize(uint32_t maxSize);
468 void ShapeCache<Entry>::setMaxSize(uint32_t maxSize) {
469 mMaxSize = maxSize;
  /external/icu4c/test/cintltst/
callcoll.c 446 int32_t maxSize = 100;
450 OrderAndOffset *orders =(OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
456 if (size == maxSize)
458 maxSize *= 2;
459 temp = (OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
474 if (maxSize > size && size > 0)
    [all...]
  /external/aac/libAACenc/src/
aacEnc_ram.h 156 #define maxSize(a,b) ( ((a)>(b)) ? (a) : (b) )
177 #define BUF_SIZE_1 ( ALIGN_SIZE(maxSize(sizeof(PSY_DYNAMIC), \
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_popup_controller.mm 334 NSSize maxSize = {ExtensionViewMac::kMaxWidth, ExtensionViewMac::kMaxHeight};
335 return maxSize;
  /external/kernel-headers/original/linux/nfsd/
nfsfh.h 231 fh_init(struct svc_fh *fhp, int maxsize)
234 fhp->fh_maxsize = maxsize;
  /external/quake/quake/src/QW/server/
server.h 443 void ClientReliableCheckBlock(client_t *cl, int maxsize);
445 void ClientReliableWrite_Begin(client_t *cl, int c, int maxsize);
  /external/srec/portable/include/
plog.h 240 * @param maxsize The maximum number of bytes that the file may have.
247 unsigned int maxsize,
  /frameworks/base/packages/SystemUI/res/layout/
navigation_bar.xml 163 systemui:maxSize="@dimen/navigation_bar_deadzone_size_max"
307 systemui:maxSize="@dimen/navigation_bar_deadzone_size_max"
  /frameworks/base/packages/SystemUI/res/layout-sw600dp/
navigation_bar.xml 159 systemui:maxSize="@dimen/navigation_bar_deadzone_size_max"
300 systemui:maxSize="@dimen/navigation_bar_deadzone_size_max"
  /frameworks/base/services/java/com/android/server/am/
ProcessList.java 182 int maxSize = 1280*800; // 1024000 230400 870400 .264
183 float scaleDisp = ((float)(displayWidth*displayHeight)-minSize)/(maxSize-minSize);
  /packages/apps/Contacts/src/com/android/contacts/util/
ExpirableCache.java 263 public static <K, V> ExpirableCache<K, V> create(int maxSize) {
264 return create(new LruCache<K, CachedValue<V>>(maxSize));
  /external/openssl/crypto/ui/
ui.h 131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
ui_openssl.c 415 int maxsize = BUFSIZ-1; local
434 noecho_fgets(result,maxsize,tty_in);
438 p=fgets(result,maxsize,tty_in);
440 p=fgets(result,maxsize,tty_in);
  /external/openssl/include/openssl/
ui.h 131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
  /external/valgrind/main/coregrind/
pub_core_signals.h 79 extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.cpp 288 int maxSize = min(fsPath.length(), WTF_ARRAY_LENGTH(fgd->fgd[0].cFileName));
289 CopyMemory(fgd->fgd[0].cFileName, (LPCWSTR)fsPath.characters(), maxSize * sizeof(UChar));
746 unsigned maxSize = min(fsPath.length(), WTF_ARRAY_LENGTH(fgd->fgd[0].cFileName));
747 CopyMemory(fgd->fgd[0].cFileName, fsPath.characters(), maxSize * sizeof(UChar));
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-attrs/
mozilla 329 maxsize
  /system/core/libcutils/
tzstrftime.c 96 strftime_tz(s, maxsize, format, t, Locale)
98 const size_t maxsize;
107 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn, Locale);
124 if (p == s + maxsize)
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 1404 int maxsize = 0; local
1649 int maxsize = 0; local
    [all...]
  /external/quake/quake/src/WinQuake/
net_dgrm.cpp 540 len = dfunc.Read (testSocket, net_message.data, net_message.maxsize, &clientaddr);
663 len = dfunc.Read (test2Socket, net_message.data, net_message.maxsize, &clientaddr);
851 len = dfunc.Read (acceptsock, net_message.data, net_message.maxsize, &clientaddr);
1129 while ((ret = dfunc.Read (dfunc.controlSock, net_message.data, net_message.maxsize, &readaddr)) > 0)
1264 ret = dfunc.Read (newsock, net_message.data, net_message.maxsize, &readaddr);
    [all...]
  /frameworks/base/obex/javax/obex/
ObexHelper.java 688 * @param maxSize the maximum size of a packet
692 public static int findHeaderEnd(byte[] headerArray, int start, int maxSize) {
699 while ((fullLength < maxSize) && (index < headerArray.length)) {
745 * header is less then maxSize. If it is, return the length of the
749 if (fullLength < maxSize) {
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 577 * @param maxSize number of records to maintain at anyone time.
579 synchronized void setSize(int maxSize) {
580 mMaxSize = maxSize;
    [all...]
  /build/tools/releasetools/
sign_target_files_apks 141 maxsize = max([len(os.path.basename(i.filename))
152 print " signing: %-*s (%s)" % (maxsize, name, key)

Completed in 726 milliseconds

1 2 3 45 6 7 8 91011>>