HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 301 - 325 of 575) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
nfs_xdr.h 107 __u64 maxsize; member in struct:nfs_openres
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
nfs_xdr.h 107 __u64 maxsize; member in struct:nfs_openres
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/bootstrap/
scanner.c 537 yylval.extop.maxsize = atoi((char *)s->tok+1);
548 yylval.extop.maxsize = -1;
564 yylval.extop.maxsize = MAX(yylval.extop.minsize,atoi(strchr((char *)s->tok, ',')+1));
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
scanner.c 537 yylval.extop.maxsize = atoi((char *)s->tok+1);
548 yylval.extop.maxsize = -1;
564 yylval.extop.maxsize = MAX(yylval.extop.minsize,atoi(strchr((char *)s->tok, ',')+1));
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 478 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits);
479 if (Size.ugt(MaxSize))
480 Size = MaxSize + 1;
  /external/lzma/C/
XzDec.c 30 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value)
34 limit = (maxSize > 9) ? 9 : (int)maxSize;
  /frameworks/base/libs/hwui/
FontRenderer.cpp 618 uint32_t maxSize = Caches::getInstance().maxTextureSize;
619 if (paddedWidth > maxSize || paddedHeight > maxSize) {
  /frameworks/base/obex/javax/obex/
ClientOperation.java 77 * @param maxSize the maximum packet size
84 public ClientOperation(int maxSize, ClientSession p, HeaderSet header, boolean type)
91 mMaxPacketSize = maxSize;
ServerOperation.java 99 * @param maxSize the max packet size that the client will accept
103 public ServerOperation(ServerSession p, InputStream in, int request, int maxSize,
109 mMaxPacketLength = maxSize;
  /frameworks/base/tools/aapt/
StringPool.cpp 356 size_t maxSize = maxMask-1; \
357 if (strSize > maxSize) { \
358 *str++ = maxMask | ((strSize>>(chrsz*8))&maxSize); \
  /hardware/libhardware/tests/camera2/
CameraMultiStreamTests.cpp 141 int32_t maxSize = INT_MIN, tempSize;
144 if (maxSize < tempSize) {
145 maxSize = tempSize;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bisect.py 150 n = sys.maxsize
154 self.skipTest("can't create a xrange() object of size `sys.maxsize`")
163 n = sys.maxsize
test_array.py 1077 from sys import maxsize namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bisect.py 150 n = sys.maxsize
154 self.skipTest("can't create a xrange() object of size `sys.maxsize`")
163 n = sys.maxsize
test_array.py 1077 from sys import maxsize namespace
    [all...]
  /system/vold/
CommandListener.cpp 537 unsigned mirrorPos, maxSize;
539 if (Xwarp::status(&r, &mirrorPos, &maxSize)) {
543 snprintf(msg, sizeof(msg), "%s %u %u", (r ? "ready" : "not-ready"), mirrorPos, maxSize);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.cpp     [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL.cpp 418 int maxSize = this->caps()->maxTextureSize();
419 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
    [all...]
  /external/skia/src/gpu/gl/
GrGpuGL.cpp 418 int maxSize = this->caps()->maxTextureSize();
419 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 591 * @param maxSize number of records to maintain at anyone time.
593 synchronized void setSize(int maxSize) {
594 mMaxSize = maxSize;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_statevars.c 270 value[2] = ctx->Point.MaxSize;
495 value[2] = ctx->Point.MaxSize <= maxImplSize ? ctx->Point.MaxSize : maxImplSize;
    [all...]
  /external/mesa3d/src/mesa/program/
prog_statevars.c 270 value[2] = ctx->Point.MaxSize;
495 value[2] = ctx->Point.MaxSize <= maxImplSize ? ctx->Point.MaxSize : maxImplSize;
    [all...]
  /frameworks/base/core/java/android/widget/
ImageView.java 877 private int resolveAdjustedSize(int desiredSize, int maxSize,
887 result = Math.min(desiredSize, maxSize);
893 result = Math.min(Math.min(desiredSize, specSize), maxSize);
    [all...]
  /hardware/libhardware/include/hardware/
camera2.h 130 * HAL_PIXEL_FORMAT_BLOB, and the static metadata field android.jpeg.maxSize is
137 * means the jpeg_blob_id must start at byte[android.jpeg.maxSize -
139 * account for it in android.jpeg.maxSize. The JPEG data itself starts at
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 395 Log.d(TAG, "Cache size: " + btk(mBitmapHolderCache.maxSize())
396 + " + " + btk(mBitmapCache.maxSize()));
583 if (cachedBitmap.getByteCount() < mBitmapCache.maxSize() / 6) {
    [all...]

Completed in 408 milliseconds

<<11121314151617181920>>