Home
last modified time | relevance | path

Searched refs:_cmd (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/include/
H A Dcommand.h185 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ argument
187 { #_name, _maxargs, _rep, _cmd, _usage, \
190 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \ argument
192 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
199 #define _CMD_REMOVE(_name, _cmd) \ argument
203 _cmd(NULL, 0, 0, NULL); \
206 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \ argument
208 { #_name, _maxargs, _rep, 0 ? _cmd : NULL, _usage, \
211 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \ argument
213 _CMD_REMOVE(sub_ ## _name, _cmd)
[all …]
/rk3399_rockchip-uboot/include/fsl-mc/
H A Dfsl_mc_cmd.h77 #define MC_CMD_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument
78 ((_cmd).params[_param] |= mc_enc((_offset), (_width), _arg))
80 #define MC_RSP_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument
81 (_arg = (_type)mc_dec(_cmd.params[_param], (_offset), (_width)))