/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
s5pv210-fascinate4g.dts | 161 PIN_SLP(gpa0-0, PREV, NONE); 162 PIN_SLP(gpa0-1, PREV, NONE); 163 PIN_SLP(gpa0-2, PREV, NONE); 165 PIN_SLP(gpa0-4, PREV, NONE); 166 PIN_SLP(gpa0-5, PREV, NONE); 167 PIN_SLP(gpa0-6, PREV, NONE); 168 PIN_SLP(gpa0-7, PREV, NONE); 178 PIN_SLP(gpb-3, PREV, NONE); 180 PIN_SLP(gpb-5, PREV, NONE); 254 PIN_SLP(gpf3-4, PREV, NONE) [all...] |
s5pv210-galaxys.dts | 199 PIN_SLP(gpa0-0, PREV, NONE); 200 PIN_SLP(gpa0-1, PREV, NONE); 201 PIN_SLP(gpa0-2, PREV, NONE); 216 PIN_SLP(gpb-3, PREV, NONE); 218 PIN_SLP(gpb-5, PREV, NONE); 292 PIN_SLP(gpf3-4, PREV, NONE); 305 PIN_SLP(gpg1-2, PREV, NONE); 327 PIN_SLP(gpi-0, PREV, NONE); 329 PIN_SLP(gpi-2, PREV, NONE); 330 PIN_SLP(gpi-3, PREV, NONE) [all...] |
exynos3250-monk.dts | 502 PIN_SLP(gpb-0, PREV, NONE); 503 PIN_SLP(gpb-1, PREV, NONE); 504 PIN_SLP(gpb-2, PREV, NONE); 505 PIN_SLP(gpb-3, PREV, NONE); 550 PIN_SLP(gpe0-0, PREV, NONE); 551 PIN_SLP(gpe0-1, PREV, NONE); 554 PIN_SLP(gpe0-4, PREV, NONE); 560 PIN_SLP(gpe1-1, PREV, NONE); 581 PIN_SLP(gpk1-0, PREV, NONE); 582 PIN_SLP(gpk1-1, PREV, NONE) [all...] |
exynos4412-midas.dtsi | 1035 PIN_SLP(gpc1-1, PREV, NONE); 1066 PIN_SLP(gpf1-7, PREV, NONE); 1068 PIN_SLP(gpf2-0, PREV, NONE); 1078 PIN_SLP(gpf3-1, PREV, NONE); 1079 PIN_SLP(gpf3-2, PREV, NONE); 1080 PIN_SLP(gpf3-3, PREV, NONE); 1084 PIN_SLP(gpj0-0, PREV, NONE); 1085 PIN_SLP(gpj0-1, PREV, NONE); 1086 PIN_SLP(gpj0-2, PREV, NONE); 1088 PIN_SLP(gpj0-4, PREV, NONE) [all...] |
exynos4412-p4note.dtsi | 689 PIN_SLP(gpc1-1, PREV, NONE); 741 PIN_SLP(gpj0-3, PREV, NONE); 742 PIN_SLP(gpj0-4, PREV, NONE); 749 PIN_SLP(gpj1-2, PREV, NONE); 854 PIN_SLP(gpk0-0, PREV, NONE); 855 PIN_SLP(gpk0-1, PREV, NONE); 856 PIN_SLP(gpk0-2, PREV, NONE); 857 PIN_SLP(gpk0-3, PREV, NONE); 858 PIN_SLP(gpk0-4, PREV, NONE); 859 PIN_SLP(gpk0-5, PREV, NONE) [all...] |
exynos3250-rinato.dts | 734 PIN_SLP(gpb-0, PREV, NONE); 735 PIN_SLP(gpb-1, PREV, NONE); 736 PIN_SLP(gpb-2, PREV, NONE); 737 PIN_SLP(gpb-3, PREV, NONE); 825 PIN_SLP(gpe0-0, PREV, NONE); 826 PIN_SLP(gpe0-1, PREV, NONE); 835 PIN_SLP(gpe1-1, PREV, NONE);
|
/src/lib/libc/include/isc/ |
list.h | 28 #define LINK(type) struct { type *prev, *next; } 31 (elt)->link.prev = (type *)(-1); \ 36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ 47 (list).head->link.prev = (elt); \ 50 (elt)->link.prev = NULL; \ 62 (elt)->link.prev = (list).tail; \ 71 (elt)->link.next->link.prev = (elt)->link.prev; \ 74 (list).tail = (elt)->link.prev; \ 76 if ((elt)->link.prev != NULL) [all...] |