HomeSort by relevance Sort by last modified time
    Searched refs:newsize (Results 151 - 174 of 174) sorted by null

1 2 3 4 5 67

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 927 size_t newsize; local
934 newsize = 14 + 4 * length;
935 v = PyString_FromStringAndSize(NULL, newsize);
970 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
991 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
typeobject.c 3659 Py_ssize_t oldsize, newsize; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 921 size_t newsize; local
928 newsize = 14 + 4 * length;
929 v = PyString_FromStringAndSize(NULL, newsize);
964 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
985 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
typeobject.c 3624 Py_ssize_t oldsize, newsize; local
    [all...]
  /external/libffi/src/
dlmalloc.c 3672 size_t newsize = sp->size - extra; local
3865 size_t newsize = oldsize + m->topsize; local
3948 size_t newsize = chunksize(p) - leadsize; local
    [all...]
  /external/libogg/src/
framing.c 600 long newsize=size+oy->fill+4096; /* an extra page to be nice */ local
604 ret=_ogg_realloc(oy->data,newsize);
606 ret=_ogg_malloc(newsize);
612 oy->storage=newsize;
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/
dlmalloc.c 3677 size_t newsize = sp->size - extra; local
3870 size_t newsize = oldsize + m->topsize; local
3953 size_t newsize = chunksize(p) - leadsize; local
    [all...]
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 560 def resize(self, newsize):
564 self.size = newsize
  /external/python/cpython3/Tools/demo/
sortvisu.py 561 def resize(self, newsize):
565 self.size = newsize
  /external/curl/lib/
http.c 3111 size_t newsize = k->hbuflen + length; local
    [all...]
  /external/python/cpython2/Objects/
bytearrayobject.c 949 size_t newsize; local
956 newsize = 14 + 4 * length;
957 v = PyString_FromStringAndSize(NULL, newsize);
992 assert(newsize - (p - PyString_AS_STRING(v)) >= 5);
1013 assert(newsize - (p - PyString_AS_STRING(v)) >= 1);
    [all...]
typeobject.c 3813 Py_ssize_t oldsize, newsize; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 636 size_t oldsize, newsize; local
638 newsize = oldsize << 1;
645 if (newsize == 0) {
651 (void *)b->b_instr, newsize);
657 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 613 size_t oldsize, newsize; local
615 newsize = oldsize << 1;
622 if (newsize == 0) {
628 (void *)b->b_instr, newsize);
634 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize);
    [all...]
  /external/python/cpython2/Python/
compile.c 636 size_t oldsize, newsize; local
638 newsize = oldsize << 1;
645 if (newsize == 0) {
651 (void *)b->b_instr, newsize);
657 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize);
    [all...]
  /external/pcre/dist2/src/
pcre2_match.c 634 PCRE2_SIZE newsize = mb->frame_vector_size * 2; local
637 if ((newsize / 1024) > mb->heap_limit)
641 newsize = maxsize;
644 new = mb->memctl.malloc(newsize, mb->memctl.memory_data);
654 mb->match_frames_top = (heapframe *)((char *)mb->match_frames + newsize);
655 mb->frame_vector_size = newsize;
    [all...]
pcre2_compile.c 4223 uint32_t newsize = cb->named_group_list_size * 2; local
    [all...]
  /external/python/cpython3/Python/
compile.c 815 size_t oldsize, newsize; local
817 newsize = oldsize << 1;
824 if (newsize == 0) {
830 (void *)b->b_instr, newsize);
836 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize);
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 147 size_t newsize = size * sizeof(unsigned) * 2; local
148 void* data = lodepng_realloc(p->data, newsize);
151 p->allocsize = newsize;
211 size_t newsize = size * sizeof(unsigned char) * 2; local
212 void* data = lodepng_realloc(p->data, newsize);
215 p->allocsize = newsize;
    [all...]
  /external/mksh/src/
edit.c 793 size_t pathlen, patlen, oldsize, newsize, i, j; local
828 newsize = XPsize(*wp);
832 for (i = j = oldsize; i < newsize; i++) {
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_vgpu10.c 242 unsigned newsize = emit->size * 2; local
245 new_buf = REALLOC(emit->buf, emit->size, newsize);
256 emit->size = newsize;
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.c 6731 size_t newsize = UPB_MAX(oldsize * 2, 64); local
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.c 7404 size_t newsize = UPB_MAX(oldsize * 2, 64); local
    [all...]
  /external/grpc-grpc-java/netty/shaded/
grpc-netty-shaded-1.14.0.jar 

Completed in 3803 milliseconds

1 2 3 4 5 67