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

  /external/curl/lib/
doh.h 73 size_t allocsize; /* allocated size */ member in struct:cnamestore
doh.c 453 c->allocsize = len + 1;
454 c->alloc = malloc(c->allocsize);
458 else if(c->allocsize < (c->allocsize + len + 1)) {
460 c->allocsize += len + 1;
461 ptr = realloc(c->alloc, c->allocsize);
  /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/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/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...]
  /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...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 616 KEYWORD(allocsize);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
LLLexer.cpp 631 KEYWORD(allocsize);
  /external/curl/tests/python_dependencies/impacket/
smb.py 553 def __init__(self, ctime, atime, mtime, filesize, allocsize, attribs, shortname, longname):
558 self.__allocsize = 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.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...]
  /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/syzkaller/sys/linux/gen/
386.go     [all...]
amd64.go     [all...]
arm.go     [all...]
arm64.go     [all...]
ppc64le.go     [all...]

Completed in 2625 milliseconds