HomeSort by relevance Sort by last modified time
    Searched full:deallocated (Results 1 - 25 of 534) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
MismatchedDeallocator-checker-test.mm 23 delete p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not 'delete'}}
29 delete q; // expected-warning{{Memory allocated by realloc() should be deallocated by free(), not 'delete'}}
34 delete p; // expected-warning{{Memory allocated by calloc() should be deallocated by free(), not 'delete'}}
39 delete p; // expected-warning{{Memory allocated by strdup() should be deallocated by free(), not 'delete'}}
44 delete p; // expected-warning{{Memory allocated by my_malloc() should be deallocated by free(), not 'delete'}}
49 operator delete(p); // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not operator delete}}
54 delete[] p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not 'delete[]'}}
59 operator delete[](p); // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not operator delete[]}}
65 free(p); // expected-warning{{Memory allocated by 'new' should be deallocated by 'delete', not free()}}
70 free(p); // expected-warning{{Memory allocated by operator new should be deallocated by 'delete', not free()}
    [all...]
MismatchedDeallocator-path-notes.cpp 10 delete p; // expected-warning {{Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'}}
11 // expected-note@-1 {{Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'}}
141 // CHECK-NEXT: <string>Memory allocated by &apos;new[]&apos; should be deallocated by &apos;delete[]&apos;, not &apos;delete&apos;</string>
143 // CHECK-NEXT: <string>Memory allocated by &apos;new[]&apos; should be deallocated by &apos;delete[]&apos;, not &apos;delete&apos;</string>
146 // CHECK-NEXT: <key>description</key><string>Memory allocated by &apos;new[]&apos; should be deallocated by &apos;delete[]&apos;, not &apos;delete&apos;</string>
Malloc+MismatchedDeallocator+NewDelete.cpp 40 delete x; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not 'delete'}}
91 delete p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not 'delete'}}
104 delete arr; // expected-warning{{Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'}}
  /external/jemalloc/test/integration/
allocated.c 39 if ((err = mallctl("thread.deallocated", &d0, &sz, NULL, 0))) {
77 mallctl("thread.deallocated", &d1, &sz, NULL, 0);
82 "\"thread.deallocated\" value");
87 "Deallocated memory counter should increase by at least the amount "
88 "explicitly deallocated");
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_installed_bubble_bridge.mm 21 // The controller is deallocated when the window is closed, so no need to
35 // The controller is deallocated when the window is closed, so no need to
  /external/chromium_org/content/test/data/npapi/
plugin_delete_in_deallocate.html 39 that the object being deallocated is not deallocated a second time.
resize_during_paint.html 24 deallocated memory isn't used.<br />
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GlobalTest.java 22 * allocated/deallocated.
  /external/chromium_org/chrome/browser/ui/cocoa/
about_ipc_dialog.mm 14 // The controller gets deallocated when then window is closed,
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrTextureUnitObj.h 15 // Although texture unit objects are allocated & deallocated like the other
  /external/compiler-rt/test/asan/TestCases/Posix/
large_allocator_unpoisons_on_free.cc 3 // The memory is released only when the deallocated chunk leaves the quarantine,
  /external/skia/src/gpu/gl/debug/
GrTextureUnitObj.h 15 // Although texture unit objects are allocated & deallocated like the other
  /external/ceres-solver/internal/ceres/
cxsparse.h 77 // The returned matrix should be deallocated with Free when not used
83 // The returned matrix should be deallocated with Free when not used
89 // The returned matrix should be deallocated with Free when not used anymore.
95 // The returned matrix should be deallocated with Free when not used anymore.
107 // The returned matrix should be deallocated with Free when not used
  /external/chromium_org/base/mac/
scoped_mach_port.h 39 // is the last one on the right, the right is deallocated.
  /external/chromium_org/components/enhanced_bookmarks/
test_image_store.h 11 // data in memory. When deallocated all the associations are lost.
  /external/chromium_org/third_party/mesa/src/docs/
MESA_release_buffers.spec 65 deallocated. True is returned if <d> is a valid Mesa GLX drawable,
  /external/cmockery/cmockery_0_1_2/src/example/
database.h 21 * results are statically allocated and should not be deallocated using free()
  /external/mesa3d/docs/
MESA_release_buffers.spec 65 deallocated. True is returned if <d> is a valid Mesa GLX drawable,
  /external/strace/test/
childthread.c 41 /* Here the child TCB cannot be deallocated as there still exist
  /external/chromium_org/content/test/plugin/
plugin_delete_plugin_in_deallocate_test.cc 139 // Verify that our object was deallocated exactly once.
144 "Object was not deallocated exactly once.");
  /external/jemalloc/test/unit/
junk.c 21 "Missing junk fill for byte %zu/%zu of deallocated region",
35 "Missing junk fill for byte %zu/%zu of deallocated region",
  /external/chromium_org/base/memory/
singleton_objc.h 37 // are instantiated by sending |alloc| and |init| messages, and are deallocated
  /external/chromium_org/ppapi/shared_impl/
scoped_pp_var.h 48 // An array of PP_Vars which will be deallocated and have their references
  /external/valgrind/main/callgrind/
costs.h 19 * Chunks are allocated on demand, and deallocated at program termination.
  /libcore/include/
LocalArray.h 26 * construction time, a buffer will be allocated on the heap (and deallocated

Completed in 1062 milliseconds

1 2 3 4 5 6 7 8 91011>>