/third_party/gettext/gnulib-local/lib/libxml/ |
D | globals.c | 109 #undef xmlMallocAtomic 118 xmlMallocFunc xmlMallocAtomic = (xmlMallocFunc) xmlMemMalloc; variable 148 xmlMallocFunc xmlMallocAtomic = malloc; variable 581 gs->xmlMallocAtomic = (xmlMallocFunc) xmlMemMalloc; in xmlInitializeGlobalState() 587 gs->xmlMallocAtomic = (xmlMallocFunc) malloc; in xmlInitializeGlobalState() 797 #undef xmlMallocAtomic 802 return (&xmlMallocAtomic); in __xmlMallocAtomic() 804 return (&xmlGetGlobalState()->xmlMallocAtomic); in __xmlMallocAtomic()
|
D | globals.in.h | 121 #undef xmlMallocAtomic 193 xmlMallocFunc xmlMallocAtomic; member 249 #define xmlMallocAtomic \ macro 252 XMLPUBVAR xmlMallocFunc xmlMallocAtomic; variable 281 XMLPUBVAR xmlMallocFunc xmlMallocAtomic; variable
|
D | xmlstring.c | 74 ret = (xmlChar *) xmlMallocAtomic((len + 1) * sizeof(xmlChar)); in xmlStrndup() 119 ret = (xmlChar *) xmlMallocAtomic((len + 1) * sizeof(xmlChar)); in xmlCharStrndup() 901 ret = (xmlChar *) xmlMallocAtomic((i + 1) * sizeof(xmlChar)); in xmlUTF8Strndup() 1052 result = (xmlChar *) xmlMallocAtomic(resultLen * sizeof(xmlChar)); in xmlEscapeFormatString()
|
D | xmlmemory.in.h | 217 #define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__) macro
|
D | buf.c | 166 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufCreate() 201 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufCreateSize() 856 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufResize() 865 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufResize()
|
D | xmlmemory.c | 1088 xmlMallocAtomic = mallocFunc; in xmlMemSetup() 1157 xmlMallocAtomic = mallocAtomicFunc; in xmlGcMemSetup() 1187 if (mallocAtomicFunc != NULL) *mallocAtomicFunc = xmlMallocAtomic; in xmlGcMemGet()
|
D | uri.c | 1098 ret = (xmlChar *) xmlMallocAtomic((max + 1) * sizeof(xmlChar)); in xmlSaveUri() 1651 ret = (char *) xmlMallocAtomic(len + 1); in xmlURIUnescapeString() 1713 ret = (xmlChar *) xmlMallocAtomic(len); in xmlURIEscapeStr() 2088 res->path = (char *) xmlMallocAtomic(len); in xmlBuildURI() 2491 uri->path = xmlMallocAtomic(len + 2); in xmlCanonicPath()
|
D | nanohttp.c | 574 ctxt->in = (char *) xmlMallocAtomic(65000 * sizeof(char)); in xmlNanoHTTPRecv() 1467 bp = (char*)xmlMallocAtomic(blen); in xmlNanoHTTPMethodRedir()
|
D | parser.c | 2646 buffer = (xmlChar *) xmlMallocAtomic(buffer_size); in xmlStringLenDecodeEntities() 2953 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlSplitQName() 3032 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlSplitQName() 3569 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlParseStringName() 3665 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlParseNmtoken() 3747 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParseEntityValue() 3903 buf = (xmlChar *) xmlMallocAtomic(buf_size); in xmlParseAttValueComplex() 4185 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParseSystemLiteral() 4273 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParsePubidLiteral() 4720 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParseCommentComplex() [all …]
|
D | tree.c | 264 ret = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); in xmlBuildQName() 4704 buffer = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar)); in xmlGetNodePath() 4709 buf = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar)); in xmlGetNodePath() 7059 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufferCreate() 7090 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufferCreateSize() 7490 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufferResize() 7499 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufferResize()
|
/third_party/libxml2/ |
D | globals.c | 78 #undef xmlMallocAtomic 85 xmlMallocFunc xmlMallocAtomic = (xmlMallocFunc) xmlMemMalloc; variable 115 xmlMallocFunc xmlMallocAtomic = malloc; variable 543 gs->xmlMallocAtomic = (xmlMallocFunc) xmlMemMalloc; in xmlInitializeGlobalState() 549 gs->xmlMallocAtomic = (xmlMallocFunc) malloc; in xmlInitializeGlobalState() 750 #undef xmlMallocAtomic 754 return (&xmlMallocAtomic); in __xmlMallocAtomic() 756 return (&xmlGetGlobalState()->xmlMallocAtomic); in __xmlMallocAtomic()
|
D | xmlstring.c | 46 ret = (xmlChar *) xmlMallocAtomic(((size_t) len + 1) * sizeof(xmlChar)); in xmlStrndup() 91 ret = (xmlChar *) xmlMallocAtomic(((size_t) len + 1) * sizeof(xmlChar)); in xmlCharStrndup() 880 ret = (xmlChar *) xmlMallocAtomic(((size_t) i + 1) * sizeof(xmlChar)); in xmlUTF8Strndup() 1031 result = (xmlChar *) xmlMallocAtomic(resultLen * sizeof(xmlChar)); in xmlEscapeFormatString()
|
D | buf.c | 141 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufCreate() 178 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufCreateSize() 832 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufResize() 841 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufResize()
|
D | xmlmemory.c | 1057 xmlMallocAtomic = mallocFunc; in xmlMemSetup() 1126 xmlMallocAtomic = mallocAtomicFunc; in xmlGcMemSetup() 1156 if (mallocAtomicFunc != NULL) *mallocAtomicFunc = xmlMallocAtomic; in xmlGcMemGet()
|
D | uri.c | 1077 ret = (xmlChar *) xmlMallocAtomic((max + 1) * sizeof(xmlChar)); in xmlSaveUri() 1630 ret = (char *) xmlMallocAtomic(len + 1); in xmlURIUnescapeString() 1693 ret = (xmlChar *) xmlMallocAtomic(len); in xmlURIEscapeStr() 2069 res->path = (char *) xmlMallocAtomic(len); in xmlBuildURI() 2472 uri->path = xmlMallocAtomic(len + 2); in xmlCanonicPath()
|
D | nanohttp.c | 545 ctxt->in = (char *) xmlMallocAtomic(65000 * sizeof(char)); in xmlNanoHTTPRecv() 1438 bp = (char*)xmlMallocAtomic(blen); in xmlNanoHTTPMethodRedir()
|
D | parser.c | 2676 buffer = (xmlChar *) xmlMallocAtomic(buffer_size); in xmlStringLenDecodeEntities() 2989 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlSplitQName() 3068 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlSplitQName() 3612 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlParseStringName() 3709 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar)); in xmlParseNmtoken() 3792 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParseEntityValue() 3957 buf = (xmlChar *) xmlMallocAtomic(buf_size); in xmlParseAttValueComplex() 4229 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParseSystemLiteral() 4320 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParsePubidLiteral() 4772 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in xmlParseCommentComplex() [all …]
|
D | tree.c | 235 ret = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); in xmlBuildQName() 4732 buffer = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar)); in xmlGetNodePath() 4737 buf = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar)); in xmlGetNodePath() 7093 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufferCreate() 7126 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufferCreateSize() 7531 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufferResize() 7540 rebuf = (xmlChar *) xmlMallocAtomic(newSize); in xmlBufferResize()
|
D | HTMLparser.c | 2745 buffer = (xmlChar *) xmlMallocAtomic(buffer_size * sizeof(xmlChar)); in htmlParseHTMLAttribute() 3379 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in htmlParsePI() 3479 buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar)); in htmlParseComment() 6490 content = xmlMallocAtomic (xmlStrlen(content_line) + l + 1); in htmlCreateFileParserCtxt()
|
/third_party/libxml2/include/libxml/ |
D | globals.h | 90 #undef xmlMallocAtomic 160 xmlMallocFunc xmlMallocAtomic; member 216 #define xmlMallocAtomic \ macro 219 XMLPUBVAR xmlMallocFunc xmlMallocAtomic; variable 248 XMLPUBVAR xmlMallocFunc xmlMallocAtomic; variable
|
D | xmlmemory.h | 189 #define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__) macro
|
/third_party/libxml2/os400/ |
D | rpgsupport.c | 53 THREADED_VAR(xmlMallocAtomic, xmlMallocFunc) in THREADED_VAR() argument 59 return xmlMallocAtomic(size); in THREADED_VAR()
|
/third_party/libxml2/os400/libxmlrpg/ |
D | xmlmemory.rpgle | 110 d xmlMallocAtomic...
|
D | globals.rpgle | 147 d xmlMallocAtomic...
|
/third_party/libxml2/doc/html/ |
D | index.sgml | 84 <ANCHOR id="xmlMallocAtomic" href="libxml/libxml-xmlmemory.html#xmlMallocAtomic"> 534 <ANCHOR id="xmlMallocAtomic" href="libxml/libxml-globals.html#xmlMallocAtomic">
|