Searched defs:free (Results 51 - 75 of 203) sorted by last modified time

123456789

/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsystem.h170 * free ::
182 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzguts.h116 extern void free OF((voidpf ptr));
131 #define free(ptr) FXMEM_DefaultFree(ptr, 0) macro
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsystem.h170 * free ::
182 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftdbgmem.c136 FT_Free_Func free; member in struct:FT_MemTableRec_
249 table->free( memory, block );
325 table->free = memory->free;
334 memory->free( memory, table );
667 "trying to free unknown block at %p in (%s:%ld)\n",
718 ft_mem_debug_panic( "trying to free NULL in (%s:%ld)",
836 memory->free = ft_mem_debug_free;
889 memory->free = table->free;
[all...]
H A Dftobjs.c59 #define free md5_free /* suppress a shadow warning */ macro
61 #undef free macro
342 /* free bitmap if needed */
382 /* free bitmap buffer if needed */
388 /* free glyph loader */
4741 FT_TRACE0(( "FT_Done_Library: failed to free some faces\n" ));
4751 /* avoids double free in some occasions. It is a hack. */
H A Dmd5.c213 unsigned long used, free; local
223 free = 64 - used;
225 if (size < free) {
230 memcpy(&ctx->buffer[used], data, free);
231 data = (unsigned char *)data + free;
232 size -= free;
246 unsigned long used, free; local
252 free = 64 - used;
254 if (free < 8) {
255 memset(&ctx->buffer[used], 0, free);
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
H A Dftmisc.h77 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/openssl/crypto/x509/
H A Dx509_vfy.h9 * This library is free for commercial and non-commercial use as long as
145 void (*free)(X509_LOOKUP *ctx); member in struct:x509_lookup_method_st
/external/openssl/include/openssl/
H A Dx509_vfy.h9 * This library is free for commercial and non-commercial use as long as
145 void (*free)(X509_LOOKUP *ctx); member in struct:x509_lookup_method_st
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_bufmgr_pool.c6 * Permission is hereby granted, free of charge, to any person obtaining a
67 struct list_head free; member in struct:pool_pb_manager
114 LIST_ADD(&pool_buf->head, &pool->free);
207 item = pool->free.next;
209 if (item == &pool->free) {
275 LIST_INITHEAD(&pool->free);
307 LIST_ADDTAIL(&pool_buf->head, &pool->free);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_mm.h5 * Permission is hereby granted, free of charge, to any person obtaining a
42 unsigned int free:1; member in struct:mem_block
56 * restrict the search to free memory after 'startSearch'
H A Du_slab.h4 * Permission is hereby granted, free of charge, to any person obtaining a
58 void (*free)(struct util_slab_mempool *pool, void *ptr); member in struct:util_slab_mempool
85 #define util_slab_free(pool, ptr) (pool)->free(pool, ptr)
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c21 struct list_head free; member in struct:mm_bucket
41 int free; member in struct:mm_slab
50 if (slab->free == 0)
58 slab->free--;
71 slab->free++;
72 assert(slab->free <= slab->count);
142 slab->count = slab->free = size >> chunk_order;
144 LIST_ADD(&slab->head, &mm_bucket_by_order(cache, chunk_order)->free);
180 if (LIST_IS_EMPTY(&bucket->free)) {
183 slab = LIST_ENTRY(struct mm_slab, bucket->free
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c6 * Permission is hereby granted, free of charge, to any person obtaining
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
128 * @param mask which components must be free in the temporary index that is
130 * @return -1 If there are no more free temporaries, otherwise the index of
153 int free; local
159 free = rc_find_free_temporary_list(c, used, RC_REGISTER_MAX_INDEX,
161 if (free < 0) {
165 return free;
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp4 // Permission is hereby granted, free of charge, to any person obtaining a
54 free(int n, T *p) { function in class:clover::compat::vector
58 std::free(p);
77 free(n, p);
82 free(n, p);
94 free(n, p);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_common_context.h260 struct radeon_dma_bo free; member in struct:radeon_dma
H A Dradeon_dma.c12 Permission is hereby granted, free of charge, to any person obtaining a
206 make_empty_list(&rmesa->dma.free);
223 if (is_empty_list(&rmesa->dma.free)
224 || last_elem(&rmesa->dma.free)->bo->size < size) {
242 dma_bo = last_elem(&rmesa->dma.free);
302 foreach_s(dma_bo, temp, &rmesa->dma.free) {
347 const int expire_at = ++rmesa->dma.free.expire_counter + DMA_BO_FREE_TIME;
348 const int time = rmesa->dma.free.expire_counter;
351 size_t free = 0, local
354 foreach(dma_bo, &rmesa->dma.free)
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_common_context.h260 struct radeon_dma_bo free; member in struct:radeon_dma
H A Dradeon_dma.c12 Permission is hereby granted, free of charge, to any person obtaining a
206 make_empty_list(&rmesa->dma.free);
223 if (is_empty_list(&rmesa->dma.free)
224 || last_elem(&rmesa->dma.free)->bo->size < size) {
242 dma_bo = last_elem(&rmesa->dma.free);
302 foreach_s(dma_bo, temp, &rmesa->dma.free) {
347 const int expire_at = ++rmesa->dma.free.expire_counter + DMA_BO_FREE_TIME;
348 const int time = rmesa->dma.free.expire_counter;
351 size_t free = 0, local
354 foreach(dma_bo, &rmesa->dma.free)
[all...]
/external/mesa3d/src/mesa/main/
H A Dmm.h5 * Permission is hereby granted, free of charge, to any person obtaining a
41 unsigned free:1; member in struct:mem_block
55 * restrict the search to free memory after 'startSearch'
/external/llvm/include/llvm/Support/
H A DFileSystem.h69 uint64_t free; member in struct:llvm::sys::fs::space_info
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h295 /// void free(void *ptr);
296 free, enumerator in enum:llvm::LibFunc::Func
/external/llvm/lib/Support/
H A DMD5.cpp189 unsigned long used, free; local
201 free = 64 - used;
203 if (Size < free) {
208 memcpy(&buffer[used], Ptr, free);
209 Ptr = Ptr + free;
210 Size -= free;
233 unsigned long used, free; local
239 free = 64 - used;
241 if (free < 8) {
242 memset(&buffer[used], 0, free);
[all...]

Completed in 1049 milliseconds

123456789