/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
Queue.py | 24 If maxsize is <= 0, the queue size is infinite. 26 def __init__(self, maxsize=0): 27 self.maxsize = maxsize 28 self._init(maxsize) 103 n = 0 < self.maxsize == self._qsize() 120 if self.maxsize > 0: 122 if self._qsize() == self.maxsize: 125 while self._qsize() == self.maxsize: 131 while self._qsize() == self.maxsize [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-319722-ArrayBuffer.js | 29 var maxSize = %_MaxSmi() + 1; 35 ab = new ArrayBuffer(maxSize * k); 45 new constr(ab, 0, maxSize);
|
regress-319722-TypedArrays.js | 30 var maxSize = %_MaxSmi() + 1; 33 new constr(maxSize);
|
/external/compiler-rt/test/profile/ |
instrprof-without-libc.c | 25 const uint64_t MaxSize = 10000; 26 static char Buffer[MaxSize]; 29 if (Size > MaxSize)
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/ |
dic_node_priority_queue.h | 48 AK_FORCE_INLINE void setMaxSize(const int maxSize) { 49 mMaxSize = maxSize; 56 AK_FORCE_INLINE void clearAndResize(const int maxSize) { 57 mMaxSize = maxSize;
|
/external/opencv/cv/src/ |
cvcanny.cpp | 66 int mapstep, maxsize; local 134 maxsize = MAX( 1 << 10, size.width*size.height/10 ); 135 CV_CALL( stack_top = stack_bottom = (uchar**)cvAlloc( maxsize*sizeof(stack_top[0]) )); 219 if( (stack_top - stack_bottom) + size.width > maxsize ) 222 maxsize = MAX( maxsize * 3/2, maxsize + size.width ); 223 CV_CALL( new_stack_bottom = (uchar**)cvAlloc( maxsize * sizeof(stack_top[0])) ); 308 if( (stack_top - stack_bottom) + 8 > maxsize ) 311 maxsize = MAX( maxsize * 3/2, maxsize + 8 ) [all...] |
/external/chromium_org/third_party/mesa/src/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/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/pcre/dist/doc/html/ |
pcre_jit_stack_alloc.html | 23 <b> int <i>maxsize</i>);</b> 27 <b> int <i>maxsize</i>);</b> 31 <b> int <i>maxsize</i>);</b>
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
FrameViewAutoSizeInfo.h | 24 void configureAutoSizeMode(const IntSize& minSize, const IntSize& maxSize);
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Input.h | 36 size_t read(char *buf, size_t maxSize);
|
/external/compiler-rt/test/lsan/TestCases/ |
large_allocation_leak.cc | 10 // maxsize in primary allocator is always less than this (1 << 25).
|
/external/icu/icu4c/source/common/ |
lrucache.cpp | 88 if (uhash_count(localeIdToEntries) < maxSize) { 134 maxSize(size) { 155 maxSize + maxSize / 5,
|
/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;
|
/ndk/tests/abcc/jni/mman-win32/ |
mman.c | 77 const off_t maxSize = off + (off_t)len;
80 (DWORD)maxSize : (DWORD)(maxSize & 0xFFFFFFFFL);
82 (DWORD)0 : (DWORD)((maxSize >> 32) & 0xFFFFFFFFL);
|
/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);
|
/external/chromium_org/third_party/skia/tests/ |
PackBitsTest.cpp | 52 size_t maxSize = SkPackBits::ComputeMaxSize16(size); 53 REPORTER_ASSERT(reporter, maxSize >= dstSize); 87 size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount); 90 REPORTER_ASSERT(reporter, dstSize <= maxSize); 106 size_t maxSize = SkPackBits::ComputeMaxSize8(size); 107 REPORTER_ASSERT(reporter, maxSize >= dstSize);
|
/external/icu/icu4c/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);
|
/external/skia/tests/ |
PackBitsTest.cpp | 52 size_t maxSize = SkPackBits::ComputeMaxSize16(size); 53 REPORTER_ASSERT(reporter, maxSize >= dstSize); 87 size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount); 90 REPORTER_ASSERT(reporter, dstSize <= maxSize); 106 size_t maxSize = SkPackBits::ComputeMaxSize8(size); 107 REPORTER_ASSERT(reporter, maxSize >= dstSize);
|