Home
last modified time | relevance | path

Searched defs:a (Results 1 – 14 of 14) sorted by relevance

/scripts/dtc/
Dfdtdump.c16 #define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1)) argument
17 #define PALIGN(p, a) ((void *)(ALIGN((unsigned long)(p), (a)))) argument
Ddtc.h65 #define streq(a, b) (strcmp((a), (b)) == 0) argument
66 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0) argument
68 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
Dlivetree.c576 const struct reserve_info *a, *b; in cmp_reserve_info() local
625 const struct property *a, *b; in cmp_prop() local
661 const struct node *a, *b; in cmp_subnode() local
Dflattree.c78 static void bin_emit_align(void *e, int a) in bin_emit_align()
165 static void asm_emit_align(void *e, int a) in asm_emit_align()
/scripts/kconfig/
Dnconf.h29 #define max(a, b) ({\ argument
34 #define min(a, b) ({\ argument
/scripts/mod/
Dsumversion.c67 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
68 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument
69 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument
90 uint32_t a, b, c, d; in md4_transform() local
Dfile2alias.c50 #define ___cat(a,b) a ## b argument
51 #define __cat(a,b) ___cat(a,b) argument
/scripts/
Dunifdef.c750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt()
753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt()
756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le()
759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge()
762 static Linetype op_eq(int *p, Linetype at, int a, Linetype bt, int b) { in op_eq()
765 static Linetype op_ne(int *p, Linetype at, int a, Linetype bt, int b) { in op_ne()
768 static Linetype op_or(int *p, Linetype at, int a, Linetype bt, int b) { in op_or()
773 static Linetype op_and(int *p, Linetype at, int a, Linetype bt, int b) { in op_and()
Dsortextable.h80 static int compare_extable(const void *a, const void *b) in compare_extable()
Dsortextable.c168 static int compare_relative_table(const void *a, const void *b) in compare_relative_table()
Dkallsyms.c594 static int compare_symbols(const void *a, const void *b) in compare_symbols()
Dasn1_compiler.c683 const struct type *const *a = _a, *const *b = _b; in type_index_compare() local
/scripts/dtc/libfdt/
Dlibfdt_internal.h55 #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
/scripts/genksyms/
Dgenksyms.c406 static int equal_list(struct string_list *a, struct string_list *b) in equal_list()