HomeSort by relevance Sort by last modified time
    Searched refs:freed (Results 1 - 25 of 26) sorted by null

1 2

  /hardware/msm7k/libgralloc/
allocator.cpp 72 chunk_t const * const freed = dealloc(offset); local
73 if (freed) {
138 "block at offset 0x%08lX of size 0x%08lX already freed",
141 // merge freed blocks together
142 chunk_t* freed = cur; local
148 freed = p;
156 LOG_FATAL_IF(!freed->free,
157 "freed block at offset 0x%08lX of size 0x%08lX is not free!",
158 freed->start * kMemoryAlign, freed->size * kMemoryAlign)
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
allocator.cpp 72 chunk_t const * const freed = dealloc(offset); local
73 if (freed) {
138 "block at offset 0x%08lX of size 0x%08lX already freed",
141 // merge freed blocks together
142 chunk_t* freed = cur; local
148 freed = p;
156 LOG_FATAL_IF(!freed->free,
157 "freed block at offset 0x%08lX of size 0x%08lX is not free!",
158 freed->start * kMemoryAlign, freed->size * kMemoryAlign)
    [all...]
  /external/compiler-rt/lib/asan/
asan_stats.h 32 size_t freed; member in struct:__asan::AsanStats
asan_stats.cc 42 Printf("Stats: %zuM freed by %zu calls\n", freed>>20, frees);
43 Printf("Stats: %zuM really freed by %zu calls\n",
asan_thread_registry.cc 113 return accumulated_stats_.malloced - accumulated_stats_.freed;
asan_allocator.cc 19 // Once freed, a chunk is moved to a quarantine (fifo list).
24 // Once freed, the body of the chunk contains the stack trace of the free call.
144 // CHUNK_ALLOCATED: the chunk is allocated and not yet freed.
145 // CHUNK_QUARANTINE: the chunk was freed and put into quarantine zone.
590 Printf("freed by thread T%d here:\n", free_thread->tid());
735 thread_stats.freed += m->used_size;
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_matrix.c 50 uint64_t allocated, freed; member in struct:_Ewk_Tile_Matrix::__anon15009::__anon15010
61 /* called when matrixsparse is resized or freed */
88 tm->stats.bytes.freed += t->bytes;
89 tm->stats.tiles.freed++;
131 tm->stats.bytes.freed += t->bytes;
132 tm->stats.tiles.freed++;
144 * freed/replaced by the cache.
208 tiles = tm->stats.tiles.allocated - tm->stats.tiles.freed;
209 bytes = tm->stats.bytes.allocated - tm->stats.bytes.freed;
217 tm->stats.tiles.allocated, tm->stats.tiles.freed, tiles
    [all...]
ewk_tiled_model.c 57 uint64_t freed; member in struct:tile_account::__anon15011
80 acc->tiles.freed = 0;
82 acc->bytes.freed = 0;
107 acc->bytes.freed += t->bytes;
108 acc->tiles.freed++;
133 tiles = acc->tiles.allocated - acc->tiles.freed;
134 bytes = acc->bytes.allocated - acc->bytes.freed;
139 acc->tiles.allocated, acc->tiles.freed, tiles,
140 acc->bytes.allocated, acc->bytes.freed, bytes,
564 * tiles will be freed
    [all...]
  /external/chromium/base/test/
test_file_util_win.cc 88 BOOL freed = VirtualFree(buffer, 0, MEM_RELEASE); local
89 DCHECK(freed);
101 BOOL freed = VirtualFree(buffer, 0, MEM_RELEASE); local
102 DCHECK(freed);
  /frameworks/native/include/utils/
UniquePtr.h 83 // raw pointer will be freed.
161 static bool freed = false; variable
166 freed = true;
229 assert(!freed);
234 assert(freed);
  /libcore/include/
UniquePtr.h 75 // raw pointer will be freed.
153 static bool freed = false; variable
158 freed = true;
221 assert(!freed);
226 assert(freed);
  /frameworks/native/libs/binder/
MemoryDealer.cpp 303 chunk_t const * const freed = dealloc(offset); local
304 if (freed) {
374 "block at offset 0x%08lX of size 0x%08lX already freed",
377 // merge freed blocks together
378 chunk_t* freed = cur; local
384 freed = p;
393 if (!freed->free) {
394 dump_l("dealloc (!freed->free)");
397 LOG_FATAL_IF(!freed->free,
398 "freed block at offset 0x%08lX of size 0x%08lX is not free!"
    [all...]
  /external/srtp/
Makefile 137 @grep freed tmp | wc -l > freed
140 cmp -s allocated freed
142 @rm freed allocated tmp
201 rm -rf freed allocated tmp
  /external/dbus/dbus/
dbus-mempool.c 57 * We just cast freed elements to this so we can
203 * The object must be freed with _dbus_mem_pool_dealloc().
374 _dbus_assert_not_reached ("freed nonexistent block");
380 DBusFreedElement *freed; local
382 freed = element;
383 freed->next = pool->free_elements;
384 pool->free_elements = freed;
  /external/mesa3d/docs/
MESA_agp_offset.spec 68 and freed with glXFreeMemoryNV. Sometimes it's useful to know where a
  /external/kernel-headers/original/linux/
jbd.h 303 BH_Freed, /* Has been freed (truncated) */
320 BUFFER_FNS(Freed, freed)
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 521 // Nonlocs can't be freed, of course.
522 // Non-region locations (labels and fixed addresses) also shouldn't be freed.
538 // Parameters, locals, statics, and globals shouldn't be freed.
543 // that should be freed, even though we allow it here.
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
run.c 225 int freed = 0; /* handles potential double freeing when fcn & param share a tempcell */ local
306 freed = 1;
312 if (freed == 0) {
    [all...]
  /external/libpng/
CHANGES     [all...]
  /bionic/libc/bionic/
dlmalloc.c 112 freed. This improves security by rejecting frees/reallocs that
286 upon a detected overwrite of freed heap space, thus losing the
447 normal freed space already exists it is used instead.) Using mmap
4713 size_t freed = 0; local
    [all...]
  /external/libffi/src/
dlmalloc.c 85 freed. This improves security by rejecting frees/reallocs that
259 upon a detected overwrite of freed heap space, thus losing the
420 normal freed space already exists it is used instead.) Using mmap
682 freed, free(p) will by default cause the current program to abort.
706 ANSI) and p is NOT freed.
709 space is lopped off and freed if possible. realloc with a size
4460 size_t freed = 0; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 121 freed. This improves security by rejecting frees/reallocs that
295 upon a detected overwrite of freed heap space, thus losing the
456 normal freed space already exists it is used instead.) Using mmap
726 freed, free(p) will by default cause the current program to abort.
4470 size_t freed = 0; local
    [all...]
  /external/chromium/third_party/libevent/
http.c 272 * The returned string needs to be freed by the caller.
622 * been send, the connection should get freed.
646 * reply before the connection can be freed.
    [all...]
  /external/blktrace/doc/
blktrace.tex 555 the issuer has to wait for one to be freed.
    [all...]

Completed in 616 milliseconds

1 2