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

  /system/vold/
FileDeviceUtils.cpp 104 size_t allocsize = offsetof(struct fiemap, fm_extents[extent_count]); local
105 std::unique_ptr<struct fiemap> res(new (::operator new (allocsize)) struct fiemap);
106 memset(res.get(), 0, allocsize);
  /external/curl/src/
tool_urlglob.c 597 size_t allocsize; local
609 allocsize = strlen(filename) + 1; /* make it at least one byte to store the
611 target = malloc(allocsize);
673 if(appendlen + stringlen >= allocsize) {
677 allocsize = (appendlen + stringlen) * 2;
678 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/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...]
  /toolchain/binutils/binutils-2.25/bfd/
archive.c 476 bfd_size_type allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr);
525 allocsize += namelen + 1;
529 allocptr = (char *) bfd_zmalloc (allocsize);
568 allocsize += namelen + 1;
573 allocptr = (char *) bfd_zmalloc (allocsize);
473 bfd_size_type allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr); local
    [all...]
  /external/libpng/contrib/libtests/
pngstest.c 586 png_size_t allocsize; member in struct:__anon24224
617 image->allocsize = 0;
688 image->allocsize = size;
715 if (check16(image->buffer+16+image->allocsize, 95))
    [all...]
  /external/python/cpython2/Modules/
_tkinter.c 1170 size_t allocsize; local
    [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 6430 int allocsize = (dtd->scaffCount * sizeof(XML_Content) local
    [all...]
  /external/python/cpython2/Modules/expat/
xmlparse.c 6384 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 1163 milliseconds