HomeSort by relevance Sort by last modified time
    Searched defs:allocsize (Results 1 - 16 of 16) sorted by null

  /external/curl/lib/
doh.h 73 size_t allocsize; /* allocated size */ member in struct:cnamestore
  /external/curl/src/
tool_urlglob.c 604 size_t allocsize; local
616 allocsize = strlen(filename) + 1; /* make it at least one byte to store the
618 target = malloc(allocsize);
680 if(appendlen + stringlen >= allocsize) {
684 allocsize = (appendlen + stringlen) * 2;
685 newstr = realloc(target, allocsize + 1);
  /external/llvm/examples/BrainF/
BrainF.cpp 97 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty); local
98 allocsize = ConstantExpr::getTruncOrBitCast(allocsize, IntPtrTy);
99 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 85 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty); local
86 allocsize = ConstantExpr::getTruncOrBitCast(allocsize, IntPtrTy);
87 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/BrainF/
BrainF.cpp 97 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty); local
98 allocsize = ConstantExpr::getTruncOrBitCast(allocsize, IntPtrTy);
99 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/mdnsresponder/mDNSShared/
dnsextd.c 421 int allocsize; local
449 allocsize = sizeof(PktMsg) - sizeof(DNSMessage) + msglen;
453 allocsize = sizeof(PktMsg);
456 pkt = malloc(allocsize);
1377 int i, allocsize, bucket; local
    [all...]
  /external/libpng/contrib/libtests/
pngstest.c 585 png_size_t allocsize; member in struct:__anon29328
616 image->allocsize = 0;
687 image->allocsize = size;
714 if (check16(image->buffer+16+image->allocsize, 95))
    [all...]
  /external/python/cpython2/Modules/
_tkinter.c 1170 size_t allocsize; local
    [all...]
  /external/python/cpython3/Modules/
_tkinter.c 1058 size_t allocsize; local
1074 allocsize = ((size_t)size) * sizeof(Tcl_UniChar);
1075 outbuf = (Tcl_UniChar*)PyMem_Malloc(allocsize);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/
xmlparse.c 6242 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmlparse.c 6366 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmlparse.c 6242 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /external/expat/lib/
xmlparse.c 7157 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /external/python/cpython2/Modules/expat/
xmlparse.c 7157 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /external/python/cpython3/Modules/expat/
xmlparse.c 7157 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 132 size_t allocsize; /*allocated size in bytes*/ member in struct:uivector
137 ((uivector*)p)->size = ((uivector*)p)->allocsize = 0;
145 if(size * sizeof(unsigned) > p->allocsize)
151 p->allocsize = newsize;
173 p->size = p->allocsize = 0;
203 size_t allocsize; /*allocated size*/ member in struct:ucvector
209 if(size * sizeof(unsigned char) > p->allocsize)
215 p->allocsize = newsize;
229 ((ucvector*)p)->size = ((ucvector*)p)->allocsize = 0;
237 p->size = p->allocsize = 0
    [all...]

Completed in 2121 milliseconds