Home | History | Annotate | Download | only in libxml2

Lines Matching defs:free

105     xmlChar *free;
162 * Free the dictionary mutex.
195 if (pool->end - pool->free > namelen)
213 pool->free = &pool->array[0];
222 ret = pool->free;
223 memcpy(pool->free, name, namelen);
224 pool->free += namelen;
225 *(pool->free++) = 0;
257 if (pool->end - pool->free > namelen + plen + 1)
275 pool->free = &pool->array[0];
284 ret = pool->free;
285 memcpy(pool->free, prefix, plen);
286 pool->free += plen;
287 *(pool->free++) = ':';
288 memcpy(pool->free, name, namelen);
289 pool->free += namelen;
290 *(pool->free++) = 0;
600 allocate) and then the rest, so we only free in the second loop.
688 * Free the hash @dict and its contents. The userdata is
1104 if ((str >= &pool->array[0]) && (str <= pool->free))