Searched refs:e2 (Results 1 – 10 of 10) sorted by relevance
| /u-boot/scripts/kconfig/ |
| A D | expr.c | 54 return e2; in expr_alloc_and() 55 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 61 return e2; in expr_alloc_or() 62 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 231 if (e1->type != e2->type) switch (e2->type) { in expr_eliminate_eq() 239 e2 = expr_eliminate_yn(e2); in expr_eliminate_eq() 243 #undef e2 272 e2 = expr_copy(e2); in expr_eq() 432 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_or() 496 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_and() [all …]
|
| A D | expr.h | 296 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 298 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 299 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
|
| /u-boot/drivers/mtd/ubi/ |
| A D | wl.c | 722 e2 = get_peb_for_wl(ubi); 723 if (!e2) 740 if (!e2) 745 e1->ec, e2->ec); 755 e1->pnum, e1->ec, e2->pnum, e2->ec); 761 if (!e2) 770 ubi->move_to = e2; 879 e2 = NULL; 887 if (e2) 892 if (e2) { [all …]
|
| /u-boot/board/freescale/common/ |
| A D | sys_eeprom.c | 280 struct eeprom e2; in prog_eeprom() local 285 (void *)&e2, sizeof(e2)); in prog_eeprom() 299 ret = dm_i2c_read(dev, 0, (void *)&e2, sizeof(e2)); in prog_eeprom() 301 if (!ret && memcmp(&e, &e2, sizeof(e))) in prog_eeprom()
|
| /u-boot/board/varisys/common/ |
| A D | sys_eeprom.c | 222 struct eeprom e2; in prog_eeprom() local 225 eeprom_addr_len, (void *)&e2, sizeof(e2)); in prog_eeprom() 226 if (!ret && memcmp(&e, &e2, sizeof(e))) in prog_eeprom()
|
| /u-boot/drivers/ddr/marvell/a38x/ |
| A D | ddr3_training_ip_engine.c | 13 #define VALIDATE_TRAINING_LIMIT(e1, e2) \ argument 14 ((((e2) - (e1) + 1) > 33) && ((e1) < 67)) 1111 u8 e1, e2; in ddr3_tip_ip_training_wrapper() local 1198 result[HWS_HIGH2LOW][0], e2)); in ddr3_tip_ip_training_wrapper() 1221 if (e1 <= 31 && e2 <= 31) { in ddr3_tip_ip_training_wrapper() 1226 h2l_adll_value[sybphy_id][bit_id] = e2; in ddr3_tip_ip_training_wrapper() 1233 if (e1 >= 32 && e2 >= 32) { in ddr3_tip_ip_training_wrapper() 1238 h2l_adll_value[sybphy_id][bit_id] = e2; in ddr3_tip_ip_training_wrapper() 1245 if (e1 <= 31 && e2 >= 32) { in ddr3_tip_ip_training_wrapper() 1251 h2l_adll_value[sybphy_id][bit_id] = e2; in ddr3_tip_ip_training_wrapper() [all …]
|
| A D | ddr3_training_centralization.c | 9 #define VALIDATE_WIN_LENGTH(e1, e2, maxsize) \ argument 10 (((e2) + 1 > (e1) + (u8)MIN_WINDOW_SIZE) && \ 11 ((e2) + 1 < (e1) + (u8)maxsize)) 12 #define IS_WINDOW_OUT_BOUNDARY(e1, e2, maxsize) \ argument 13 (((e1) == 0 && (e2) != 0) || \ 14 ((e1) != (maxsize - 1) && (e2) == (maxsize - 1)))
|
| /u-boot/tools/ |
| A D | k3_gen_x509_cert.sh | 30 e2=INTEGER:1
|
| /u-boot/tools/buildman/ |
| A D | kconfiglib.py | 2128 e = e2 2863 def _make_and(self, e1, e2): argument 2867 return e2 2869 if e2 is self.y: 2872 if e1 is self.n or e2 is self.n: 2875 return (AND, e1, e2) 2877 def _make_or(self, e1, e2): argument 2881 return e2 2883 if e2 is self.n: 2886 if e1 is self.y or e2 is self.y: [all …]
|
| /u-boot/lib/ |
| A D | hashtable.c | 547 struct env_entry *e2 = *(struct env_entry **)p2; in cmpkey() local 549 return (strcmp(e1->key, e2->key)); in cmpkey()
|
Completed in 35 milliseconds