Home
last modified time | relevance | path

Searched refs:head2 (Results 1 – 18 of 18) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-core/musl/bsd-headers/
H A Dsys-queue.h214 #define LIST_MOVE(head1, head2) do { \ argument
215 LIST_INIT((head2)); \
217 (head2)->lh_first = (head1)->lh_first; \
383 #define SIMPLEQ_CONCAT(head1, head2) do { \ argument
384 if (!SIMPLEQ_EMPTY((head2))) { \
385 *(head1)->sqh_last = (head2)->sqh_first; \
386 (head1)->sqh_last = (head2)->sqh_last; \
387 SIMPLEQ_INIT((head2)); \
556 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
557 if (!TAILQ_EMPTY(head2)) { \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/adbg/src/
H A Dadbg_run.c15 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
16 if (!TAILQ_EMPTY(head2)) { \
17 *(head1)->tqh_last = (head2)->tqh_first; \
18 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
19 (head1)->tqh_last = (head2)->tqh_last; \
20 TAILQ_INIT((head2)); \
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Dqueue.h274 #define STAILQ_CONCAT(head1, head2) do { \ argument
275 if (!STAILQ_EMPTY((head2))) { \
276 *(head1)->stqh_last = (head2)->stqh_first; \
277 (head1)->stqh_last = (head2)->stqh_last; \
278 STAILQ_INIT((head2)); \
445 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
446 if (!TAILQ_EMPTY(head2)) { \
447 *(head1)->tqh_last = (head2)->tqh_first; \
448 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
449 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/
H A Dqueue.h274 #define STAILQ_CONCAT(head1, head2) do { \ argument
275 if (!STAILQ_EMPTY((head2))) { \
276 *(head1)->stqh_last = (head2)->stqh_first; \
277 (head1)->stqh_last = (head2)->stqh_last; \
278 STAILQ_INIT((head2)); \
445 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
446 if (!TAILQ_EMPTY(head2)) { \
447 *(head1)->tqh_last = (head2)->tqh_first; \
448 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
449 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/sys/
H A Dqueue.h307 #define STAILQ_CONCAT(head1, head2) do { \ argument
308 if (!STAILQ_EMPTY((head2))) { \
309 *(head1)->stqh_last = (head2)->stqh_first; \
310 (head1)->stqh_last = (head2)->stqh_last; \
311 STAILQ_INIT((head2)); \
524 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
525 if (!TAILQ_EMPTY(head2)) { \
526 *(head1)->tqh_last = (head2)->tqh_first; \
527 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
528 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/sys/
H A Dqueue.h324 #define STAILQ_CONCAT(head1, head2) do { \ argument
325 if (!STAILQ_EMPTY((head2))) { \
326 *(head1)->stqh_last = (head2)->stqh_first; \
327 (head1)->stqh_last = (head2)->stqh_last; \
328 STAILQ_INIT((head2)); \
541 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
542 if (!TAILQ_EMPTY(head2)) { \
543 *(head1)->tqh_last = (head2)->tqh_first; \
544 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
545 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/sys/
H A Dqueue.h324 #define STAILQ_CONCAT(head1, head2) do { \ argument
325 if (!STAILQ_EMPTY((head2))) { \
326 *(head1)->stqh_last = (head2)->stqh_first; \
327 (head1)->stqh_last = (head2)->stqh_last; \
328 STAILQ_INIT((head2)); \
541 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
542 if (!TAILQ_EMPTY(head2)) { \
543 *(head1)->tqh_last = (head2)->tqh_first; \
544 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
545 (head1)->tqh_last = (head2)->tqh_last; \
[all …]
/OK3568_Linux_fs/external/rkwifibt/tools/rtk_hciattach/
H A Drtb_fwc.c576 static void merge_configs(struct list_head *head, struct list_head *head2) in merge_configs() argument
583 if (!head || !head2) in merge_configs()
586 if (list_empty(head2)) in merge_configs()
590 list_splice_tail(head2, head); in merge_configs()
591 INIT_LIST_HEAD(head2); in merge_configs()
596 list_for_each_safe(epos, enext, head2) { in merge_configs()
623 if (list_empty(head2)) in merge_configs()
625 list_for_each_safe(epos, enext, head2) { in merge_configs()
/OK3568_Linux_fs/external/rkwifibt/drivers/bluetooth_usb_driver/
H A Drtk_misc.c1055 static void merge_configs(struct list_head *head, struct list_head *head2) in merge_configs() argument
1062 if (!head || !head2) in merge_configs()
1065 if (list_empty(head2)) in merge_configs()
1069 list_splice_tail(head2, head); in merge_configs()
1070 INIT_LIST_HEAD(head2); in merge_configs()
1075 list_for_each_safe(epos, enext, head2) { in merge_configs()
1102 if (list_empty(head2)) in merge_configs()
1104 list_for_each_safe(epos, enext, head2) { in merge_configs()
/OK3568_Linux_fs/kernel/drivers/video/fbdev/nvidia/
H A Dnv_type.h79 u32 head2; member
H A Dnvidia.c440 state->head2 = NV_RD32(par->PCRTC0, 0x00002860) | 0x00001000; in nvidia_calc_regs()
448 state->head2 = NV_RD32(par->PCRTC0, 0x00002860) & ~0x00001000; in nvidia_calc_regs()
H A Dnv_hw.c1520 NV_WR32(par->PCRTC0, 0x2860, state->head2); in NVLoadStateExt()
1662 state->head2 = NV_RD32(par->PCRTC0, 0x2860); in NVUnloadStateExt()
/OK3568_Linux_fs/kernel/kernel/
H A Dpid.c373 struct hlist_head *head2 = &pid2->tasks[PIDTYPE_PID]; in exchange_tids() local
376 hlists_swap_heads_rcu(head1, head2); in exchange_tids()
/OK3568_Linux_fs/kernel/drivers/video/fbdev/riva/
H A Driva_hw.h515 U032 head2; member
H A Dfbdev.c793 newmode.ext.head2 = NV_RD32(par->riva.PCRTC0, 0x00002860) | in riva_load_video_mode()
801 newmode.ext.head2 = NV_RD32(par->riva.PCRTC0, 0x00002860) & in riva_load_video_mode()
H A Driva_hw.c1549 NV_WR32(chip->PCRTC0, 0x00002860, state->head2); in LoadStateExt()
1795 state->head2 = NV_RD32(chip->PCRTC0, 0x00002860); in UnloadStateExt()
/OK3568_Linux_fs/external/rknpu2/examples/librknn_api_android_demo/include/stb/
H A Dstb_image_write.h1440 static const unsigned char head2[] = { 0xFF,0xDA,0,0xC,3,1,0,2,0x11,3,0x11,0,0x3F,0 }; in stbi_write_jpg_core() local
1459 s->func(s->context, (void*)head2, sizeof(head2)); in stbi_write_jpg_core()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/stb/
H A Dstb_image_write.h1440 static const unsigned char head2[] = { 0xFF,0xDA,0,0xC,3,1,0,2,0x11,3,0x11,0,0x3F,0 }; in stbi_write_jpg_core() local
1459 s->func(s->context, (void*)head2, sizeof(head2)); in stbi_write_jpg_core()