| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/sys/ |
| H A D | queue.h | 107 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \ argument 111 #define QUEUEDEBUG_LIST_OP(elm, field) \ argument 112 if ((elm)->field.le_next && \ 113 (elm)->field.le_next->field.le_prev != \ 114 &(elm)->field.le_next) \ 115 panic("LIST_* forw %p %s:%d", (elm), __FILE__, __LINE__);\ 116 if (*(elm)->field.le_prev != (elm)) \ 117 panic("LIST_* back %p %s:%d", (elm), __FILE__, __LINE__); 118 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \ argument 119 (elm)->field.le_next = (void *)1L; \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/sys/ |
| H A D | queue.h | 107 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \ argument 111 #define QUEUEDEBUG_LIST_OP(elm, field) \ argument 112 if ((elm)->field.le_next && \ 113 (elm)->field.le_next->field.le_prev != \ 114 &(elm)->field.le_next) \ 115 panic("LIST_* forw %p %s:%d", (elm), __FILE__, __LINE__);\ 116 if (*(elm)->field.le_prev != (elm)) \ 117 panic("LIST_* back %p %s:%d", (elm), __FILE__, __LINE__); 118 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \ argument 119 (elm)->field.le_next = (void *)1L; \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/sys/ |
| H A D | queue.h | 106 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \ argument 110 #define QUEUEDEBUG_LIST_OP(elm, field) \ argument 111 if ((elm)->field.le_next && \ 112 (elm)->field.le_next->field.le_prev != \ 113 &(elm)->field.le_next) \ 114 panic("LIST_* forw %p %s:%d", (elm), __FILE__, __LINE__);\ 115 if (*(elm)->field.le_prev != (elm)) \ 116 panic("LIST_* back %p %s:%d", (elm), __FILE__, __LINE__); 117 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \ argument 118 (elm)->field.le_next = (void *)1L; \ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/musl/bsd-headers/ |
| H A D | sys-queue.h | 125 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 145 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument 146 (elm)->field.sle_next = (slistelm)->field.sle_next; \ 147 (slistelm)->field.sle_next = (elm); \ 150 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 151 (elm)->field.sle_next = (head)->slh_first; \ 152 (head)->slh_first = (elm); \ 164 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 165 if ((head)->slh_first == (elm)) { \ 170 while(curelm->field.sle_next != (elm)) \ [all …]
|
| H A D | sys-tree.h | 76 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left argument 77 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right argument 123 name##_SPLAY_FIND(struct name *head, struct type *elm) \ 127 name##_SPLAY(head, elm); \ 128 if ((cmp)(elm, (head)->sph_root) == 0) \ 134 name##_SPLAY_NEXT(struct name *head, struct type *elm) \ 136 name##_SPLAY(head, elm); \ 137 if (SPLAY_RIGHT(elm, field) != NULL) { \ 138 elm = SPLAY_RIGHT(elm, field); \ 139 while (SPLAY_LEFT(elm, field) != NULL) { \ [all …]
|
| /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 D | queue.h | 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument 106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ 108 &(elm)->field.le_next; \ 109 (listelm)->field.le_next = (elm); \ 110 (elm)->field.le_prev = &(listelm)->field.le_next; \ 113 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument 114 (elm)->field.le_prev = (listelm)->field.le_prev; \ 115 (elm)->field.le_next = (listelm); \ 116 *(listelm)->field.le_prev = (elm); \ 117 (listelm)->field.le_prev = &(elm)->field.le_next; \ [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 D | queue.h | 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument 106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ 108 &(elm)->field.le_next; \ 109 (listelm)->field.le_next = (elm); \ 110 (elm)->field.le_prev = &(listelm)->field.le_next; \ 113 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument 114 (elm)->field.le_prev = (listelm)->field.le_prev; \ 115 (elm)->field.le_next = (listelm); \ 116 *(listelm)->field.le_prev = (elm); \ 117 (listelm)->field.le_prev = &(elm)->field.le_next; \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/ |
| H A D | queue.h | 136 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument 137 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ 138 SLIST_NEXT((slistelm), field) = (elm); \ 141 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 142 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ 143 SLIST_FIRST((head)) = (elm); \ 146 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 148 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 149 if (SLIST_FIRST((head)) == (elm)) { \ 154 while (SLIST_NEXT(curelm, field) != (elm)) \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/mediatek/ |
| H A D | mt8173-elm.dts | 7 #include "mt8173-elm.dtsi" 11 compatible = "google,elm-rev8", "google,elm-rev7", "google,elm-rev6", 12 "google,elm-rev5", "google,elm-rev4", "google,elm-rev3", 13 "google,elm", "mediatek,mt8173";
|
| H A D | Makefile | 9 dtb-$(CONFIG_ARCH_MEDIATEK) += mt8173-elm.dtb 10 dtb-$(CONFIG_ARCH_MEDIATEK) += mt8173-elm-hana.dtb 11 dtb-$(CONFIG_ARCH_MEDIATEK) += mt8173-elm-hana-rev7.dtb
|
| H A D | mt8173-elm-hana.dts | 7 #include "mt8173-elm-hana.dtsi"
|
| H A D | mt8173-elm-hana-rev7.dts | 7 #include "mt8173-elm-hana.dtsi"
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ |
| H A D | ia_css_s3a.host.c | 339 int out_width, out_height, chunk, rest, kmax, y, x, k, elm_start, elm, ofs; in ia_css_s3a_vmem_decode() local 364 elm = elm_start + x * sizeof(*output) / sizeof(int32_t); in ia_css_s3a_vmem_decode() 365 for (k = 0; k < kmax; k++, elm++) { in ia_css_s3a_vmem_decode() 367 hi[elm + chunk * 0], lo[elm + chunk * 0]); in ia_css_s3a_vmem_decode() 369 hi[elm + chunk * 1], lo[elm + chunk * 1]); in ia_css_s3a_vmem_decode() 371 hi[elm + chunk * 2], lo[elm + chunk * 2]); in ia_css_s3a_vmem_decode() 373 hi[elm + chunk * 3], lo[elm + chunk * 3]); in ia_css_s3a_vmem_decode() 375 hi[elm + chunk * 4], lo[elm + chunk * 4]); in ia_css_s3a_vmem_decode() 377 hi[elm + chunk * 5], lo[elm + chunk * 5]); in ia_css_s3a_vmem_decode() 379 hi[elm + chunk * 6], lo[elm + chunk * 6]); in ia_css_s3a_vmem_decode() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/core/ |
| H A D | uverbs_uapi.c | 18 void *elm; in uapi_add_elm() local 24 elm = kzalloc(alloc_size, GFP_KERNEL); in uapi_add_elm() 25 if (!elm) in uapi_add_elm() 27 rc = radix_tree_insert(&uapi->radix, key, elm); in uapi_add_elm() 29 kfree(elm); in uapi_add_elm() 33 return elm; in uapi_add_elm() 39 void *elm; in uapi_add_get_elm() local 41 elm = uapi_add_elm(uapi, key, alloc_size); in uapi_add_get_elm() 42 if (!IS_ERR(elm)) { in uapi_add_get_elm() 44 return elm; in uapi_add_get_elm() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mtd/ |
| H A D | elm.txt | 4 - compatible: Must be "ti,am3352-elm" 6 - interrupts: Interrupt number for the elm. 9 - ti,hwmods: Name of the hwmod associated to the elm 12 elm: elm@0 { 13 compatible = "ti,am3352-elm";
|
| H A D | gpmc-nand.txt | 44 - elm_id: <deprecated> use "ti,elm-id" instead 45 - ti,elm-id: Specifies phandle of the ELM devicetree node. 69 elm_id = <&elm>;
|
| /OK3568_Linux_fs/buildroot/configs/ |
| H A D | chromebook_elm_defconfig | 19 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/chromebook/elm/linux.config" 23 BR2_LINUX_KERNEL_INTREE_DTS_NAME="mediatek/mt8173-elm" 30 BR2_ROOTFS_POST_BUILD_SCRIPT="board/chromebook/elm/sign.sh"
|
| /OK3568_Linux_fs/kernel/tools/firewire/ |
| H A D | list.h | 56 #define list_next(elm, member) \ argument 57 list_entry((elm)->member.next, typeof(*elm), member)
|
| /OK3568_Linux_fs/buildroot/board/chromebook/elm/ |
| H A D | kernel.its | 19 description = "mt8173-elm.dtb"; 20 data = /incbin/("mt8173-elm.dtb");
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | am335x-chilisom.dtsi | 135 &elm { 152 ti,elm-id = <&elm>;
|
| H A D | am335x-igep0033.dtsi | 123 &elm { 166 ti,elm-id = <&elm>;
|
| H A D | am335x-phycore-som.dtsi | 185 &elm { 226 ti,elm-id = <&elm>;
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/dc/dce110/ |
| H A D | dce110_opp_csc_v.c | 680 const struct out_csc_color_matrix *elm; in dce110_opp_v_set_csc_default() local 693 elm = &global_color_matrix[i]; in dce110_opp_v_set_csc_default() 694 if (elm->color_space != default_adjust->out_color_space) in dce110_opp_v_set_csc_default() 699 program_color_matrix_v(xfm_dce, elm, option); in dce110_opp_v_set_csc_default()
|
| /OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/ |
| H A D | omap_elm.c | 25 struct elm *elm_cfg; 192 elm_cfg = (struct elm *)ELM_BASE; in elm_init()
|
| /OK3568_Linux_fs/u-boot/arch/arm/dts/ |
| H A D | am335x-draco.dtsi | 119 &elm { 161 elm_id = <&elm>;
|