Lines Matching refs:pInterCoreBlockingQueue
314 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueInitialize() local
315 new (pInterCoreBlockingQueue) InterCoreBlockingQueue(); in nnosInterCoreBlockingQueueInitialize()
316 pInterCoreBlockingQueue->Initialize(buffer, size); in nnosInterCoreBlockingQueueInitialize()
321 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueTryInitialize() local
322 new (pInterCoreBlockingQueue) InterCoreBlockingQueue(); in nnosInterCoreBlockingQueueTryInitialize()
323 Result result = pInterCoreBlockingQueue->TryInitialize(buffer, size); in nnosInterCoreBlockingQueueTryInitialize()
329 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueFinalize() local
330 pInterCoreBlockingQueue->Finalize(); in nnosInterCoreBlockingQueueFinalize()
331 pInterCoreBlockingQueue->~InterCoreBlockingQueue(); in nnosInterCoreBlockingQueueFinalize()
336 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueTryEnqueue() local
337 return pInterCoreBlockingQueue->TryEnqueue(data); in nnosInterCoreBlockingQueueTryEnqueue()
342 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueEnqueue() local
343 pInterCoreBlockingQueue->Enqueue(data); in nnosInterCoreBlockingQueueEnqueue()
348 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueTryJam() local
349 return pInterCoreBlockingQueue->TryJam(data); in nnosInterCoreBlockingQueueTryJam()
354 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueJam() local
355 pInterCoreBlockingQueue->Jam(data); in nnosInterCoreBlockingQueueJam()
360 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueTryDequeue() local
361 return pInterCoreBlockingQueue->TryDequeue(pOut); in nnosInterCoreBlockingQueueTryDequeue()
366 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueDequeue() local
367 return pInterCoreBlockingQueue->Dequeue(); in nnosInterCoreBlockingQueueDequeue()
372 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueTryGetFront() local
373 return pInterCoreBlockingQueue->TryGetFront(pOut); in nnosInterCoreBlockingQueueTryGetFront()
378 …InterCoreBlockingQueue* pInterCoreBlockingQueue = reinterpret_cast<InterCoreBlockingQueue*>(this_); in nnosInterCoreBlockingQueueGetFront() local
379 return pInterCoreBlockingQueue->GetFront(); in nnosInterCoreBlockingQueueGetFront()