/freebsd/sys/powerpc/ofw/ |
H A D | ofw_real.c | 102 int nargs, int nreturns, cell_t *args_and_returns); 103 static int ofw_real_interpret(ofw_t ofw, const char *cmd, int nreturns, 406 cell_t nreturns; in ofw_real_test() member 413 args.nreturns = IN(1); in ofw_real_test() 440 cell_t nreturns; in ofw_real_peer() member 447 args.nreturns = IN(1); in ofw_real_peer() 469 cell_t nreturns; in ofw_real_child() member 476 args.nreturns = IN(1); in ofw_real_child() 498 cell_t nreturns; in ofw_real_parent() member 505 args.nreturns = IN(1); in ofw_real_parent() [all …]
|
H A D | rtas.c | 201 rtas_call_method(cell_t token, int nargs, int nreturns, ...) in rtas_call_method() argument 209 cell_t nreturns; in rtas_call_method() member 214 if (!rtas_exists() || nargs + nreturns > 12) in rtas_call_method() 218 va_start(ap, nreturns); in rtas_call_method() 224 args.nreturns = htobe32(nreturns); in rtas_call_method() 251 for (n = nargs; n < nargs + nreturns; n++) in rtas_call_method()
|
H A D | ofw_machdep.c | 692 cell_t nreturns; in ofw_quiesce() member 699 args.nreturns = 0; in ofw_quiesce() 815 cell_t nreturns; in OF_reboot() member 821 args.nreturns = 0; in OF_reboot()
|
/freebsd/stand/libofw/ |
H A D | openfirm.c | 77 a.nreturns = IN( (d) ); 122 cell_t nreturns; in OF_test() member 141 cell_t nreturns; in OF_milliseconds() member 161 cell_t nreturns; in OF_peer() member 180 cell_t nreturns; in OF_child() member 199 cell_t nreturns; in OF_parent() member 218 cell_t nreturns; in OF_instance_to_package() member 237 cell_t nreturns; in OF_getproplen() member 258 cell_t nreturns; in OF_getprop() member 298 cell_t nreturns; in OF_nextprop() member [all …]
|
/freebsd/sys/dev/ofw/ |
H A D | ofw_standard.c | 73 static int ofw_std_interpret(ofw_t ofw, const char *cmd, int nreturns, 95 const char *method, int nargs, int nreturns, cell_t *args_and_returns); 168 cell_t nreturns; in ofw_std_test() member 184 ofw_std_interpret(ofw_t ofw, const char *cmd, int nreturns, cell_t *returns) in ofw_std_interpret() argument 189 cell_t nreturns; in ofw_std_interpret() member 198 args.nreturns = ++nreturns; in ofw_std_interpret() 203 while (i < 1 + nreturns) in ofw_std_interpret() 219 cell_t nreturns; in ofw_std_peer() member 241 cell_t nreturns; in ofw_std_child() member 263 cell_t nreturns; in ofw_std_parent() member [all …]
|
H A D | openfirm.c | 302 OF_interpret(const char *cmd, int nreturns, ...) in OF_interpret() argument 312 status = OFW_INTERPRET(ofw_obj, cmd, nreturns, slots); in OF_interpret() 316 va_start(ap, nreturns); in OF_interpret() 317 while (i < nreturns) in OF_interpret() 727 OF_call_method(const char *method, ihandle_t instance, int nargs, int nreturns, in OF_call_method() argument 736 va_start(ap, nreturns); in OF_call_method() 740 status = OFW_CALL_METHOD(ofw_obj, instance, method, nargs, nreturns, in OF_call_method() 745 for (; n < nargs + nreturns; n++) in OF_call_method()
|
H A D | openfirm.h | 164 int nargs, int nreturns, ...); 175 int OF_interpret(const char *cmd, int nreturns, ...);
|
/freebsd/sys/powerpc/include/ |
H A D | rtas.h | 45 int rtas_call_method(cell_t token, int nargs, int nreturns, ...);
|