Lines Matching refs:uptr

47     InterCoreBlockingQueueBase(uptr buffer[], size_t size) { Initialize(buffer, size); }  in InterCoreBlockingQueueBase()
49 void Initialize(uptr buffer[], size_t size);
50 nn::Result TryInitialize(uptr buffer[], size_t size);
52 void Enqueue(uptr data);
53 bool TryEnqueue(uptr data);
54 bool ForceEnqueue(uptr data, uptr* pOut);
55 void Jam(uptr data);
56 bool TryJam(uptr data);
57 uptr Dequeue();
58 bool TryDequeue(uptr* pOut);
59 uptr GetFront() const;
60 bool TryGetFront(uptr* pOut) const;
83 uptr* m_ppBuffer; //
134 InterCoreBlockingQueue(uptr buffer[], size_t size) : Base(buffer, size) {} in InterCoreBlockingQueue()
151 void Initialize(uptr buffer[], size_t size) { Base::Initialize(buffer, size); } in Initialize()
163 … nn::Result TryInitialize(uptr buffer[], size_t size) { return Base::TryInitialize(buffer, size); } in TryInitialize()
188 void Enqueue(uptr data) { Base::Enqueue(data); } in Enqueue()
203 bool TryEnqueue(uptr data) { return Base::TryEnqueue(data); } in TryEnqueue()
219 void Jam(uptr data) { Base::Jam(data); } in Jam()
234 bool TryJam(uptr data) { return Base::TryJam(data); } in TryJam()
247 uptr Dequeue() { return Base::Dequeue(); } in Dequeue()
262 bool TryDequeue(uptr* pOut) { return Base::TryDequeue(pOut); } in TryDequeue()
272 uptr GetFront() const { return Base::GetFront(); } in GetFront()
284 bool TryGetFront(uptr* pOut) const { return Base::TryGetFront(pOut); } in TryGetFront()
304 NN_EXTERN_C void nnosInterCoreBlockingQueueInitialize(nnosInterCoreBlockingQueue* this_, uptr buffe…
306 NN_EXTERN_C bool nnosInterCoreBlockingQueueTryInitialize(nnosInterCoreBlockingQueue* this_, uptr bu…
310 NN_EXTERN_C bool nnosInterCoreBlockingQueueTryEnqueue(nnosInterCoreBlockingQueue* this_, uptr data);
312 NN_EXTERN_C void nnosInterCoreBlockingQueueEnqueue(nnosInterCoreBlockingQueue* this_, uptr data);
314 NN_EXTERN_C bool nnosInterCoreBlockingQueueTryJam(nnosInterCoreBlockingQueue* this_, uptr data);
316 NN_EXTERN_C void nnosInterCoreBlockingQueueJam(nnosInterCoreBlockingQueue* this_, uptr data);
318 NN_EXTERN_C bool nnosInterCoreBlockingQueueTryDequeue(nnosInterCoreBlockingQueue* this_, uptr* pOut…
320 NN_EXTERN_C uptr nnosInterCoreBlockingQueueDequeue(nnosInterCoreBlockingQueue* this_);
322 NN_EXTERN_C bool nnosInterCoreBlockingQueueTryGetFront(nnosInterCoreBlockingQueue* this_, uptr* pOu…
324 NN_EXTERN_C uptr nnosInterCoreBlockingQueueGetFront(nnosInterCoreBlockingQueue* this_);