/external/squashfs-tools/squashfs-tools/ |
D | caches-queues-lists.h | 31 entry->NAME##_prev = (*list)->NAME##_prev; \ 32 (*list)->NAME##_prev->NAME##_next = entry; \ 33 (*list)->NAME##_prev = entry; \ 36 entry->NAME##_prev = entry->NAME##_next = entry; \ 43 if(entry->NAME##_prev == entry && entry->NAME##_next == entry) { \ 46 } else if(entry->NAME##_prev != NULL && entry->NAME##_next != NULL) { \ 48 entry->NAME##_next->NAME##_prev = entry->NAME##_prev; \ 49 entry->NAME##_prev->NAME##_next = entry->NAME##_next; \ 53 entry->NAME##_prev = entry->NAME##_next = NULL; \ 64 entry->LINK##_prev = NULL; \ [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/internal/ |
D | LinkedList.kt | 22 @PublishedApi internal var _prev = this variable in kotlinx.coroutines.internal.LinkedListNode 26 public inline val prevNode get() = _prev 30 val prev = this._prev in addLast() 32 node._prev = prev in addLast() 34 this._prev = node in addLast() 54 val prev = this._prev in removeImpl() 57 next._prev = prev in removeImpl() 75 if (!predicate(_prev)) return false in addLastIfPrev() 85 if (!predicate(_prev)) return false in addLastIfPrevAndIf()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/concurrent/src/internal/ |
D | LockFreeLinkedList.kt | 49 private val _prev = atomic(this) // Node to the left (cannot be marked as removed) in <lambda>() constant 96 get() = correctPrev(null) ?: findPrevNonRemoved(_prev.value) in <lambda>() 100 return findPrevNonRemoved(current._prev.value) in <lambda>() 106 node._prev.lazySet(this) in <lambda>() 171 node._prev.lazySet(this) in <lambda>() 182 node._prev.lazySet(this) in <lambda>() 247 next._prev.loop { nextPrev -> in <lambda>() 249 if (next._prev.compareAndSet(nextPrev, this)) { in <lambda>() 271 val oldPrev = _prev.value in <lambda>() 281 if (!this._prev.compareAndSet(oldPrev, prev)) { in <lambda>() [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/ |
D | ConcurrentLinkedList.kt | 98 private val _prev = atomic(prev) constant 127 val prev: N? get() = _prev.value in trySetNext() 132 fun cleanPrev() { _prev.lazySet(null) } in trySetNext() 162 next._prev.update { if (it === null) null else prev } in markAsClosed() 175 cur = cur._prev.value
|
/external/llvm/test/MC/MachO/ |
D | darwin-x86_64-reloc.s | 33 _prev: label 42 .quad L1 - _prev
|
/external/tinyxml2/ |
D | tinyxml2.cpp | 802 _prev( 0 ), _next( 0 ), in XMLNode() 867 _lastChild = _lastChild->_prev; in Unlink() 870 if ( child->_prev ) { in Unlink() 871 child->_prev->_next = child->_next; in Unlink() 874 child->_next->_prev = child->_prev; in Unlink() 877 child->_prev = 0; in Unlink() 888 TIXMLASSERT(node->_prev == 0); in DeleteChild() 908 addThis->_prev = _lastChild; in InsertEndChild() 917 addThis->_prev = 0; in InsertEndChild() 936 TIXMLASSERT( _firstChild->_prev == 0 ); in InsertFirstChild() [all …]
|
D | tinyxml2.h | 806 return _prev; in PreviousSibling() 810 return _prev; in PreviousSibling() 962 XMLNode* _prev; variable
|
/external/fastrpc/inc/ |
D | uthash.h | 271 char *_prev; \ 278 _prev = NULL; \ 280 if (_prev != (char*)(_thh->hh_prev)) { \ 282 _thh->hh_prev, _prev ); \ 285 _prev = (char*)(_thh); \ 300 _prev = NULL; \ 304 if (_prev !=(char*)(_thh->prev)) { \ 306 _thh->prev, _prev ); \ 308 _prev = (char*)ELMT_FROM_HH((head)->hh.tbl, _thh); \
|
/external/libdrm/intel/ |
D | uthash.h | 406 char *_prev; \ 411 _prev = NULL; \ 413 if (_prev != (char*)(_thh->hh_prev)) { \ 415 _thh->hh_prev, _prev ); \ 418 _prev = (char*)(_thh); \ 433 _prev = NULL; \ 437 if (_prev !=(char*)(_thh->prev)) { \ 439 _thh->prev, _prev ); \ 441 _prev = (char*)ELMT_FROM_HH((head)->hh.tbl, _thh); \
|
/external/rust/crates/quote/src/ |
D | spanned.rs | 40 iter.fold(None, |_prev, next| Some(next)) in join_spans()
|
/external/rust/crates/tokio-util/src/task/ |
D | join_map.rs | 388 let _prev = self.hashes_by_task.insert(id, hash); in insert() localVariable 389 debug_assert!(_prev.is_none(), "no prior task should have had the same ID"); in insert()
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 619 TiXmlNode* PreviousSibling( const char *_prev ) { in PreviousSibling() argument 620 …return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->PreviousSibling( _prev ) … in PreviousSibling()
|
/external/rust/crates/parking_lot_core/src/ |
D | parking_lot.rs | 65 _prev: *const HashTable, field 84 _prev: prev, in new()
|
/external/crosvm/docs/book/ |
D | mermaid.min.js | 24 …_prev=t,this._sentinel=t}function r(t){t._prev._next=t._next,t._next._prev=t._prev,delete t._next,…
|