/device/soc/rockchip/rk3568/hardware/omx_il/osal/ |
H A D | Rockchip_OSAL_Queue.c | 51 queue->first = (ROCKCHIP_QElem *)Rockchip_OSAL_Malloc(sizeof(ROCKCHIP_QElem)); in Rockchip_OSAL_QueueCreate() 52 if (queue->first == NULL) in Rockchip_OSAL_QueueCreate() 55 Rockchip_OSAL_Memset(queue->first, 0, sizeof(ROCKCHIP_QElem)); in Rockchip_OSAL_QueueCreate() 56 currentqelem = queue->last = queue->first; in Rockchip_OSAL_QueueCreate() 62 while (queue->first != NULL) { in Rockchip_OSAL_QueueCreate() 63 currentqelem = queue->first->qNext; in Rockchip_OSAL_QueueCreate() 64 Rockchip_OSAL_Free((OMX_PTR)queue->first); in Rockchip_OSAL_QueueCreate() 65 queue->first = currentqelem; in Rockchip_OSAL_QueueCreate() 75 currentqelem->qNext = queue->first; in Rockchip_OSAL_QueueCreate() 91 currentqelem = queue->first in Rockchip_OSAL_QueueTerminate() [all...] |
H A D | Rockchip_OSAL_Queue.h | 42 ROCKCHIP_QElem *first; member
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/include/ |
H A D | osal_list.h | 228 struct osal_list_head *first = OSAL_NULL; in osal_list_rotate_left() local 231 first = head->next; in osal_list_rotate_left() 232 osal_list_move_tail(first, head); in osal_list_rotate_left() 292 struct osal_list_head *first = list->next; in osal___list_splice() local 295 first->prev = prev; in osal___list_splice() 296 prev->next = first; in osal___list_splice() 305 * @head: the place to add it in the first list. 318 * @head: the place to add it in the first list. 331 * @head: the place to add it in the first list. 347 * @head: the place to add it in the first lis 598 struct osal_hlist_node *first; global() member 650 struct osal_hlist_node *first = h->first; osal_hlist_add_head() local [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/ |
H A D | osal_list.h | 225 struct osal_list_head *first = OSAL_NULL; in osal_list_rotate_left() local 228 first = head->next; in osal_list_rotate_left() 229 osal_list_move_tail(first, head); in osal_list_rotate_left() 289 struct osal_list_head *first = list->next; in osal___list_splice() local 292 first->prev = prev; in osal___list_splice() 293 prev->next = first; in osal___list_splice() 302 * @head: the place to add it in the first list. 315 * @head: the place to add it in the first list. 328 * @head: the place to add it in the first list. 344 * @head: the place to add it in the first lis 595 struct osal_hlist_node *first; global() member 647 struct osal_hlist_node *first = h->first; osal_hlist_add_head() local [all...] |
H A D | list.h | 97 struct list_head *first = list->next; in __list_splice() local 101 first->prev = head; in __list_splice() 102 head->next = first; in __list_splice()
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/ |
H A D | osal_list.h | 224 struct osal_list_head *first = OSAL_NULL; in osal_list_rotate_left() local 227 first = head->next; in osal_list_rotate_left() 228 osal_list_move_tail(first, head); in osal_list_rotate_left() 288 struct osal_list_head *first = list->next; in osal___list_splice() local 291 first->prev = prev; in osal___list_splice() 292 prev->next = first; in osal___list_splice() 301 * @head: the place to add it in the first list. 314 * @head: the place to add it in the first list. 327 * @head: the place to add it in the first list. 343 * @head: the place to add it in the first lis 594 struct osal_hlist_node *first; global() member 646 struct osal_hlist_node *first = h->first; osal_hlist_add_head() local [all...] |
H A D | list.h | 97 struct list_head *first = list->next; in __list_splice() local 101 first->prev = head; in __list_splice() 102 head->next = first; in __list_splice()
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/include/ |
H A D | osal_list.h | 227 struct osal_list_head *first = OSAL_NULL; in osal_list_rotate_left() local 230 first = head->next; in osal_list_rotate_left() 231 osal_list_move_tail(first, head); in osal_list_rotate_left() 287 struct osal_list_head *first = list->next; in osal___list_splice() local 290 first->prev = prev; in osal___list_splice() 291 prev->next = first; in osal___list_splice() 300 * @head: the place to add it in the first list. 313 * @head: the place to add it in the first list. 326 * @head: the place to add it in the first list. 342 * @head: the place to add it in the first lis 593 struct osal_hlist_node *first; global() member 645 struct osal_hlist_node *first = h->first; osal_hlist_add_head() local [all...] |
/device/soc/rockchip/common/hardware/mpp/include/ |
H A D | mpp_hash.h | 47 struct hlist_node *first; member 52 .first = NULL \ 54 #define HLIST_HEAD(name) struct hlist_head name = {.first = NULL} 55 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL) 77 return !h->first; in hlist_empty() 108 struct hlist_node *first = h->first; in hlist_add_head() local 109 n->next = first; in hlist_add_head() 110 if (first) { in hlist_add_head() 111 first in hlist_add_head() [all...] |
/device/soc/rockchip/rk3399/hardware/mpp/include/ |
H A D | mpp_hash.h | 47 struct hlist_node *first; member 50 #define HLIST_HEAD_INIT { .first = NULL } 51 #define HLIST_HEAD(name) struct hlist_head name = { .first = NULL } 52 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL) 75 return !h->first; in hlist_empty() 106 struct hlist_node *first = h->first; in hlist_add_head() local 107 n->next = first; in hlist_add_head() 108 if (first) { in hlist_add_head() 109 first in hlist_add_head() [all...] |
/device/soc/rockchip/rk3568/hardware/mpp/include/ |
H A D | mpp_hash.h | 47 struct hlist_node *first; member 50 #define HLIST_HEAD_INIT { .first = NULL } 51 #define HLIST_HEAD(name) struct hlist_head name = { .first = NULL } 52 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL) 75 return !h->first; in hlist_empty() 106 struct hlist_node *first = h->first; in hlist_add_head() local 107 n->next = first; in hlist_add_head() 108 if (first) { in hlist_add_head() 109 first in hlist_add_head() [all...] |
/device/soc/rockchip/rk3588/hardware/mpp/include/ |
H A D | mpp_hash.h | 48 struct hlist_node *first; member 51 #define HLIST_HEAD_INIT { .first = NULL } 52 #define HLIST_HEAD(name) struct hlist_head name = { .first = NULL } 53 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL) 76 // return !READ_ONCE(h->first); in hlist_empty() 77 return !h->first; in hlist_empty() 107 struct hlist_node *first = h->first; in hlist_add_head() local 108 n->next = first; in hlist_add_head() 109 if (first) in hlist_add_head() [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/ |
H A D | list.h | 100 struct list_head *first = list->next; in __list_splice() local 104 first->prev = head; in __list_splice() 105 head->next = first; in __list_splice()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/arch/ |
H A D | sys_arch.h | 56 int first, last; member 69 int first, last; member
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/higv/include/ |
H A D | linux_cbb_list.h | 107 struct cbb_list_head *first = list->next; in inline_cbb_list_splice() local 111 first->prev = head; in inline_cbb_list_splice() 112 head->next = first; in inline_cbb_list_splice()
|
/device/soc/hisilicon/common/hal/display/source/display_device/src/core/ |
H A D | hdi_display.cpp | 78 DISPLAY_LOGD("zorder range : zRange.first %{public}p zRange.second %{public}p", *zRange.first, *zRange.second);
in SetLayerZorder() 79 for (auto c = zRange.first; c != zRange.second; c++) {
in SetLayerZorder() 125 DISPLAY_LOGD("zorder range:zRange.first %{public}p, zRange.second %{public}p", *zRange.first, *zRange.second);
in CloseLayer() 126 for (auto c = zRange.first; c != zRange.second; c++) {
in CloseLayer()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/usr/sensor/omnivision_ov2775/ |
H A D | ov2775_cmos.c | 706 static HI_BOOL first[ISP_MAX_PIPE_NUM] = {[0 ...(ISP_MAX_PIPE_NUM - 1)] = HI_TRUE}; in cmos_inttime_update() local 713 if (first[vi_pipe]) { /* short exposure */ in cmos_inttime_update() 716 first[vi_pipe] = HI_FALSE; in cmos_inttime_update() 718 first[vi_pipe] = HI_TRUE; in cmos_inttime_update() 721 if ((first[vi_pipe]) in cmos_inttime_update() 726 first[vi_pipe] = HI_FALSE; in cmos_inttime_update() 731 first[vi_pipe] = HI_TRUE; in cmos_inttime_update() 736 first[vi_pipe] = HI_TRUE; in cmos_inttime_update() 819 static HI_BOOL first[ISP_MAX_PIPE_NUM] = {[0 ...(ISP_MAX_PIPE_NUM - 1)] = HI_TRUE}; in cmos_wdr_gains_update() local 822 if (first[vi_pip in cmos_wdr_gains_update() 865 static HI_BOOL first[ISP_MAX_PIPE_NUM] = {[0 ...(ISP_MAX_PIPE_NUM - 1)] = HI_TRUE}; cmos_hlcg_wdr_gains_update() local [all...] |
/device/soc/hisilicon/common/hal/display/source/display_device/src/composer/ |
H A D | hdi_video_composition.cpp | 133 if (iter->first == layer->GetId()) {
in CLoseUnUsedLayer() 140 neededRemove.push_back(iter->first);
in CLoseUnUsedLayer()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | x509.h | 317 mbedtls_asn1_named_data *first ); 319 mbedtls_asn1_named_data *first );
|
/device/soc/rockchip/common/sdk_linux/kernel/sched/ |
H A D | topology.c | 606 struct sched_group *tmp, *first; in free_sched_groups() local 612 first = sg; in free_sched_groups() 624 } while (sg != first); in free_sched_groups() 665 * Also keep a unique ID per domain (we use the first CPU number in 780 * Return the canonical balance CPU for this group, this is the first CPU 794 * NUMA topology (first read the regular topology blurb below) 837 * - the first group of each domain is its child domain; this 838 * gets us the first 0-1,3 1008 struct sched_group *first = NULL, *last = NULL, *sg; in build_overlap_sched_groups() local 1085 if (!first) { in build_overlap_sched_groups() 1223 struct sched_group *first = NULL, *last = NULL; build_sched_groups() local [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/paho.mqtt.c/include/mqtt/ |
H A D | LinkedList.h | 39 n32 ptr T concat Item suppress "first" 69 ListElement *first, /**< first element in the list */ member
|
/device/soc/rockchip/common/hardware/display/src/display_device/ |
H A D | hdi_display.cpp | 77 DISPLAY_DEBUGLOG("zorder range : zRange.first %{public}p zRange.second %{public}p", *zRange.first, in SetLayerZorder() 79 for (auto c = zRange.first; c != zRange.second; c++) { in SetLayerZorder()
|
/device/soc/rockchip/rk3399/hardware/display/src/display_device/ |
H A D | hdi_display.cpp | 78 DISPLAY_DEBUGLOG("zorder range : zRange.first %{public}p zRange.second %{public}p", *zRange.first, *zRange.second); in SetLayerZorder() 79 for (auto c = zRange.first; c != zRange.second; c++) { in SetLayerZorder()
|
/device/soc/rockchip/rk3588/hardware/display/src/display_device/ |
H A D | hdi_display.cpp | 78 DISPLAY_LOGD("zorder range : zRange.first %{public}p zRange.second %{public}p", *zRange.first, *zRange.second);
in SetLayerZorder() 79 for (auto c = zRange.first; c != zRange.second; c++) {
in SetLayerZorder()
|
/device/soc/rockchip/common/sdk_linux/drivers/phy/rockchip/ |
H A D | phy-rockchip-inno-dsidphy.c | 29 * is the first address, the other from the bit4 to bit0 is the second address.
32 * first address is different.
36 #define PHY_REG(first, second) (FIRST_ADDRESS(first) | SECOND_ADDRESS(second))
289 static void phy_update_bits(struct inno_dsidphy *inno, u8 first, u8 second, u8 mask, u8 val)
in phy_update_bits() argument 291 u32 reg = PHY_REG(first, second) << 2;
in phy_update_bits()
|