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

<<11121314151617181920>>

  /external/lzma/C/
Xz.h 21 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 418 GLuint maxSize;
451 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
453 assert(width <= (GLsizei)maxSize);
454 assert(height <= (GLsizei)maxSize);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 167 public Cache(File directory, long maxSize) {
168 this(directory, maxSize, FileSystem.SYSTEM);
171 Cache(File directory, long maxSize, FileSystem fileSystem) {
172 this.cache = DiskLruCache.create(fileSystem, directory, VERSION, ENTRY_COUNT, maxSize);
  /external/opencv3/modules/cudaimgproc/src/
hough_lines.cpp 64 int linesGetResult_gpu(PtrStepSzi accum, float2* out, int* votes, int maxSize, float rho, float theta, int threshold, bool doSort);
hough_segments.cpp 68 int houghLinesProbabilistic_gpu(PtrStepSzb mask, PtrStepSzi accum, int4* out, int maxSize, float rho, float theta, int lineGap, int lineLength);
  /external/opencv3/modules/cudaoptflow/src/
brox.cpp 119 return gpuCounter.maxSize();
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUBuffer.java 800 int maxSize = bufSize;
835 if (bufSize < maxSize) {
836 maxSize = bufSize;
841 for (int i = 0; i < maxSize && charArray[i] != null; i++) {
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.h 93 uint32_t width, uint32_t height, size_t maxSize, int format,
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 83 size_t maxSize() const;
  /frameworks/compile/mclinker/lib/LD/
BranchIsland.cpp 72 size_t BranchIsland::maxSize() const {
  /libcore/ojluni/src/main/java/java/util/stream/
ReferencePipeline.java 399 public final Stream<P_OUT> limit(long maxSize) {
400 if (maxSize < 0)
401 throw new IllegalArgumentException(Long.toString(maxSize));
402 return SliceOps.makeRef(this, 0, maxSize);
  /packages/apps/TV/src/com/android/tv/util/
ImageCache.java 122 mMemoryCache.size() + " / " + mMemoryCache.maxSize() + " Kbytes");
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/
TunerHal.java 195 * {@link TunerHal#stopStreaming}. Writes at most maxSize TS frames in a buffer
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gl.py 48 'makeobj', 'maketag', 'mapcolor', 'mapw', 'mapw2', 'maxsize',
test_mmap.py 685 if sys.maxsize < 0x180000000:
686 # On 32 bit platforms the file is larger than sys.maxsize so
711 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
715 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
test_str.py 46 format_string = "%{}f".format(sys.maxsize + 1)
387 format_string = ".{}f".format(sys.maxsize + 1)
392 format_string = "{}f".format(sys.maxsize + 1)
397 format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
test_struct.py 11 IS32BIT = sys.maxsize == 0x7fffffff
550 hugecount = '{}b'.format(sys.maxsize+1)
553 hugecount2 = '{}b{}H'.format(sys.maxsize//2, sys.maxsize//2)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gl.py 48 'makeobj', 'maketag', 'mapcolor', 'mapw', 'mapw2', 'maxsize',
test_mmap.py 685 if sys.maxsize < 0x180000000:
686 # On 32 bit platforms the file is larger than sys.maxsize so
711 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
715 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
test_str.py 46 format_string = "%{}f".format(sys.maxsize + 1)
387 format_string = ".{}f".format(sys.maxsize + 1)
392 format_string = "{}f".format(sys.maxsize + 1)
397 format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
test_struct.py 11 IS32BIT = sys.maxsize == 0x7fffffff
550 hugecount = '{}b'.format(sys.maxsize+1)
553 hugecount2 = '{}b{}H'.format(sys.maxsize//2, sys.maxsize//2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gl.py 48 'makeobj', 'maketag', 'mapcolor', 'mapw', 'mapw2', 'maxsize',
test_mmap.py 685 if sys.maxsize < 0x180000000:
686 # On 32 bit platforms the file is larger than sys.maxsize so
711 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
715 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
test_str.py 46 format_string = "%{}f".format(sys.maxsize + 1)
387 format_string = ".{}f".format(sys.maxsize + 1)
392 format_string = "{}f".format(sys.maxsize + 1)
397 format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
test_struct.py 11 IS32BIT = sys.maxsize == 0x7fffffff
550 hugecount = '{}b'.format(sys.maxsize+1)
553 hugecount2 = '{}b{}H'.format(sys.maxsize//2, sys.maxsize//2)

Completed in 1446 milliseconds

<<11121314151617181920>>