/external/harfbuzz_ng/test/api/ |
D | test-object.c | 183 gboolean freed; member 198 g_assert (!data->freed); in free_up0() 199 data->freed = TRUE; in free_up0() 207 g_assert (!data->freed); in free_up1() 208 data->freed = TRUE; in free_up1() 268 g_assert (data[0].freed); in test_object() 270 g_assert (!data[1].freed); in test_object() 272 data[0].freed = FALSE; in test_object() 274 g_assert (!data[0].freed); in test_object() 276 g_assert (data[0].freed); in test_object() [all …]
|
D | test-unicode.c | 51 gboolean freed; member 59 g_assert (!data->freed); in free_up() 60 data->freed = TRUE; in free_up() 72 g_assert (!data->freed); in simple_get_script() 89 g_assert (!data->freed); in a_is_for_arabic_get_script() 626 g_assert (data[0].freed && !data[1].freed); in test_unicode_setters() 635 g_assert (data[0].freed && !data[1].freed); in test_unicode_setters() 637 g_assert (data[0].freed && !data[1].freed); in test_unicode_setters() 675 g_assert (!f->data[0].freed && !f->data[1].freed); in test_unicode_subclassing_nil() 677 g_assert (!f->data[0].freed && f->data[1].freed); in test_unicode_subclassing_nil() [all …]
|
D | test-blob.c | 95 int freed; member 103 g_assert_cmpint (fixture->freed, ==, 0); in free_up() 104 fixture->freed++; in free_up() 191 fixture->freed = 0; in fixture_init() 201 g_assert_cmpint (fixture->freed, ==, 1); in fixture_finish() 224 g_assert_cmpint (fixture->freed, ==, 1); in test_blob() 228 g_assert_cmpint (fixture->freed, ==, 0); in test_blob() 237 g_assert_cmpint (fixture->freed, ==, 1); in test_blob() 275 g_assert_cmpint (fixture->freed, ==, 1); in test_blob_subblob() 278 g_assert_cmpint (fixture->freed, ==, 0); in test_blob_subblob() [all …]
|
D | test-font.c | 68 int *freed = (int *) user_data; in free_up() local 70 g_assert (!*freed); in free_up() 72 (*freed)++; in free_up() 91 int freed = 0; in test_face_createfortables() local 93 face = hb_face_create_for_tables (get_table, &freed, free_up); in test_face_createfortables() 94 g_assert (!freed); in test_face_createfortables() 109 g_assert (freed); in test_face_createfortables() 151 int freed = 0; in _test_fontfuncs_nil() local 163 hb_font_set_funcs (font, ffuncs, &freed, free_up); in _test_fontfuncs_nil() 164 g_assert_cmpint (freed, ==, 0); in _test_fontfuncs_nil() [all …]
|
/external/dbus/dbus/ |
D | dbus-mempool.c | 392 DBusFreedElement *freed; in _dbus_mem_pool_dealloc() local 394 freed = element; in _dbus_mem_pool_dealloc() 396 VALGRIND_MAKE_MEM_UNDEFINED (freed, sizeof (freed)); in _dbus_mem_pool_dealloc() 398 freed->next = pool->free_elements; in _dbus_mem_pool_dealloc() 399 pool->free_elements = freed; in _dbus_mem_pool_dealloc() 416 DBusFreedElement *freed; in _dbus_mem_pool_get_stats() local 425 for (freed = pool->free_elements; freed != NULL; freed = freed->next) in _dbus_mem_pool_get_stats()
|
/external/e2fsprogs/lib/ext2fs/ |
D | punch.c | 55 int freed = 0; in ind_punch() local 94 freed++; in ind_punch() 97 printf("Freed %d blocks\n", freed); in ind_punch() 99 return ext2fs_iblk_sub_blocks(fs, inode, freed); in ind_punch() 183 __u32 free_count, int *freed) in punch_extent_blocks() argument 192 *freed += free_count; in punch_extent_blocks() 244 *freed += freed_now; in punch_extent_blocks() 257 int freed = 0; in ext2fs_punch_extent() local 389 free_start, free_count, &freed); in ext2fs_punch_extent() 401 dbg_printf("Freed %d blocks\n", freed); in ext2fs_punch_extent() [all …]
|
/external/compiler-rt/lib/asan/ |
D | asan_stats.cc | 47 Printf("Stats: %zuM freed by %zu calls\n", freed>>20, frees); in Print() 143 uptr freed = stats.freed; in __sanitizer_get_current_allocated_bytes() local 146 return (malloced > freed) ? malloced - freed : 1; in __sanitizer_get_current_allocated_bytes()
|
D | asan_stats.h | 32 uptr freed; member
|
/external/conscrypt/src/compat/native/ |
D | UniquePtr.h | 163 static bool freed = false; 168 freed = true; 231 assert(!freed); 236 assert(freed);
|
/external/conscrypt/src/openjdk/native/ |
D | UniquePtr.h | 163 static bool freed = false; 168 freed = true; 231 assert(!freed); 236 assert(freed);
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 491 // FIXME: under ASan the call below may write to freed memory and corrupt 502 // FIXME: under ASan the call below may write to freed memory and corrupt 543 // FIXME: under ASan the call below may write to freed memory and corrupt 561 // FIXME: under ASan the call below may write to freed memory and corrupt 579 // FIXME: under ASan the call below may write to freed memory and corrupt 826 // FIXME: under ASan the call below may write to freed memory and corrupt 839 // FIXME: under ASan the call below may write to freed memory and corrupt 852 // FIXME: under ASan the call below may write to freed memory and corrupt 865 // FIXME: under ASan the call below may write to freed memory and corrupt 909 // FIXME: under ASan the call below may write to freed memory and corrupt [all …]
|
/external/srtp/ |
D | Makefile | 137 @grep freed tmp | wc -l > freed 140 cmp -s allocated freed 142 @rm freed allocated tmp 201 rm -rf freed allocated tmp
|
D | Makefile.in | 149 @grep freed tmp | wc -l > freed 152 cmp -s allocated freed 154 @rm freed allocated tmp 215 rm -rf freed allocated tmp
|
/external/libchrome/base/ |
D | scoped_generic_unittest.cc | 17 IntTraits(std::vector<int>* freed) : freed_ints(freed) {} in IntTraits()
|
/external/llvm/test/CodeGen/SystemZ/ |
D | frame-01.ll | 22 ; allocated and freed using AGHI. This size is big enough to require 69 ; The largest size that can be both allocated and freed using AGFI. 84 ; must be freed using two instructions.
|
/external/clang/test/Analysis/ |
D | NewDelete-intersections.mm | 79 free(p); // expected-warning{{Use of memory after it is freed}} 85 p = new(p) int; // expected-warning{{Use of memory after it is freed}}
|
/external/skia/tests/ |
D | MemsetTest.cpp | 75 size_t freed = alloc.unalloc(ptr); in test_chunkalloc() local 76 REPORTER_ASSERT(reporter, freed == kMin); in test_chunkalloc()
|
/external/llvm/test/Bitcode/ |
D | invalid.ll | 6 ; The test checks that LLVM reports the error and doesn't access freed memory
|
/external/llvm/test/CodeGen/PowerPC/ |
D | 2008-04-16-CoalescerBug.ll | 2 ; Avoid reading memory that's already freed.
|
/external/mesa3d/docs/ |
D | RELNOTES-6.3 | 53 * The named texture/program/buffer ID is immediately freed for re-use. 59 Previously, the texture/program/buffer ID wasn't freed until the object
|
D | MESA_agp_offset.spec | 68 and freed with glXFreeMemoryNV. Sometimes it's useful to know where a
|
/external/valgrind/gdbserver_tests/ |
D | hginfo.stdinB.gdb | 15 # ptr must be freed at this state
|
/external/autotest/client/site_tests/kernel_LowMemNotify/ |
D | control | 9 Verify we no longer get it when some of the memory is freed.
|
/external/autotest/client/site_tests/platform_CompressedSwap/ |
D | control | 27 Verify low memory notification goes away after some memory is freed.
|
/external/c-ares/ |
D | NEWS | 11 * Added ares_free_string() function so that memory can be freed in the
|