/external/boringssl/src/ssl/pqueue/ |
CMakeLists.txt | 4 pqueue 8 pqueue.c
|
pqueue_test.c | 19 #include <openssl/pqueue.h> 23 static void clear_and_free_queue(pqueue q) { 35 pqueue q = pqueue_new(); 63 pqueue q = pqueue_new();
|
pqueue.c | 57 #include <openssl/pqueue.h> 93 pqueue pqueue_new(void) {
|
/external/libnfc-nci/halimpl/pn54x/tml/ |
phDal4Nfc_messageQueueLib.c | 52 ** Returns (int) value of pQueue if successful 58 phDal4Nfc_message_queue_t * pQueue; 61 pQueue = (phDal4Nfc_message_queue_t *) malloc(sizeof(phDal4Nfc_message_queue_t)); 62 if (pQueue == NULL) 64 memset(pQueue, 0, sizeof(phDal4Nfc_message_queue_t)); 65 if (pthread_mutex_init(&pQueue->nCriticalSectionMutex, NULL) == -1) 67 free (pQueue); 70 if (sem_init(&pQueue->nProcessSemaphore, 0, 0) == -1) 72 free (pQueue); 76 return ((intptr_t) pQueue); [all...] |
/external/libnfc-nxp/Linux_x86/ |
phDal4Nfc_messageQueueLib.c | 72 phDal4Nfc_message_queue_t * pQueue; 73 pQueue = (phDal4Nfc_message_queue_t *) phOsalNfc_GetMemory(sizeof(phDal4Nfc_message_queue_t)); 74 if (pQueue == NULL) 76 memset(pQueue, 0, sizeof(phDal4Nfc_message_queue_t)); 77 if (pthread_mutex_init (&pQueue->nCriticalSectionMutex, NULL) == -1) 79 if (sem_init (&pQueue->nProcessSemaphore, 0, 0) == -1) 81 return ((intptr_t)pQueue); 98 phDal4Nfc_message_queue_t * pQueue; 104 pQueue = (phDal4Nfc_message_queue_t *)msqid; 105 pthread_mutex_lock(&pQueue->nCriticalSectionMutex) [all...] |
/external/boringssl/src/ssl/ |
CMakeLists.txt | 3 add_subdirectory(pqueue) 39 $<TARGET_OBJECTS:pqueue>
|
/external/boringssl/src/include/openssl/ |
pqueue.h | 72 typedef struct _pqueue *pqueue; typedef in typeref:struct:_pqueue 87 OPENSSL_EXPORT pqueue pqueue_new(void); 91 OPENSSL_EXPORT void pqueue_free(pqueue pq); 110 OPENSSL_EXPORT pitem *pqueue_peek(pqueue pq); 114 OPENSSL_EXPORT pitem *pqueue_find(pqueue pq, uint8_t *prio64be); 120 OPENSSL_EXPORT pitem *pqueue_insert(pqueue pq, pitem *item); 124 OPENSSL_EXPORT pitem *pqueue_pop(pqueue pq); 127 OPENSSL_EXPORT size_t pqueue_size(pqueue pq); 134 OPENSSL_EXPORT piterator pqueue_iterator(pqueue pq);
|
/external/opencv3/modules/ml/src/ |
kdtree.cpp | 294 PQueueElem* pqueue = (PQueueElem*)(uchar*)_pqueue; 309 nidx = pqueue[0].idx; 310 alt_d = pqueue[0].dist; 313 std::swap(pqueue[0], pqueue[qsize]); 314 d = pqueue[0].dist; 320 if( right < qsize && pqueue[right].dist < pqueue[left].dist ) 322 if( pqueue[left].dist >= d ) 324 std::swap(pqueue[i], pqueue[left]) [all...] |
/external/iproute2/ip/ |
ipntable.c | 275 __u32 pqueue; local 279 if (get_u32(&pqueue, *argv, 0)) 283 NDTPA_PROXY_QLEN, pqueue); 545 __u32 pqueue = rta_getattr_u32(tpb[NDTPA_PROXY_QLEN]); local 546 fprintf(fp, "proxy_queue %u ", pqueue);
|
/external/boringssl/src/util/ |
all_tests.json | 59 ["ssl/pqueue/pqueue_test"],
|
/external/vulkan-validation-layers/layers/ |
swapchain.cpp | [all...] |
object_tracker.h | [all...] |
device_limits.cpp | 533 vkGetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue *pQueue) { 552 dev_data->device_dispatch_table->GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); [all...] |
/external/skia/tests/ |
TDPQueueTest.cpp | 101 // Stick the dummy objects in the pqueue.
|
/frameworks/native/vulkan/libvulkan/ |
driver.h | 122 VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue);
|
driver.cpp | 838 VkQueue* pQueue) { 841 data.driver.GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); 842 SetData(*pQueue, data);
|
api_gen.cpp | 297 VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue); [all...] |
/external/deqp/external/vulkancts/framework/vulkan/ |
vkConcreteDeviceInterface.inl | 5 virtual void getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) const;
|
vkDeviceDriverImpl.inl | 10 void DeviceDriver::getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) const 12 m_vk.getDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
|
vkNullDriverImpl.inl | 370 VKAPI_ATTR void VKAPI_CALL getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) 375 DE_UNREF(pQueue); [all...] |
vkFunctionPointerTypes.inl | 21 typedef VKAPI_ATTR void (VKAPI_CALL* GetDeviceQueueFunc) (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue);
|
/external/llvm/lib/CodeGen/ |
RegAllocGreedy.cpp | 111 typedef std::priority_queue<std::pair<unsigned, unsigned> > PQueue; 134 PQueue Queue; 344 void enqueue(PQueue &CurQueue, LiveInterval *LI); 345 LiveInterval *dequeue(PQueue &CurQueue); 396 bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &, 536 void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) { 602 LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) { [all...] |
/frameworks/native/vulkan/nulldrv/ |
null_driver_gen.h | 48 VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue);
|
/external/boringssl/ |
sources.mk | 294 src/ssl/pqueue/pqueue.c\
|
/external/vulkan-validation-layers/loader/ |
trampoline.c | [all...] |