Searched refs:exp (Results 1 - 25 of 31) sorted by last modified time

12

/u-boot/include/
H A Defi_loader.h215 #define EFI_CALL(exp) ({ \
216 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
218 typeof(exp) _r = exp; \
221 (unsigned long)((uintptr_t)_r & ~EFI_ERROR_MASK), #exp); \
228 #define EFI_CALL_VOID(exp) do { \
229 debug("%sEFI: Call: %s\n", __efi_nesting_inc(), #exp); \
231 exp; \
233 debug("%sEFI: Return From: %s\n", __efi_nesting_dec(), #exp); \
H A Dbootflow.h450 * @exp: Expo to update
454 int bootflow_menu_apply_theme(struct expo *exp, ofnode node);
H A Dexpo.h359 * @exp: Expo to destroy
361 void expo_destroy(struct expo *exp);
377 * @exp: Expo to update
380 void expo_set_dynamic_start(struct expo *exp, uint dyn_start);
385 * @exp: Expo to update
391 int expo_str(struct expo *exp, const char *name, uint id, const char *str);
396 * @exp: Expo to use
400 const char *expo_get_str(struct expo *exp, uint id);
405 * @exp: Expo to update
409 int expo_set_display(struct expo *exp, struc
[all...]
H A Dcedit.h30 * @exp: Expo to update
35 int cedit_arange(struct expo *exp, struct video_priv *vid_priv, uint scene_id);
42 * @exp: Expo to use
45 int cedit_run(struct expo *exp);
53 * @exp: Expo to use
58 int cedit_prepare(struct expo *exp, struct video_priv **vid_privp,
66 * @exp: Expo to write settings from
70 int cedit_write_settings(struct expo *exp, struct abuf *buf);
77 * @exp: Expo to read settings into
81 int cedit_read_settings(struct expo *exp, oftre
[all...]
/u-boot/lib/rsa/
H A Drsa-verify.c22 #include <u-boot/rsa-mod-exp.h>
H A Drsa-mod-exp.c20 #include <u-boot/rsa-mod-exp.h>
H A Drsa-keyprop.c15 #include <u-boot/rsa-mod-exp.h>
/u-boot/test/boot/
H A Dbootflow.c824 struct expo *exp; local
830 ut_assertok(bootflow_menu_new(&exp));
833 ut_assertok(bootflow_menu_apply_theme(exp, node));
835 scn = expo_lookup_scene_id(exp, MAIN);
852 expo_destroy(exp);
H A Dexpo.c80 struct expo *exp; local
89 exp = NULL;
91 ut_assertok(expo_new(name, NULL, &exp));
93 ut_assertnonnull(exp);
94 ut_asserteq(0, exp->scene_id);
95 ut_asserteq(0, exp->next_id);
98 ut_assertnonnull(exp->name);
99 ut_asserteq_str(EXPO_NAME, exp->name);
101 ut_assertok(expo_set_display(exp, dev));
102 expo_destroy(exp);
124 struct expo *exp; local
177 struct expo *exp; local
238 struct expo *exp; local
328 struct expo *exp; local
446 struct expo *exp; local
647 struct expo *exp; local
[all...]
H A Dcedit.c24 struct expo *exp; local
41 exp = cur_exp;
42 scn = expo_lookup_scene_id(exp, exp->scene_id);
50 ut_asserteq_str("AC Power", expo_get_str(exp, txt->str_id));
/u-boot/boot/
H A Dbootflow_menu.c40 struct expo *exp; local
48 ret = expo_new("bootflows", priv, &exp);
50 return log_msg_ret("exp", ret);
52 ret = scene_new(exp, "main", MAIN, &scn);
101 ret = expo_str(exp, "prompt", STR_POINTER, ">");
130 *expp = exp;
135 int bootflow_menu_apply_theme(struct expo *exp, ofnode node) argument
137 struct menu_priv *priv = exp->priv;
143 scn = expo_lookup_scene_id(exp, MAIN);
178 struct expo *exp; local
[all...]
H A Dexpo.c20 struct expo *exp; local
22 exp = calloc(1, sizeof(struct expo));
23 if (!exp)
25 exp->name = strdup(name);
26 if (!exp->name) {
27 free(exp);
30 exp->priv = priv;
31 INIT_LIST_HEAD(&exp->scene_head);
32 INIT_LIST_HEAD(&exp->str_head);
34 *expp = exp;
44 expo_destroy(struct expo *exp) argument
59 resolve_id(struct expo *exp, uint id) argument
70 expo_set_dynamic_start(struct expo *exp, uint dyn_start) argument
75 expo_str(struct expo *exp, const char *name, uint id, const char *str) argument
90 expo_get_str(struct expo *exp, uint id) argument
102 expo_set_display(struct expo *exp, struct udevice *dev) argument
118 expo_calc_dims(struct expo *exp) argument
142 expo_set_text_mode(struct expo *exp, bool text_mode) argument
147 expo_lookup_scene_id(struct expo *exp, uint scene_id) argument
159 expo_set_scene_id(struct expo *exp, uint scene_id) argument
176 expo_first_scene_id(struct expo *exp) argument
188 expo_render(struct expo *exp) argument
218 expo_send_key(struct expo *exp, int key) argument
242 expo_action_get(struct expo *exp, struct expo_action *act) argument
250 expo_apply_theme(struct expo *exp, ofnode node) argument
272 expo_iter_scene_objs(struct expo *exp, expo_scene_obj_iterator iter, void *priv) argument
[all...]
H A Dscene_menu.c175 struct expo *exp = scn->expo; local
176 const bool stack = exp->popup;
177 const struct expo_theme *theme = &exp->theme;
471 struct expo *exp = scn->expo; local
484 str = expo_get_str(exp, txt->str_id);
501 kstr = expo_get_str(exp, key->str_id);
505 lstr = expo_get_str(exp, label->str_id);
509 dstr = expo_get_str(exp, desc->str_id);
H A Dscene.c22 int scene_new(struct expo *exp, const char *name, uint id, struct scene **scnp) argument
44 scn->id = resolve_id(exp, id);
45 scn->expo = exp;
46 list_add_tail(&scn->sibling, &exp->scene_head);
297 struct expo *exp = scn->expo; local
302 str = expo_get_str(exp, txt->str_id);
308 if (!exp->cons) {
337 struct expo *exp = obj->scene->expo; local
338 const struct expo_theme *theme = &exp->theme;
340 struct udevice *dev = exp
380 struct expo *exp = scn->expo; local
553 struct expo *exp = scn->expo; local
[all...]
H A Dscene_internal.h19 * @exp: Expo to use
23 struct scene *expo_lookup_scene_id(struct expo *exp, uint scene_id);
28 * @exp: Expo to use
32 uint resolve_id(struct expo *exp, uint id);
248 * @exp: Expo to process
253 int expo_iter_scene_objs(struct expo *exp, expo_scene_obj_iterator iter,
H A Dexpo_build.c389 struct expo *exp)
404 ret = scene_new(exp, name, id, &scn);
431 struct expo *exp; local
442 ret = expo_new("name", NULL, &exp);
444 return log_msg_ret("exp", ret);
447 expo_set_dynamic_start(exp, dyn_start);
454 ret = scene_build(info, node, exp);
458 *expp = exp;
466 struct expo *exp; local
470 ret = build_it(&info, root, &exp);
388 scene_build(struct build_info *info, ofnode scn_node, struct expo *exp) argument
[all...]
H A Dcedit.c53 int cedit_arange(struct expo *exp, struct video_priv *vpriv, uint scene_id) argument
60 scn = expo_lookup_scene_id(exp, scene_id);
96 int cedit_prepare(struct expo *exp, struct video_priv **vid_privp, argument
109 ret = expo_set_display(exp, dev);
113 ret = expo_first_scene_id(exp);
118 ret = expo_set_scene_id(exp, scene_id);
122 exp->popup = true;
126 expo_set_text_mode(exp, true);
130 scn = expo_lookup_scene_id(exp, scene_id);
133 cedit_arange(exp, vid_pri
145 cedit_run(struct expo *exp) argument
359 cedit_write_settings(struct expo *exp, struct abuf *buf) argument
442 cedit_read_settings(struct expo *exp, oftree tree) argument
523 cedit_write_settings_env(struct expo *exp, bool verbose) argument
587 cedit_read_settings_env(struct expo *exp, bool verbose) argument
673 cedit_write_settings_cmos(struct expo *exp, struct udevice *dev, bool verbose) argument
774 cedit_read_settings_cmos(struct expo *exp, struct udevice *dev, bool verbose) argument
[all...]
/u-boot/tools/
H A DMakefile85 rsa-mod-exp.o)
/u-boot/common/
H A Dcli_hush_upstream.c2532 goto exp;
2572 exp:
/u-boot/board/xilinx/zynqmp/
H A Dcmds.c214 u64 srcaddr, mod, exp; local
236 exp = hextoul(argv[5], NULL);
251 (void *)exp, PUB_EXPO_LEN);
255 (void *)exp, PRIV_EXPO_LEN);
411 "zynqmp rsa srcaddr srclen mod exp rsaop -\n"
416 " exp : private key exponent for RSA decryption(4096 bits)\n"
/u-boot/cmd/
H A Dcedit.c37 struct expo *exp; local
59 ret = expo_build(oftree_root(tree), &exp);
66 cur_exp = exp;
/u-boot/board/xilinx/zynq/
H A Dcmds.c17 #include <u-boot/rsa-mod-exp.h>
/u-boot/drivers/net/
H A Dbcm-sf2-eth-gmac.c28 #define SPINWAIT(exp, us) { \
30 while ((exp) && (countdown >= 10)) {\
/u-boot/drivers/crypto/rsa_mod_exp/
H A Dmod_exp_uclass.c12 #include <u-boot/rsa-mod-exp.h>
/u-boot/drivers/net/phy/
H A Dmeson-gxl.c34 int ret, wol, lpa, exp; local
70 exp = phy_read(phydev, MDIO_DEVAD_NONE, MII_EXPANSION);
71 if (exp < 0)
72 return exp;
75 ((exp & EXPANSION_NWAY) && !(lpa & LPA_LPACK))) {

Completed in 153 milliseconds

12