Searched refs:e1 (Results 1 - 8 of 8) sorted by relevance

/u-boot/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) argument
37 e->left.expr = e1;
51 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) argument
53 if (!e1)
55 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1;
58 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) argument
60 if (!e1)
62 return e2 ? expr_alloc_two(E_OR, e1, e
138 #define e1 macro
242 #undef e1 macro
251 expr_eq(struct expr *e1, struct expr *e2) argument
423 expr_join_or(struct expr *e1, struct expr *e2) argument
487 expr_join_and(struct expr *e1, struct expr *e2) argument
590 #define e1 macro
641 #undef e1 macro
916 struct expr *e1, *e2; local
[all...]
H A Dexpr.h296 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/
H A Dwl.c152 struct ubi_wl_entry *e1; local
155 e1 = rb_entry(parent, struct ubi_wl_entry, u.rb);
157 if (e->ec < e1->ec)
159 else if (e->ec > e1->ec)
162 ubi_assert(e->pnum != e1->pnum);
163 if (e->pnum < e1->pnum)
249 struct ubi_wl_entry *e1; local
251 e1 = rb_entry(p, struct ubi_wl_entry, u.rb);
253 if (e->pnum == e1->pnum) {
254 ubi_assert(e == e1);
316 struct ubi_wl_entry *e1; local
680 struct ubi_wl_entry *e1, *e2; local
985 struct ubi_wl_entry *e1; local
[all...]
/u-boot/lib/
H A Dsha512.c95 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) macro
165 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)];
167 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1];
169 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2];
171 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3];
173 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4];
175 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[(i & 15) + 5];
177 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6];
179 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[(i & 15) + 7];
H A Dhashtable.c538 struct env_entry *e1 = *(struct env_entry **)p1; local
541 return (strcmp(e1->key, e2->key));
/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_training_centralization.c9 #define VALIDATE_WIN_LENGTH(e1, e2, maxsize) \
10 (((e2) + 1 > (e1) + (u8)MIN_WINDOW_SIZE) && \
11 ((e2) + 1 < (e1) + (u8)maxsize))
12 #define IS_WINDOW_OUT_BOUNDARY(e1, e2, maxsize) \
13 (((e1) == 0 && (e2) != 0) || \
14 ((e1) != (maxsize - 1) && (e2) == (maxsize - 1)))
H A Dddr3_training_ip_engine.c13 #define VALIDATE_TRAINING_LIMIT(e1, e2) \
14 ((((e2) - (e1) + 1) > 33) && ((e1) < 67))
1212 * each bit, which defined by the search two edges (e1 or VW_L and e2 or VW_H), match on of cases:
1256 u8 e1, e2; local
1337 e1 = GET_TAP_RESULT(result[HWS_LOW2HIGH][0], EDGE_1);
1341 ("if_id %d sybphy_id %d bit %d l2h 0x%x (e1 0x%x) h2l 0x%x (e2 0x%x)\n",
1342 if_id, sybphy_id, bit_id, result[HWS_LOW2HIGH][0], e1,
1352 } else if ((e2 - e1) > 32) { /* oper_write */
1366 if (e1 <
[all...]
/u-boot/tools/buildman/
H A Dkconfiglib.py2864 def _make_and(self, e1, e2):
2867 if e1 is self.y:
2871 return e1
2873 if e1 is self.n or e2 is self.n:
2876 return (AND, e1, e2)
2878 def _make_or(self, e1, e2):
2881 if e1 is self.n:
2885 return e1
2887 if e1 is self.y or e2 is self.y:
2890 return (OR, e1, e
[all...]

Completed in 184 milliseconds