| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A D | expr.c | 14 static int expr_eq(struct expr *e1, struct expr *e2); 33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument 37 e->left.expr = e1; in expr_alloc_two() 51 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument 53 if (!e1) in expr_alloc_and() 55 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 58 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument 60 if (!e1) in expr_alloc_or() 62 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 138 #define e1 (*ep1) macro [all …]
|
| H A D | expr.h | 206 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 208 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 209 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); 220 struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2);
|
| /rk3399_rockchip-uboot/drivers/mtd/ubi/ |
| H A D | wl.c | 151 struct ubi_wl_entry *e1; in wl_tree_add() local 154 e1 = rb_entry(parent, struct ubi_wl_entry, u.rb); in wl_tree_add() 156 if (e->ec < e1->ec) in wl_tree_add() 158 else if (e->ec > e1->ec) in wl_tree_add() 161 ubi_assert(e->pnum != e1->pnum); in wl_tree_add() 162 if (e->pnum < e1->pnum) in wl_tree_add() 248 struct ubi_wl_entry *e1; in in_wl_tree() local 250 e1 = rb_entry(p, struct ubi_wl_entry, u.rb); in in_wl_tree() 252 if (e->pnum == e1->pnum) { in in_wl_tree() 253 ubi_assert(e == e1); in in_wl_tree() [all …]
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | kconfiglib.py | 1452 def _eval_min(self, e1, e2): argument 1455 e1_eval = self._eval_expr(e1) 1459 def _eval_max(self, e1, e2): argument 1462 e1_eval = self._eval_expr(e1) 3190 def _make_and(e1, e2): argument 3195 if e1 is None or e1 == "y": 3198 return e1 3202 if isinstance(e1, tuple) and e1[0] == AND: 3204 return (AND, e1[1] + e2[1]) 3205 return (AND, e1[1] + [e2]) [all …]
|
| /rk3399_rockchip-uboot/drivers/ddr/marvell/a38x/ |
| H A D | ddr3_training_centralization.c | 15 #define VALIDATE_WIN_LENGTH(e1, e2, maxsize) \ argument 16 (((e2) + 1 > (e1) + (u8)MIN_WINDOW_SIZE) && \ 17 ((e2) + 1 < (e1) + (u8)maxsize)) 18 #define IS_WINDOW_OUT_BOUNDARY(e1, e2, maxsize) \ argument 19 (((e1) == 0 && (e2) != 0) || \ 20 ((e1) != (maxsize - 1) && (e2) == (maxsize - 1)))
|
| H A D | ddr3_training_ip_engine.c | 18 #define VALIDATE_TRAINING_LIMIT(e1, e2) \ argument 19 ((((e2) - (e1) + 1) > 33) && ((e1) < 67)) 1004 u8 e1, e2; in ddr3_tip_ip_training_wrapper() local 1065 e1 = GET_TAP_RESULT(result[HWS_LOW2HIGH][0], in ddr3_tip_ip_training_wrapper() 1073 result[HWS_LOW2HIGH][0], e1, in ddr3_tip_ip_training_wrapper() 1076 if (VALIDATE_TRAINING_LIMIT(e1, e2) == 1 && in ddr3_tip_ip_training_wrapper()
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | hashtable.c | 525 ENTRY *e1 = *(ENTRY **) p1; in cmpkey() local 528 return (strcmp(e1->key, e2->key)); in cmpkey()
|
| /rk3399_rockchip-uboot/arch/arm/dts/ |
| H A D | rk3308-evb.dts | 160 00 00 01 e1
|