Home
last modified time | relevance | path

Searched refs:pList (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A DRkAiqCalibApi.cpp1057 struct list_head* pList = pAdd->listHead.next; in CamCalibdbAddYnrV2Profile() local
1058 while (pList != &pAdd->listHead) { in CamCalibdbAddYnrV2Profile()
1059 … Calibdb_Ynr_params_V2_t *pParam = container_of(pList, Calibdb_Ynr_params_V2_t, listItem); in CamCalibdbAddYnrV2Profile()
1064 pList = pList->next; in CamCalibdbAddYnrV2Profile()
1235 struct list_head* pList = pAdd->listHead.next; in CamCalibdbAddCnrV1Profile() local
1236 while (pList != &pAdd->listHead) { in CamCalibdbAddCnrV1Profile()
1237 … Calibdb_Cnr_params_V1_t *pParam = container_of(pList, Calibdb_Cnr_params_V1_t, listItem); in CamCalibdbAddCnrV1Profile()
1242 pList = pList->next; in CamCalibdbAddCnrV1Profile()
1419 struct list_head* pList = pAdd->listHead.next; in CamCalibdbAddSharpV3Profile() local
1420 while (pList != &pAdd->listHead) { in CamCalibdbAddSharpV3Profile()
[all …]
/OK3568_Linux_fs/external/xserver/dix/
H A Dwindow.c988 DevCursorList pList; in DisposeWindowOptional() local
991 pList = pWin->optional->deviceCursors; in DisposeWindowOptional()
992 while (pList) { in DisposeWindowOptional()
993 if (pList->cursor) in DisposeWindowOptional()
994 FreeCursor(pList->cursor, (XID) 0); in DisposeWindowOptional()
995 pPrev = pList; in DisposeWindowOptional()
996 pList = pList->next; in DisposeWindowOptional()
3560 DevCursorList pList; in WindowGetDeviceCursor() local
3565 pList = pWin->optional->deviceCursors; in WindowGetDeviceCursor()
3567 while (pList) { in WindowGetDeviceCursor()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath9k/
H A Deeprom.c52 bool ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize, in ath9k_hw_get_lower_upper_index() argument
57 if (target <= pList[0]) { in ath9k_hw_get_lower_upper_index()
61 if (target >= pList[listSize - 1]) { in ath9k_hw_get_lower_upper_index()
67 if (pList[i] == target) { in ath9k_hw_get_lower_upper_index()
71 if (target < pList[i + 1]) { in ath9k_hw_get_lower_upper_index()
H A Deeprom.h677 bool ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize,
/OK3568_Linux_fs/kernel/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_rx.c506 struct list_head *pList = &pTS->rx_pending_pkt_list; in AddReorderEntry() local
507 while (pList->next != &pTS->rx_pending_pkt_list) { in AddReorderEntry()
508 …if (SN_LESS(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->SeqNum)) in AddReorderEntry()
509 pList = pList->next; in AddReorderEntry()
510 …else if (SN_EQUAL(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->S… in AddReorderEntry()
515 pReorderEntry->List.next = pList->next; in AddReorderEntry()
517 pReorderEntry->List.prev = pList; in AddReorderEntry()
518 pList->next = &pReorderEntry->List; in AddReorderEntry()
/OK3568_Linux_fs/kernel/drivers/staging/rtl8192e/
H A Drtllib_rx.c452 struct list_head *pList = &pTS->RxPendingPktList; in AddReorderEntry() local
454 while (pList->next != &pTS->RxPendingPktList) { in AddReorderEntry()
456 list_entry(pList->next, struct rx_reorder_entry, in AddReorderEntry()
458 pList = pList->next; in AddReorderEntry()
460 ((struct rx_reorder_entry *)list_entry(pList->next, in AddReorderEntry()
466 pReorderEntry->List.next = pList->next; in AddReorderEntry()
468 pReorderEntry->List.prev = pList; in AddReorderEntry()
469 pList->next = &pReorderEntry->List; in AddReorderEntry()