Home
last modified time | relevance | path

Searched refs:stem (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/include/linux/
Dpercpu-defs.h303 #define __pcpu_size_call_return(stem, variable) \ argument
308 case 1: pscr_ret__ = stem##1(variable); break; \
309 case 2: pscr_ret__ = stem##2(variable); break; \
310 case 4: pscr_ret__ = stem##4(variable); break; \
311 case 8: pscr_ret__ = stem##8(variable); break; \
318 #define __pcpu_size_call_return2(stem, variable, ...) \ argument
323 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
324 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
325 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
326 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
[all …]
Dof.h337 extern int of_alias_get_id(struct device_node *np, const char *stem);
338 extern int of_alias_get_highest_id(const char *stem);
605 static inline int of_alias_get_id(struct device_node *np, const char *stem) in of_alias_get_id() argument
610 static inline int of_alias_get_highest_id(const char *stem) in of_alias_get_highest_id() argument
/linux-4.1.27/drivers/of/
Dbase.c1876 int id, const char *stem, int stem_len) in of_alias_add() argument
1880 strncpy(ap->stem, stem, stem_len); in of_alias_add()
1881 ap->stem[stem_len] = 0; in of_alias_add()
1884 ap->alias, ap->stem, ap->id, of_node_full_name(np)); in of_alias_add()
1964 int of_alias_get_id(struct device_node *np, const char *stem) in of_alias_get_id() argument
1971 if (strcmp(app->stem, stem) != 0) in of_alias_get_id()
1992 int of_alias_get_highest_id(const char *stem) in of_alias_get_highest_id() argument
1999 if (strcmp(app->stem, stem) != 0) in of_alias_get_highest_id()
Dof_private.h31 char stem[0]; member