Home
last modified time | relevance | path

Searched refs:next (Results 1 – 11 of 11) sorted by relevance

/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/compatible/nlib/
Dnlib_queue.h33 struct NLIBQueue *next; /**< next (or head) item */ member
40 #define NLIB_Queue_Init(queue) ((queue)->next = (queue)->prev = NULL)
45 #define NLIB_Queue_QueryHead(queue) ((queue)->next)
60 #define NLIB_Queue_QueryLinkNext(item, link) ((item)->link.next)
65 #define NLIB_Queue_IsEmpty(queue) ((queue)->next == NULL)
78 (item)->link.next = (previtem)->link.next; \
79 (previtem)->link.next = (NLIBQueue*) (item); \
80 if (NLIB_Queue_IsEnd(queue, (item)->link.next)) \
83 ((type) (item)->link.next)->link.prev = (NLIBQueue*) (item); \
92 (item)->link.next = (NLIBQueue*) (afteritem); \
[all …]
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/sources/libraries/fnd/
Dfnd_UnitHeap.cpp39 reinterpret_cast<Node*>(addr2)->next = freeNode; in Initialize()
86 pNode, pNode->next, pNode->next - pNode); in Dump()
87 pNode = pNode->next; in Dump()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/util/ARMv6/
Dutil_LockFreeQueueImpl.h140 LockFreeQueuePointer next = head.data.pointer->m_next; in DequeueImpl() local
145 if (!next.data.pointer) in DequeueImpl()
151 … CompareAndSwapQueuePointer(&(this->m_tail), tail, next.data.pointer, tail.data.tag + 1); in DequeueImpl()
156 … T DequeuedObject = static_cast<LockFreeQueueNode<T>*>(next.data.pointer)->Value(); in DequeueImpl()
157 … if (CompareAndSwapQueuePointer(&(this->m_head), head, next.data.pointer, head.data.tag + 1)) in DequeueImpl()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/sources/libraries/fnd/detail/
Dfnd_DetailHeap.cpp367 NNSiFndExpHeapMBlockHead *const next = block->pMBHeadNext; in RemoveMBlock() local
372 prev->pMBHeadNext = next; in RemoveMBlock()
376 list->head = next; in RemoveMBlock()
380 if (next) in RemoveMBlock()
382 next->pMBHeadPrev = prev; in RemoveMBlock()
399 NNSiFndExpHeapMBlockHead* next; in InsertMBlock() local
405 next = prev->pMBHeadNext; in InsertMBlock()
410 next = list->head; in InsertMBlock()
415 target->pMBHeadNext = next; in InsertMBlock()
416 if (next) in InsertMBlock()
[all …]
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/font/
Dfont_PackedFont.h337 OrderNode& next = GetNode(node.nextIndex); in Unlink() local
339 next.prevIndex = node.prevIndex; in Unlink()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/fnd/
Dfnd_UnitHeap.h93 Node* next; member
130 this->m_FreeNode = m_FreeNode->next; in Allocate()
153 reinterpret_cast<Node*&>(p)->next = m_FreeNode; in Free()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/snd/CTR/Common/
Dsnd_Types.h176 struct WaveBuffer * next; //!< 次のバッファ構造体のアドレス。ライブラリが使用するため、変更しないで下さい。 member
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/camera/CTR/
Dcamera_Api.h58 nn::Result SwitchContext( CameraSelect select, Context next );
418 inline nn::Result SwitchContext( CameraSelect select, Context next ) in SwitchContext() argument
420 return detail::SwitchContext(select, next); in SwitchContext()
Dcamera_Camera.h133 …ic nn::Result SwitchContext( nn::camera::CTR::CameraSelect camera, nn::camera::CTR::Context next );
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/socket/
Dsocket_User.autogen.h515 AddrInfo* next; //!< 次のAddrInfoへのポインタ。リストの最後ではNULL member
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/compatible/nsoc/
Dnsoc_user.h518 NSOCAddrInfo* next; /**< 次のNSOCAddrInfoへのポインタ。リストの最後ではNULL */ member