Searched defs:deleted (Results 1 - 25 of 69) sorted by relevance

123

/external/mesa3d/src/util/tests/hash_table/
H A Dclear.c48 bool *deleted = (bool *)entry->data; local
49 assert(!*deleted);
50 *deleted = true;
/external/tensorflow/tensorflow/core/kernels/batching_util/
H A Dbatch_scheduler_test.cc102 Notification do_delete, deleted; local
104 ThreadOptions(), "test", [&batch, &do_delete, &deleted]() {
107 deleted.Notify();
111 EXPECT_FALSE(deleted.HasBeenNotified());
113 deleted.WaitForNotification();
/external/llvm/lib/Analysis/
H A DAssumptionCache.cpp91 void AssumptionCacheTracker::FunctionCallbackVH::deleted() { function in class:AssumptionCacheTracker::FunctionCallbackVH
H A DIVUsers.cpp365 void IVStrideUse::deleted() { function in class:IVStrideUse
/external/proguard/src/proguard/classfile/editor/
H A DVariableEditor.java42 private boolean[] deleted = new boolean[ClassConstants.TYPICAL_VARIABLES_SIZE]; field in class:VariableEditor
56 if (deleted.length < maxLocals)
59 deleted = new boolean[maxLocals];
64 Arrays.fill(deleted, 0, maxLocals, false);
73 * @param variableIndex the index of the variable to be deleted.
77 deleted[variableIndex] = true;
84 * Returns whether the given variable at the given offset has deleted.
88 return deleted[instructionOffset];
117 variableMap[oldVariableIndex] = deleted[oldVariableIndex] ?
/external/gptfdisk/
H A Dmbr.cc109 // Returns 1 if a partition was deleted, 0 otherwise....
113 int i, deleted = 0; local
124 deleted = 1;
128 return deleted;
/external/libnl/src/
H A Dnl-addr-delete.c17 static int deleted = 0; variable
68 deleted++;
137 printf("Deleted %d addresses\n", deleted);
H A Dnl-class-delete.c16 static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0; variable
65 deleted++;
125 printf("Deleted %d classs\n", deleted);
H A Dnl-neigh-delete.c16 static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0; variable
63 deleted++;
119 printf("Deleted %d neighbours\n", deleted);
H A Dnl-qdisc-delete.c17 static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0; variable
65 deleted++;
141 printf("Deleted %d qdiscs\n", deleted);
H A Dnl-cls-delete.c16 static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0; variable
68 deleted++;
152 printf("Deleted %d classs\n", deleted);
H A Dnl-route-delete.c17 static int deleted = 0; variable
81 deleted++;
165 printf("Deleted %d routes\n", deleted);
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DValueHandleTest.cpp251 virtual void deleted() { DeletedCalls++; CallbackVH::deleted(); } function in class:__anon23199::RecordingVH
275 virtual void deleted() { DeletedCalls++; CallbackVH::deleted(); } function in class:__anon23199::RecordingVH
305 virtual void deleted() { function in class:__anon23199::RecoveringVH
348 virtual void deleted() { function in class:__anon23199::DestroyingVH
351 CallbackVH::deleted();
395 virtual void deleted() { function in class:__anon23199::ClearingVH
398 CallbackVH::deleted();
406 // C.deleted() shoul
[all...]
/external/libchrome/base/
H A Dcallback_unittest.cc157 explicit CallbackOwner(bool* deleted) { argument
159 deleted_ = deleted;
163 // We are deleted here if no-one else had a ref to us.
180 bool deleted = false; local
181 CallbackOwner* owner = new CallbackOwner(&deleted);
183 ASSERT_TRUE(deleted);
H A Dlazy_instance_unittest.cc114 void SetDeletedPtr(bool* deleted) { argument
115 deleted_ = deleted;
/external/oj-libjdwp/src/share/back/
H A DclassTrack.c102 * A bag containing all the deleted klass_tags ids. This must be accessed under the
164 struct bag* deleted = bagCreateBag(sizeof(char*), bagSize(deletedTagBag)); local
167 * case that there was anything deleted though.
180 /* Put this nodes signature into the deleted bag */
181 *(char**)bagAdd(deleted) = node->signature;
195 return deleted;
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DIVUsers.cpp269 void IVStrideUse::deleted() { function in class:IVStrideUse
/external/webrtc/webrtc/base/
H A Dmessagequeue_unittest.cc42 DeletedLockChecker(MessageQueueTest* test, bool* was_locked, bool* deleted) argument
43 : test(test), was_locked(was_locked), deleted(deleted) { }
45 *deleted = true;
50 bool* deleted; member in struct:DeletedLockChecker
84 bool deleted = false; local
85 DeletedLockChecker* d = new DeletedLockChecker(this, &was_locked, &deleted);
89 EXPECT_TRUE(deleted);
95 explicit DeletedMessageHandler(bool* deleted) : deleted_(deleted) { } argument
105 bool deleted = false; local
135 bool deleted = false; local
[all...]
/external/dtc/
H A Ddtc.h134 bool deleted; member in struct:label
144 bool deleted; member in struct:property
154 bool deleted; member in struct:node
177 if (!(l)->deleted)
184 if (!(p)->deleted)
191 if (!(c)->deleted)
/external/jdiff/src/jdiff/
H A DDiffMyers.java95 of deleted lines (counting only lines before the midpoint).
97 lines inserted or deleted (counting only lines before the midpoint).
356 /** Scan the tables of which lines are inserted and deleted,
391 /** Scan the tables of which lines are inserted and deleted,
468 Each change represents one place where some lines are deleted
472 DELETED is the number of lines deleted here from file 0.
484 public int deleted; field in class:DiffMyers.change
485 /** Line number of 1st deleted line. */
492 DELETED is the number of lines deleted here from file 0.
497 change(int line0, int line1, int deleted, in argument
[all...]
/external/llvm/include/llvm/IR/
H A DValueHandle.h39 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles
177 /// \brief Value handle that asserts if the Value is deleted.
293 // Check that this value is valid (i.e., it hasn't been deleted). We
296 assert(ValueHandleBase::isValid(VP) && "Tracked Value was deleted!");
373 virtual void deleted() { setValPtr(nullptr); } function in class:llvm::CallbackVH
/external/skia/src/core/
H A DSkTDynamicHash.h159 // We have two special values to indicate an empty or deleted entry.
174 int count = 0, deleted = 0; local
177 deleted++;
184 SKTDYNAMICHASH_CHECK(deleted == fDeleted);
/external/skqp/src/core/
H A DSkTDynamicHash.h159 // We have two special values to indicate an empty or deleted entry.
174 int count = 0, deleted = 0; local
177 deleted++;
184 SKTDYNAMICHASH_CHECK(deleted == fDeleted);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DValueHandle.h37 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles
289 // Check that this value is valid (i.e., it hasn't been deleted). We
292 assert(ValueHandleBase::isValid(VP) && "Tracked Value was deleted!");
383 virtual void deleted() { function in class:llvm::CallbackVH
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DDebugLoc.cpp240 /// deleted - The MDNode this is pointing to got deleted, so this pointer needs
242 void DebugRecVH::deleted() { function in class:DebugRecVH
287 // the mdnode got deleted.
289 if (NewVal == 0) return deleted();

Completed in 703 milliseconds

123