Home | History | Annotate | Download | only in libxml2

Lines Matching defs:free

106     xmlChar *free;
217 * Free the dictionary mutex. Do not call unless sure the library
252 if ((size_t)(pool->end - pool->free) > namelen)
275 pool->free = &pool->array[0];
284 ret = pool->free;
285 memcpy(pool->free, name, namelen);
286 pool->free += namelen;
287 *(pool->free++) = 0;
320 if ((size_t)(pool->end - pool->free) > namelen + plen + 1)
343 pool->free = &pool->array[0];
352 ret = pool->free;
353 memcpy(pool->free, prefix, plen);
354 pool->free += plen;
355 *(pool->free++) = ':';
356 memcpy(pool->free, name, namelen);
357 pool->free += namelen;
358 *(pool->free++) = 0;
701 allocate) and then the rest, so we only free in the second loop.
789 * Free the hash @dict and its contents. The userdata is
1218 if ((str >= &pool->array[0]) && (str <= pool->free))