HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 26 - 50 of 573) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 351 unsigned maxsize )
357 if( maxsize <= size )
372 if (maxsize <= size)
386 if (maxsize <= size) {
400 if (maxsize <= size) {
416 if( maxsize <= size )
435 if (maxsize <= size)
449 if (maxsize <= size) {
465 if (maxsize <= size) {
547 unsigned maxsize )
    [all...]
  /external/clang/utils/ABITest/
TypeGen.py 320 def __init__(self, typeGen, maxSize, useIncomplete=False, useZero=False):
325 self.maxSize = int(maxSize)
326 self.W = useIncomplete + useZero + self.maxSize
348 def __init__(self, typeGen, useUnion, maxSize):
352 self.maxSize = int(maxSize)
357 if self.maxSize is aleph0:
361 for i in range(self.maxSize+1):
369 fields = map(self.typeGen.get,getNthTuple(I,self.maxSize,self.typeGen.cardinality)
    [all...]
Enumeration.py 161 def getNthTuple(N, maxSize=aleph0, maxElement=aleph0, useDivmod=False, useLeftToRight=False):
162 """getNthTuple(N, maxSize, maxElement) -> x
164 Return the N-th tuple where len(x) < maxSize and for y in x, 0 <=
172 if maxSize is aleph0:
174 bounds = [maxElement**i for i in range(1, maxSize+1)]
177 S,M = getNthPairBounded(N, maxSize, useDivmod=useDivmod)
179 def getNthTupleChecked(N, maxSize=aleph0, maxElement=aleph0,
181 # FIXME: maxsize is inclusive
182 t = GNT(N,maxSize,maxElement,useDivmod,useLeftToRight)
183 assert len(t) <= maxSize
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.h 27 size_t read(char* buf, size_t maxSize);
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
large_allocation_leak.cc 10 // maxsize in primary allocator is always less than this (1 << 25).
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeBackgroundService.java 92 int maxSize = display.getMaximumSizeDimension();
93 maxSize *= 2;
94 lp.x = maxSize;
95 lp.y = maxSize;
  /system/vold/
Xwarp.h 31 static int status(bool *ready, unsigned *mirrorPos, unsigned *maxSize);
  /external/chromium_org/net/quic/congestion_control/
quic_max_sized_map.h 29 size_t MaxSize() const {
38 if (Size() == MaxSize()) {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-319722-TypedArrays.js 30 var maxSize = %MaxSmi() + 1;
33 new constr(maxSize);
  /frameworks/ex/variablespeed/jni/
decode_buffer.cc 25 DecodeBuffer::DecodeBuffer(size_t sizeOfOneBuffer, size_t maxSize)
26 : sizeOfOneBuffer_(sizeOfOneBuffer), maxSize_(maxSize),
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ObjectCache.java 45 public ObjectCache(Callback<T> callbacks, int maxSize) {
47 mMaxSize = maxSize;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 4 * sys.maxint -> sys.maxsize
13 MAPPING = {"sys": {"maxint" : "maxsize"},
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 4 * sys.maxint -> sys.maxsize
13 MAPPING = {"sys": {"maxint" : "maxsize"},
  /external/chromium_org/third_party/icu/source/tools/gencmn/
gencmn.c 51 uint32_t maxSize;
75 "%csage: %s [ -h, -?, --help ] [ -v, --verbose ] [ -c, --copyright ] [ -C, --comment comment ] [ -d, --destdir dir ] [ -n, --name filename ] [ -t, --type filetype ] [ -S, --source tocfile ] [ -e, --entrypoint name ] maxsize listfile\n", argc < 0 ? 'u' : 'U', *argv);
79 "file from specified files. Omit any files larger than maxsize, if maxsize > 0.\n");
104 maxSize=(uint32_t)uprv_strtoul(argv[1], NULL, 0);
113 maxSize, sourceTOC, verbose, NULL);
gencmn.8.in 41 .I maxsize
56 .I maxsize
58 .I maxsize
  /external/icu4c/tools/gencmn/
gencmn.c 51 uint32_t maxSize;
75 "%csage: %s [ -h, -?, --help ] [ -v, --verbose ] [ -c, --copyright ] [ -C, --comment comment ] [ -d, --destdir dir ] [ -n, --name filename ] [ -t, --type filetype ] [ -S, --source tocfile ] [ -e, --entrypoint name ] maxsize listfile\n", argc < 0 ? 'u' : 'U', *argv);
79 "file from specified files. Omit any files larger than maxsize, if maxsize > 0.\n");
104 maxSize=(uint32_t)uprv_strtoul(argv[1], NULL, 0);
113 maxSize, sourceTOC, verbose, NULL);
gencmn.8.in 41 .I maxsize
56 .I maxsize
58 .I maxsize
  /external/skia/tests/
PackBitsTest.cpp 53 size_t maxSize = SkPackBits::ComputeMaxSize16(size);
54 REPORTER_ASSERT(reporter, maxSize >= dstSize);
88 size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount);
91 REPORTER_ASSERT(reporter, dstSize <= maxSize);
107 size_t maxSize = SkPackBits::ComputeMaxSize8(size);
108 REPORTER_ASSERT(reporter, maxSize >= dstSize);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegProcessor.cpp 325 size_t JpegProcessor::findJpegSize(uint8_t* jpegBuffer, size_t maxSize) {
329 uint8_t *header = jpegBuffer + (maxSize - sizeof(struct camera2_jpeg_blob));
333 if (size > 0 && size <= maxSize - sizeof(struct camera2_jpeg_blob)) {
356 while (size <= maxSize - MARKER_LENGTH) {
363 if (type == EOI || size > maxSize - sizeof(segment_t)) {
375 for ( ; size <= maxSize - MARKER_LENGTH; size++) {
387 if (size > maxSize) {
388 ALOGW("JPEG size %d too large, reducing to maxSize %d", size, maxSize);
389 size = maxSize;
    [all...]
  /frameworks/base/services/java/com/android/server/
BootReceiver.java 161 String headers, String filename, int maxSize, String tag) throws IOException {
177 db.addText(tag, headers + FileUtils.readTextFile(file, maxSize, "[[TRUNCATED]]\n"));
181 String headers, int maxSize, String tag) throws IOException {
197 String log = FileUtils.readTextFile(file, maxSize, "[[TRUNCATED]]\n");
209 String headers, int maxSize, String tag) throws IOException {
218 String log = FileUtils.readTextFile(file, maxSize, "[[TRUNCATED]]\n");
228 addFileToDropBox(db, prefs, headers, "/dev/fscklogs/log", maxSize, tag);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_index.py 5 maxsize = test_support.MAX_Py_ssize_t variable
6 minsize = -maxsize-1
265 self.assertEqual(x[self.neg:self.pos].indices(maxsize),
266 (0, maxsize, 1))
267 self.assertEqual(x[self.neg:self.pos:1].indices(maxsize),
268 (0, maxsize, 1))
281 self.assertEqual(x[self.neg:self.pos], (maxint+minsize, maxsize))
282 self.assertEqual(x[self.neg:self.pos:1].indices(maxsize),
283 (0, maxsize, 1))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_index.py 5 maxsize = test_support.MAX_Py_ssize_t variable
6 minsize = -maxsize-1
265 self.assertEqual(x[self.neg:self.pos].indices(maxsize),
266 (0, maxsize, 1))
267 self.assertEqual(x[self.neg:self.pos:1].indices(maxsize),
268 (0, maxsize, 1))
281 self.assertEqual(x[self.neg:self.pos], (maxint+minsize, maxsize))
282 self.assertEqual(x[self.neg:self.pos:1].indices(maxsize),
283 (0, maxsize, 1))
  /ndk/sources/host-tools/make-3.81/
strcache.c 186 int totsize = 0, avgsize, maxsize = 0, minsize = bufsize; local
199 maxsize = (sz > maxsize ? sz : maxsize);
213 prefix, totsize, maxsize, minsize, avgsize);
  /external/eigen/test/
nomalloc.cpp 99 const int maxSize = 16;
105 maxSize, maxSize> Matrix;
110 maxSize, 1> Vector;
115 maxSize, maxSize> ComplexMatrix;
  /external/elfutils/libelf/
elf_begin.c 73 file_read_ar (int fildes, void *map_address, off_t offset, size_t maxsize,
79 elf = allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
96 size_t maxsize)
167 if (ehdr.e32->e_shoff + sizeof (Elf32_Shdr) > maxsize)
204 if (ehdr.e32->e_shoff > maxsize
205 || maxsize - ehdr.e32->e_shoff < sizeof (Elf32_Shdr) * result)
215 if (ehdr.e64->e_shoff + sizeof (Elf64_Shdr) > maxsize)
255 if (ehdr.e64->e_shoff > maxsize
256 || maxsize - ehdr.e64->e_shoff < sizeof (Elf64_Shdr) * result)
267 off_t offset, size_t maxsize, Elf_Cmd cmd, Elf *parent
    [all...]

Completed in 569 milliseconds

12 3 4 5 6 7 8 91011>>