HomeSort by relevance Sort by last modified time
    Searched full:newsize (Results 551 - 575 of 1060) sorted by null

<<21222324252627282930>>

  /external/python/cpython3/Modules/
_lzmamodule.c 145 Py_ssize_t newsize = size + (size >> 3) + 6; local
147 if (max_length > 0 && newsize > max_length)
148 newsize = max_length;
150 return _PyBytes_Resize(buf, newsize);
    [all...]
  /external/skia/src/gpu/
GrBufferAllocPool.h 133 void* resetCpuData(size_t newSize);
  /external/skqp/src/gpu/
GrBufferAllocPool.h 133 void* resetCpuData(size_t newSize);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallPtrSet.h 136 void Grow(unsigned NewSize);
  /external/syslinux/efi32/include/efi/
efilib.h 359 IN UINTN NewSize
  /external/syslinux/efi64/include/efi/
efilib.h 359 IN UINTN NewSize
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efilib.h 359 IN UINTN NewSize
  /external/vulkan-validation-layers/libs/cjson/
cJSON.c 143 size_t newsize; local
148 newsize = pow2gt(needed);
149 newbuffer = (char *)cJSON_malloc(newsize);
157 p->length = newsize;
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp     [all...]
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-sp/
libutils.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-sp/
libutils.so 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 3634 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3698 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
stringobject.c 929 size_t newsize; local
936 newsize = 2 + 4*Py_SIZE(op);
937 v = PyString_FromStringAndSize((char *)NULL, newsize);
959 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
979 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
fileobject.c 814 Py_off_t newsize; local
840 /* Set newsize to current postion if newsizeobj NULL, else to the
845 newsize = PyInt_AsLong(newsizeobj);
847 newsize = PyLong_Check(newsizeobj) ?
855 newsize = initialpos;
869 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
877 ret = _portable_fseek(f->f_fp, newsize, SEEK_SET) != 0;
899 ret = ftruncate(fileno(f->f_fp), newsize);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 3654 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3718 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 3634 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3698 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
fileobject.c 800 Py_off_t newsize; local
826 /* Set newsize to current postion if newsizeobj NULL, else to the
831 newsize = PyInt_AsLong(newsizeobj);
833 newsize = PyLong_Check(newsizeobj) ?
841 newsize = initialpos;
855 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
863 ret = _portable_fseek(f->f_fp, newsize, SEEK_SET) != 0;
885 ret = ftruncate(fileno(f->f_fp), newsize);
    [all...]
  /external/python/cpython2/Objects/
longobject.c 3642 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3706 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
    [all...]
stringobject.c 929 size_t newsize; local
936 newsize = 2 + 4*Py_SIZE(op);
937 v = PyString_FromStringAndSize((char *)NULL, newsize);
959 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
979 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 352 var newSize = Math.max(this.bits.length << 1, org.antlr.runtime.BitSet.numWordsToHold(bit)),
353 newbits = [], //new Array(newSize),
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/
BsPatchTest.java 201 Assert.assertEquals("bad newSize", actual);
225 Assert.assertEquals("bad newSize", actual);
  /external/dlmalloc/
malloc.h 596 void* mspace_realloc(mspace msp, void* mem, size_t newsize);
597 void* mspace_realloc_in_place(mspace msp, void* mem, size_t newsize);
  /external/llvm/include/llvm/ADT/
BitVector.h 533 void grow(unsigned NewSize) {
534 Capacity = std::max(NumBitWords(NewSize), Capacity * 2);
  /external/lzma/CPP/7zip/UI/FileManager/
ExtractCallback.cpp 195 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
205 dialog.NewFileInfo.SetSize(newSize);
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 560 def resize(self, newsize):
564 self.size = newsize

Completed in 1438 milliseconds

<<21222324252627282930>>