| /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.placement/ |
| new_array.pass.cpp | 27 const std::size_t ExtraSize = 64; 28 char buf[Size*sizeof(A) + ExtraSize]; 32 assert((char*)ap < (buf + ExtraSize));
|
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.placement/ |
| new_array.pass.cpp | 27 const std::size_t ExtraSize = 64; 28 char buf[Size*sizeof(A) + ExtraSize]; 32 assert((char*)ap < (buf + ExtraSize));
|
| /external/llvm/lib/Fuzzer/ |
| FuzzerCrossOver.cpp | 37 size_t ExtraSize = Rand(MaxExtraSize) + 1; 38 memcpy(Out + OutPos, Data + *InPos, ExtraSize); 39 OutPos += ExtraSize; 40 (*InPos) += ExtraSize;
|
| /external/skia/src/core/ |
| SkArenaAlloc.h | 23 // starting with an allocation of extraSize bytes. If your data (plus a small overhead) fits in 24 // the user-provided block, SkArenaAlloc never uses the heap, and if it fits in extraSize bytes, 25 // it'll use the heap only once. If you pass extraSize = 0, it allocates blocks for each call to 73 SkArenaAlloc(size_t extraSize, Tracking tracking = kDontTrack) 74 : SkArenaAlloc(nullptr, 0, extraSize, tracking) 241 explicit SkSTArenaAlloc(size_t extraSize = InlineStorageSize, Tracking tracking = kDontTrack) 242 : INHERITED(fInlineStorage, InlineStorageSize, extraSize, tracking) {}
|
| SkArenaAlloc.cpp | 15 SkArenaAlloc::SkArenaAlloc(char* block, size_t size, size_t extraSize, Tracking tracking) 21 , fExtraSize {SkTo<uint32_t>(extraSize)}
|
| /external/skqp/src/core/ |
| SkArenaAlloc.h | 23 // starting with an allocation of extraSize bytes. If your data (plus a small overhead) fits in 24 // the user-provided block, SkArenaAlloc never uses the heap, and if it fits in extraSize bytes, 25 // it'll use the heap only once. If you pass extraSize = 0, it allocates blocks for each call to 73 SkArenaAlloc(size_t extraSize, Tracking tracking = kDontTrack) 74 : SkArenaAlloc(nullptr, 0, extraSize, tracking) 234 explicit SkSTArenaAlloc(size_t extraSize = InlineStorageSize, Tracking tracking = kDontTrack) 235 : INHERITED(fInlineStorage, InlineStorageSize, extraSize, tracking) {}
|
| SkArenaAlloc.cpp | 15 SkArenaAlloc::SkArenaAlloc(char* block, size_t size, size_t extraSize, Tracking tracking) 21 , fExtraSize {SkTo<uint32_t>(extraSize)}
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| gzip.py | 102 # stream where buffer starts. extrasize is number of
105 self.extrasize = 0
238 if self.extrasize <= 0 and self.fileobj is None:
248 size = self.extrasize
251 while size > self.extrasize:
255 if size > self.extrasize:
256 size = self.extrasize
260 self.extrasize = self.extrasize - size
266 self.extrasize = len(buf) + self.extrasize [all...] |
| /external/python/cpython2/Lib/ |
| gzip.py | 111 # stream where buffer starts. extrasize is number of 114 self.extrasize = 0 254 if self.extrasize <= 0 and self.fileobj is None: 264 size = self.extrasize 267 while size > self.extrasize: 271 if size > self.extrasize: 272 size = self.extrasize 276 self.extrasize = self.extrasize - size 282 self.extrasize = len(buf) + self.extrasiz [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| gzip.py | 111 # stream where buffer starts. extrasize is number of 114 self.extrasize = 0 247 if self.extrasize <= 0 and self.fileobj is None: 257 size = self.extrasize 260 while size > self.extrasize: 264 if size > self.extrasize: 265 size = self.extrasize 269 self.extrasize = self.extrasize - size 275 self.extrasize = len(buf) + self.extrasiz [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| gzip.py | 111 # stream where buffer starts. extrasize is number of 114 self.extrasize = 0 247 if self.extrasize <= 0 and self.fileobj is None: 257 size = self.extrasize 260 while size > self.extrasize: 264 if size > self.extrasize: 265 size = self.extrasize 269 self.extrasize = self.extrasize - size 275 self.extrasize = len(buf) + self.extrasiz [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| gzip.py | 111 # stream where buffer starts. extrasize is number of 114 self.extrasize = 0 247 if self.extrasize <= 0 and self.fileobj is None: 257 size = self.extrasize 260 while size > self.extrasize: 264 if size > self.extrasize: 265 size = self.extrasize 269 self.extrasize = self.extrasize - size 275 self.extrasize = len(buf) + self.extrasiz [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| gzip.py | 111 # stream where buffer starts. extrasize is number of 114 self.extrasize = 0 247 if self.extrasize <= 0 and self.fileobj is None: 257 size = self.extrasize 260 while size > self.extrasize: 264 if size > self.extrasize: 265 size = self.extrasize 269 self.extrasize = self.extrasize - size 275 self.extrasize = len(buf) + self.extrasiz [all...] |
| /hardware/intel/common/libmix/videoencoder/ |
| IntelMetadataBuffer.cpp | 553 uint32_t extrasize = size - sizeof(type) - sizeof(value); local 569 if (extrasize >0 && extrasize < sizeof(ValueInfo)) 572 if (extrasize > sizeof(ValueInfo)) //has extravalues 574 if ( (extrasize - sizeof(ValueInfo)) % sizeof(mValue) != 0 ) 576 ExtraValues_Count = (extrasize - sizeof(ValueInfo)) / sizeof(mValue); 579 if (extrasize > 0) 595 if (extrasize > 0)
|
| /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
| FileUseMap.java | 415 long extraSize; 417 extraSize = 0; 419 extraSize = (align - ((curr.getStart() + alignOffset) % align)) % align; 423 * We can't leave than mMinFreeSize before. So if the extraSize is less than 425 * example, if mMinFreeSize is 20, align 4 and extraSize is 5. We need to increase it 428 if (extraSize > 0 && extraSize < mMinFreeSize) { 430 Ints.checkedCast((mMinFreeSize - extraSize + align - 1) / align); 431 extraSize += addAlignBlocks * align; 437 if (curr.getSize() < (size + extraSize)) { [all...] |
| /external/lzma/CPP/7zip/Compress/ |
| Bcj2Coder.cpp | 429 unsigned extraSize = ((unsigned)totalRead & 3);
430 _extraReadSizes[dec.state] = extraSize;
436 totalRead -= extraSize;
624 unsigned extraSize = ((unsigned)totalRead & 3);
625 _extraReadSizes[dec.state] = extraSize;
632 totalRead -= extraSize;
|
| /tools/apksig/src/main/java/com/android/apksig/internal/zip/ |
| CentralDirectoryRecord.java | 154 int extraSize = ZipUtils.getUnsignedInt16(buf); 159 int recordSize = HEADER_SIZE_BYTES + nameSize + extraSize + commentSize;
|
| /external/lzma/CPP/7zip/Archive/ |
| XzHandler.cpp | 621 UInt64 extraSize = XzUnpacker_GetExtraSize(&xzu.p);
627 extraSize = 0;
640 if (InSize == extraSize)
644 if (extraSize != 0 || inPos != inSize)
653 PhySize -= extraSize;
|
| /frameworks/multidex/library/src/androidx/multidex/ |
| MultiDex.java | [all...] |
| /external/pcre/dist2/src/ |
| pcre2_jit_compile.c | 7282 int extrasize; local [all...] |
| /external/icu/icu4c/source/common/ |
| utext.cpp | 595 ut->extraSize = extraSpace; 615 if (extraSpace > ut->extraSize) { 620 ut->extraSize = 0; 626 ut->extraSize = extraSpace; 654 if (ut->pExtra!=NULL && ut->extraSize>0) 655 uprv_memset(ut->pExtra, 0, ut->extraSize); 686 ut->extraSize = 0; 754 if (dptr >= (char *)src->pExtra && dptr < ((char*)src->pExtra)+src->extraSize) { 775 int32_t srcExtraSize = src->extraSize; [all...] |
| /libcore/ojluni/src/main/java/sun/misc/ |
| FDBigInteger.java | 715 int extraSize = (p2 != 0) ? 1 : 0; 717 r = new int[this.nWords + 1 + extraSize]; 722 r = new int[this.nWords + pow5.size() + extraSize]; [all...] |
| /external/icu/icu4c/source/common/unicode/ |
| utext.h | [all...] |
| /prebuilts/sdk/current/multidex/library/ |
| android-support-multidex.jar | |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| ks.h | [all...] |