Home
last modified time | relevance | path

Searched refs:pNode (Results 1 – 8 of 8) sorted by relevance

/hardware/ti/omap4xxx/security/tf_crypto_sst/
Dlib_object.c77 LIB_OBJECT_NODE* pNode, in libObjectKeyEqualNode() argument
87 nKey1 == pNode->key.nHandle; in libObjectKeyEqualNode()
92 &pNode->key.sStorageName, in libObjectKeyEqualNode()
97 uint32_t nLength2 = pNode->key.f.nFilenameLength; in libObjectKeyEqualNode()
103 &pNode->key.f.sFilename, in libObjectKeyEqualNode()
118 LIB_OBJECT_NODE* pNode = pRoot; in libObjectSearch() local
121 if (libObjectKeyEqualNode(pNode, nKey1, pKey2, eNodeType)) in libObjectSearch()
124 return pNode; in libObjectSearch()
126 pNode = pNode->pNext; in libObjectSearch()
128 while (pNode != pRoot); in libObjectSearch()
[all …]
/hardware/ti/omap4xxx/security/tf_daemon/
Dsmc_properties_parser.c149 static S_RESULT static_listSortedAddNode(NODE* pList,NODE* pNode) in static_listSortedAddNode() argument
154 nCmp=strcmp(pNode->pName,pList->pName); in static_listSortedAddNode()
163 pList->pRight=pNode; in static_listSortedAddNode()
165 pNode->pPrevious=pList; in static_listSortedAddNode()
166 pNode->pNext=pList->pNext; in static_listSortedAddNode()
169 pList->pNext->pPrevious=pNode; in static_listSortedAddNode()
171 pList->pNext=pNode; in static_listSortedAddNode()
183 pList->pLeft=pNode; in static_listSortedAddNode()
185 pNode->pNext=pList; in static_listSortedAddNode()
186 pNode->pPrevious=pList->pPrevious; in static_listSortedAddNode()
[all …]
/hardware/ti/wlan/wl1271/utils/
Dqueue.c74 static INLINE void InsertNode( TQueNodeHdr *pNode, TQueNodeHdr *pPrev, TQueNodeHdr *pNext) in InsertNode() argument
76 pNext->pPrev = pNode; in InsertNode()
77 pNode->pNext = pNext; in InsertNode()
78 pNode->pPrev = pPrev; in InsertNode()
79 pPrev->pNext = pNode; in InsertNode()
94 static INLINE void AddToHead( TQueNodeHdr *pNode, TQueNodeHdr *pListHead) in AddToHead() argument
96 InsertNode (pNode, pListHead, pListHead->pNext); in AddToHead()
102 static INLINE void AddToTail( TQueNodeHdr *pNode, TQueNodeHdr *pListHead) in AddToTail() argument
104 InsertNode( pNode, pListHead->pPrev, pListHead ); in AddToTail()
110 static INLINE void DelFromTail (TQueNodeHdr *pNode) in DelFromTail() argument
[all …]
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
DOMX_JpegDec_Utils.c2343 Node *pNode = LinkedList->pRoot; in LinkedList_FreeElement() local
2345 while (pNode != NULL) { in LinkedList_FreeElement()
2346 if (pNode->pValue == pValue) { in LinkedList_FreeElement()
2347 Node *pTempNode = pNode->pNextNode; in LinkedList_FreeElement()
2355 free(pNode->pValue); in LinkedList_FreeElement()
2356 free(pNode); in LinkedList_FreeElement()
2359 pPastNode = pNode; in LinkedList_FreeElement()
2360 pNode = pNode->pNextNode; in LinkedList_FreeElement()
2379 Node *pNode = LinkedList->pRoot; in LinkedList_DisplayAll() local
2383 while (pNode != NULL) { in LinkedList_DisplayAll()
[all …]
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
DOMX_JpegEnc_Utils.c3263 Node *pNode = LinkedList->pRoot; in LinkedList_FreeElement() local
3265 while (pNode != NULL) { in LinkedList_FreeElement()
3266 if (pNode->pValue == pValue) { in LinkedList_FreeElement()
3267 Node *pTempNode = pNode->pNextNode; in LinkedList_FreeElement()
3275 free(pNode->pValue); in LinkedList_FreeElement()
3276 pNode->pValue = NULL; in LinkedList_FreeElement()
3277 free(pNode); in LinkedList_FreeElement()
3278 pNode = NULL; in LinkedList_FreeElement()
3281 pPastNode = pNode; in LinkedList_FreeElement()
3282 pNode = pNode->pNextNode; in LinkedList_FreeElement()
[all …]
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/test/
DVideoEncTest.c485 VIDENCTEST_NODE* pNode = NULL; in VIDENCTEST_ListRemove() local
488 pNode = pListHead; in VIDENCTEST_ListRemove()
490 while (pNode->pNext != NULL) { in VIDENCTEST_ListRemove()
491 if (pNode->pNext->pData == pData) { in VIDENCTEST_ListRemove()
492 pTmp = pNode->pNext; in VIDENCTEST_ListRemove()
493 pNode->pNext = pTmp->pNext; in VIDENCTEST_ListRemove()
501 pNode = pNode->pNext; in VIDENCTEST_ListRemove()
524 VIDENCTEST_NODE* pNode = NULL; in VIDENCTEST_ListDestroy() local
525 pNode = pListHead; in VIDENCTEST_ListDestroy()
527 while (pNode->pNext != NULL) { in VIDENCTEST_ListDestroy()
[all …]
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
DOMX_VPP_Utils.c3611 Node *pNode = LinkedList->pRoot; in LinkedList_FreeElement() local
3613 while (pNode != NULL) { in LinkedList_FreeElement()
3614 if (pNode->pValue == pValue) { in LinkedList_FreeElement()
3615 Node *pTempNode = pNode->pNextNode; in LinkedList_FreeElement()
3623 free(pNode->pValue); in LinkedList_FreeElement()
3624 free(pNode); in LinkedList_FreeElement()
3627 pPastNode = pNode; in LinkedList_FreeElement()
3628 pNode = pNode->pNextNode; in LinkedList_FreeElement()
3647 Node *pNode = LinkedList->pRoot; in LinkedList_DisplayAll() local
3651 while (pNode != NULL) { in LinkedList_DisplayAll()
[all …]
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
DOMX_VideoEnc_Utils.c269 VIDENC_NODE* pNode = NULL; in OMX_VIDENC_ListRemove() local
272 pNode = pListHead; in OMX_VIDENC_ListRemove()
274 while (pNode->pNext != NULL) in OMX_VIDENC_ListRemove()
276 if (pNode->pNext->pData == pData) in OMX_VIDENC_ListRemove()
278 pTmp = pNode->pNext; in OMX_VIDENC_ListRemove()
279 pNode->pNext = pTmp->pNext; in OMX_VIDENC_ListRemove()
287 pNode = pNode->pNext; in OMX_VIDENC_ListRemove()
310 VIDENC_NODE* pNode = NULL; in OMX_VIDENC_ListDestroy() local
311 pNode = pListHead; in OMX_VIDENC_ListDestroy()
313 while (pNode->pNext != NULL) in OMX_VIDENC_ListDestroy()
[all …]