Home
last modified time | relevance | path

Searched refs:ALLOC (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Dloadfile_machdep.h69 #define ALLOC(a) alloc(a) macro
89 #define ALLOC(a) malloc(a) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dgzio.c43 #define ALLOC(size) malloc(size) macro
108 s = (gz_stream *)ALLOC(sizeof(gz_stream));
127 s->path = (char*)ALLOC(strlen(path)+1);
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
790 s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
834 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
1006 s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_elementtree.c81 #define ALLOC(size, comment)\
86 #define ALLOC(size, comment) macro
334 ALLOC(sizeof(ElementObject), "create element"); in element_new()
1658 ALLOC(sizeof(TreeBuilderObject), "create treebuilder");
2560 ALLOC(sizeof(XMLParserObject), "create expatparser");