Home
last modified time | relevance | path

Searched refs:deallocated (Results 1 – 25 of 68) sorted by relevance

123

/external/clang/test/Analysis/
DMismatchedDeallocator-checker-test.mm23 …delete p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not '…
29 …delete q; // expected-warning{{Memory allocated by realloc() should be deallocated by free(), not …
34 …delete p; // expected-warning{{Memory allocated by calloc() should be deallocated by free(), not '…
39 …delete p; // expected-warning{{Memory allocated by strdup() should be deallocated by free(), not '…
44 …delete p; // expected-warning{{Memory allocated by my_malloc() should be deallocated by free(), no…
49 …operator delete(p); // expected-warning{{Memory allocated by malloc() should be deallocated by fre…
54 …delete[] p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not…
59 …operator delete[](p); // expected-warning{{Memory allocated by malloc() should be deallocated by f…
64 delete p; // expected-warning{{Memory allocated by alloca() should not be deallocated}}
70 …free(p); // expected-warning{{Memory allocated by 'new' should be deallocated by 'delete', not fre…
[all …]
DDeallocUseAfterFreeErrors.m39 …elease]; // expected-warning {{Use of instance variable '_ivar' after 'self' has been deallocated}}
40 // expected-note@-1 {{Use of instance variable '_ivar' after 'self' has been deallocated}}
59 …nil; // expected-warning {{Use of instance variable '_delegate' after 'self' has been deallocated}}
60 // expected-note@-1 {{Use of instance variable '_delegate' after 'self' has been deallocated}}
77 _s.f = 7; // expected-warning {{Use of instance variable '_s' after 'self' has been deallocated}}
78 // expected-note@-1 {{Use of instance variable '_s' after 'self' has been deallocated}}
96 …var = 7; // expected-warning {{Use of instance variable '_ivar' after 'self' has been deallocated}}
97 // expected-note@-1 {{Use of instance variable '_ivar' after 'self' has been deallocated}}
109 …r = nil; // expected-warning {{Use of instance variable '_ivar' after 'self' has been deallocated}}
110 // expected-note@-1 {{Use of instance variable '_ivar' after 'self' has been deallocated}}
[all …]
/external/tensorflow/tensorflow/lite/
Darena_planner.cc75 std::vector<int> deallocated(graph_info_->num_tensors(), false); in PlanAllocations() local
77 auto allocate = [this, &allocated, &deallocated](int node, in PlanAllocations()
82 TF_LITE_ENSURE(context_, !deallocated[tensor]); in PlanAllocations()
88 auto deallocate = [this, &allocated, &deallocated]( in PlanAllocations()
95 TF_LITE_ENSURE(context_, !deallocated[tensor]); in PlanAllocations()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DAbstractStream.java133 private boolean deallocated; field in AbstractStream.TransportState
221 return allocated && numSentBytesQueued < DEFAULT_ONREADY_THRESHOLD && !deallocated; in isReady()
249 deallocated = true; in onStreamDeallocated()
/external/tensorflow/tensorflow/core/framework/
Dlog_memory.proto32 // Id of the tensor buffer being deallocated, used to match to a
83 // Id of the tensor buffer being deallocated, used to match to a
Dstep_stats.proto25 // The bytes that are not deallocated.
/external/python/cpython3/Doc/c-api/
Dbytes.rst147 ``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If
169 ``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If
203 reallocation fails, the original bytes object at *\*bytes* is deallocated,
Drefcounting.rst36 when a class instance with a :meth:`__del__` method is deallocated). While
Dintro.rst176 deallocated, they are typically static :c:type:`PyTypeObject` objects.
195 When an object's reference count becomes zero, the object is deallocated. If
197 Those other objects may be deallocated in turn, if this decrement makes their
226 deallocated as long as our variable is pointing to it. If we know that there
Dgcsupport.rst78 #. The object's memory must be deallocated using :c:func:`PyObject_GC_Del`.
/external/libaom/libaom/third_party/fastfeat/
DREADME.libvpx28 with the number of corners returned. The data can be deallocated with free().
/external/grpc-grpc/src/objective-c/RxLibrary/
DGRXWriteable.m34 // executed recursively. Because blocks can be deallocated even during execution, we have to
/external/python/cpython2/Doc/c-api/
Dstring.rst176 ``PyString_FromStringAndSize(NULL, size)``. It must not be deallocated. If
200 ``PyString_FromStringAndSize(NULL, size)``. It must not be deallocated. If
234 fails, the original string object at *\*string* is deallocated, *\*string* is
Drefcounting.rst36 when a class instance with a :meth:`__del__` method is deallocated). While
Dintro.rst99 deallocated, they are typically static :c:type:`PyTypeObject` objects.
118 When an object's reference count becomes zero, the object is deallocated. If
120 Those other objects may be deallocated in turn, if this decrement makes their
149 deallocated as long as our variable is pointing to it. If we know that there
Dgcsupport.rst86 #. The object's memory must be deallocated using :c:func:`PyObject_GC_Del`.
/external/e2fsprogs/doc/
Dlibblkid.txt63 and deallocated. To initialize the blkid cache, blkid_get_cache()
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Dghost-sdnode-dbgvalues.ll22 ; This map was never purged when the SDNodes were deallocated and thus if a new
/external/llvm/test/DebugInfo/X86/
Dghost-sdnode-dbgvalues.ll22 ; This map was never purged when the SDNodes were deallocated and thus if a new
/external/clang/docs/
DAutomaticReferenceCounting.rst965 as long as the underlying memory is not deallocated. The conversion to
1364 operations in ways which might cause an object to be deallocated
1413 ARC may not allow a retainable object ``X`` to be deallocated at a
1496 has been deallocated by the time of an observable side-effect, then
1497 ARC must cause ``X`` to be deallocated by no later than the occurrence
1622 object but before it is deallocated or any of its instance variables are
1634 object may have been pool-allocated and should not be deallocated with
1706 dangerous, to cause an object to be deallocated during a message send to that
1719 possible in theory to cause an object to be deallocated during its execution
2110 into ``object`` has not yet been deallocated or begun deallocation, retains and
[all …]
/external/e2fsprogs/doc/RelNotes/
Dv1.26.txt163 when inodes or blocks are allocated or deallocated.
/external/python/cpython2/Doc/whatsnew/
D2.1.rst370 never be deallocated until the Python process exits and cleans up This isn't
376 object will be deallocated and the weak references will now indicate that the
401 weak references --- an object referenced only by proxy objects is deallocated --
404 exists. If the object is deallocated, attempting to use a proxy will cause a
/external/python/cpython3/Doc/whatsnew/
D2.1.rst370 never be deallocated until the Python process exits and cleans up. This isn't
376 object will be deallocated and the weak references will now indicate that the
401 weak references --- an object referenced only by proxy objects is deallocated --
404 exists. If the object is deallocated, attempting to use a proxy will cause a
/external/python/cpython3/Misc/
DSpecialBuilds.txt173 /* Number of times an object of this type was deallocated. */
/external/python/cpython2/Misc/
DSpecialBuilds.txt169 /* Number of times an object of this type was deallocated. */

123