Searched refs:e1 (Results 1 – 9 of 9) sorted by relevance
/u-boot/scripts/kconfig/ |
A D | expr.c | 53 if (!e1) in expr_alloc_and() 55 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 60 if (!e1) in expr_alloc_or() 62 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 238 e1 = expr_eliminate_yn(e1); in expr_eliminate_eq() 242 #undef e1 271 e1 = expr_copy(e1); in expr_eq() 430 if (e1->type != E_EQUAL && e1->type != E_UNEQUAL && e1->type != E_SYMBOL && e1->type != E_NOT) in expr_join_or() 494 if (e1->type != E_EQUAL && e1->type != E_UNEQUAL && e1->type != E_SYMBOL && e1->type != E_NOT) in expr_join_and() 614 expr_eliminate_dups1(e1->type, &e1, &e1); in expr_eliminate_dups1() [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 | 152 struct ubi_wl_entry *e1; in wl_tree_add() local 157 if (e->ec < e1->ec) in wl_tree_add() 254 ubi_assert(e == e1); in in_wl_tree() 258 if (e->ec < e1->ec) in in_wl_tree() 319 if (e1->ec >= max) in find_wl_entry() 324 e = e1; in find_wl_entry() 720 if (!e1) 755 e1->pnum, e1->ec, e2->pnum, e2->ec); 769 ubi->move_from = e1; 807 e1->pnum); [all …]
|
/u-boot/lib/ |
A D | sha512.c | 99 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) macro 169 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform() 171 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform() 173 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform() 175 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform() 177 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4]; in sha512_transform() 179 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[(i & 15) + 5]; in sha512_transform() 181 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6]; in sha512_transform() 183 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[(i & 15) + 7]; in sha512_transform()
|
A D | hashtable.c | 546 struct env_entry *e1 = *(struct env_entry **)p1; in cmpkey() local 549 return (strcmp(e1->key, e2->key)); in cmpkey()
|
/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 1192 e1 = GET_TAP_RESULT(result[HWS_LOW2HIGH][0], EDGE_1); in ddr3_tip_ip_training_wrapper() 1207 } else if ((e2 - e1) > 32) { /* oper_write */ in ddr3_tip_ip_training_wrapper() 1221 if (e1 <= 31 && e2 <= 31) { in ddr3_tip_ip_training_wrapper() 1225 l2h_adll_value[sybphy_id][bit_id] = e1; in ddr3_tip_ip_training_wrapper() 1233 if (e1 >= 32 && e2 >= 32) { in ddr3_tip_ip_training_wrapper() 1237 l2h_adll_value[sybphy_id][bit_id] = e1; in ddr3_tip_ip_training_wrapper() 1245 if (e1 <= 31 && e2 >= 32) { 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 | 29 e1=INTEGER:1
|
/u-boot/tools/buildman/ |
A D | kconfiglib.py | 2863 def _make_and(self, e1, e2): argument 2866 if e1 is self.y: 2870 return e1 2872 if e1 is self.n or e2 is self.n: 2875 return (AND, e1, e2) 2877 def _make_or(self, e1, e2): argument 2880 if e1 is self.n: 2884 return e1 2886 if e1 is self.y or e2 is self.y: 2889 return (OR, e1, e2) [all …]
|
Completed in 678 milliseconds