Home
last modified time | relevance | path

Searched refs:e2 (Results 1 – 9 of 9) sorted by relevance

/rk3399_rockchip-uboot/scripts/kconfig/
H A Dexpr.c14 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
38 e->right.expr = e2; in expr_alloc_two()
51 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument
54 return e2; 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
61 return e2; in expr_alloc_or()
62 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or()
139 #define e2 (*ep2) macro
[all …]
H A Dexpr.h206 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 Dwl.c679 struct ubi_wl_entry *e1, *e2; local
721 e2 = get_peb_for_wl(ubi);
722 if (!e2)
727 dbg_wl("anchor-move PEB %d to PEB %d", e1->pnum, e2->pnum);
738 e2 = get_peb_for_wl(ubi);
739 if (!e2)
742 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
744 e1->ec, e2->ec);
747 wl_tree_add(e2, &ubi->free);
754 e1->pnum, e1->ec, e2->pnum, e2->ec);
[all …]
/rk3399_rockchip-uboot/tools/buildman/
H A Dkconfiglib.py1452 def _eval_min(self, e1, e2): argument
1456 e2_eval = self._eval_expr(e2)
1459 def _eval_max(self, e1, e2): argument
1463 e2_eval = self._eval_expr(e2)
3190 def _make_and(e1, e2): argument
3196 return e2
3197 if e2 is None or e2 == "y":
3203 if isinstance(e2, tuple) and e2[0] == AND:
3204 return (AND, e1[1] + e2[1])
3205 return (AND, e1[1] + [e2])
[all …]
/rk3399_rockchip-uboot/board/varisys/common/
H A Dsys_eeprom.c220 struct eeprom e2; in prog_eeprom() local
223 eeprom_addr_len, (void *)&e2, sizeof(e2)); in prog_eeprom()
224 if (!ret && memcmp(&e, &e2, sizeof(e))) in prog_eeprom()
/rk3399_rockchip-uboot/board/freescale/common/
H A Dsys_eeprom.c234 struct eeprom e2; in prog_eeprom() local
237 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (void *)&e2, sizeof(e2)); in prog_eeprom()
238 if (!ret && memcmp(&e, &e2, sizeof(e))) in prog_eeprom()
/rk3399_rockchip-uboot/drivers/ddr/marvell/a38x/
H A Dddr3_training_centralization.c15 #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 Dddr3_training_ip_engine.c18 #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
1067 e2 = GET_TAP_RESULT(result[HWS_HIGH2LOW][0], in ddr3_tip_ip_training_wrapper()
1074 result[HWS_HIGH2LOW][0], e2)); 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 Dhashtable.c526 ENTRY *e2 = *(ENTRY **) p2; in cmpkey() local
528 return (strcmp(e1->key, e2->key)); in cmpkey()