/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
CHANGES | 222 - Issue #11: Fix maxsize support on Jython. 239 - Fix six.MAXSIZE on platforms where sizeof(long) != sizeof(Py_ssize_t).
|
/external/chromium-trace/catapult/third_party/six/ |
CHANGES | 238 - Issue #11: Fix maxsize support on Jython. 255 - Fix six.MAXSIZE on platforms where sizeof(long) != sizeof(Py_ssize_t).
|
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_HighLevelEncoder.cpp | 72 CBC_Dimension* maxSize,
77 context.setSizeConstraints(minSize, maxSize);
|
/packages/apps/Dialer/src/com/android/dialer/util/ |
ExpirableCache.java | 263 public static <K, V> ExpirableCache<K, V> create(int maxSize) { 264 return create(new LruCache<K, CachedValue<V>>(maxSize));
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
AudioRecordView.java | 250 final int maxSize = MmsConfig.get(mHostInterface.getConversationSelfSubId()) 254 AudioRecordView.this, maxSize)) {
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
DrawableDownloader.java | 207 * trim memory cache to 0~1 * maxSize 213 mMemoryCache.trimToSize((int) (amount * mMemoryCache.maxSize()));
|
/external/llvm/lib/Transforms/Scalar/ |
LoopUnswitch.cpp | 117 // is not performed. MaxSize is turned into unswitching quota for 120 // processed, so that MaxSize will return to its previous 121 // value. So in most cases MaxSize will equal the Threshold flag 123 // MaxSize will have a smaller value while processing nested loops 126 // FIXME: The way that MaxSize works is subtle and depends on the 129 // way of doing what MaxSize does. 130 unsigned MaxSize; 135 MaxSize(Threshold) {} 297 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); 299 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount [all...] |
/external/deqp/modules/gles31/functional/ |
es31fNegativeBufferApiTests.cpp | [all...] |
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
Parameters.cpp | [all...] |
/build/tools/droiddoc/templates-ndk/ |
sample.cs | 56 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
|
/build/tools/droiddoc/templates-sdk/ |
sample.cs | 56 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
|
/build/tools/droiddoc/templates-sdk-dev/ |
sample.cs | 51 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
|
/build/tools/droiddoc/templates-sdk-refonly/ |
sample.cs | 56 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
AllocationTest.java | 533 final Size maxSize = getMaxSize( 536 try (ScriptGraph scriptGraph = createGraphForYuvCroppedMeans(maxSize)) { 596 final Size maxSize = getMaxSize( 609 try (ScriptGraph scriptGraph = createGraphForYuvCroppedMeans(maxSize)) { [all...] |
/external/autotest/client/site_tests/hardware_SAT/ |
hardware_SAT.py | 86 if sys.maxsize < 2**32 and mbytes > 2047:
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
_compat.py | 26 MAX_INT = sys.maxsize
|
/external/deqp/modules/gles2/functional/ |
es2fBufferWriteTests.cpp | 433 const int maxSize = 32*1024; 469 const int size = rnd.getInt(minSize, maxSize); 665 const int maxSize = 65536; 677 spec->size = rnd.getInt(minSize, maxSize);
|
/external/deqp/modules/gles3/functional/ |
es3fBufferWriteTests.cpp | 433 const int maxSize = 32*1024; 481 const int size = rnd.getInt(minSize, maxSize); 665 const int maxSize = 65536; 677 spec->size = rnd.getInt(minSize, maxSize);
|
/external/eigen/Eigen/src/Eigenvalues/ |
Tridiagonalization.h | 76 MaxSize = MatrixType::MaxRowsAtCompileTime, 77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
|
/external/libnl/lib/ |
addr.c | 161 * @arg maxsize Maximum size of the binary address. 164 struct nl_addr *nl_addr_alloc(size_t maxsize) 168 addr = calloc(1, sizeof(*addr) + maxsize); 173 addr->a_maxsize = maxsize;
|
/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);
|