Home | History | Annotate | Download | only in tests

Lines Matching refs:nodeoffset

98 void check_property(void *fdt, int nodeoffset, const char *name,
100 #define check_property_cell(fdt, nodeoffset, name, val) \
103 check_property(fdt, nodeoffset, name, sizeof(x), &x); \
107 const void *check_getprop(void *fdt, int nodeoffset, const char *name,
109 #define check_getprop_cell(fdt, nodeoffset, name, val) \
112 check_getprop(fdt, nodeoffset, name, sizeof(x), &x); \
114 #define check_getprop_64(fdt, nodeoffset, name, val) \
117 check_getprop(fdt, nodeoffset, name, sizeof(x), &x); \
119 #define check_getprop_string(fdt, nodeoffset, name, s) \
120 check_getprop((fdt), (nodeoffset), (name), strlen(s)+1, (s))