Home
last modified time | relevance | path

Searched refs:_param (Results 1 – 7 of 7) sorted by relevance

/external/u-boot/include/fsl-mc/
Dfsl_mc_cmd.h80 #define MC_PREP_OP(_ext, _param, _offset, _width, _type, _arg) \ argument
81 ((_ext)[_param] |= cpu_to_le64(mc_enc((_offset), (_width), _arg)))
83 #define MC_EXT_OP(_ext, _param, _offset, _width, _type, _arg) \ argument
84 (_arg = (_type)mc_dec(cpu_to_le64(_ext[_param]), (_offset), (_width)))
86 #define MC_CMD_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument
87 ((_cmd).params[_param] |= mc_enc((_offset), (_width), _arg))
89 #define MC_RSP_OP(_cmd, _param, _offset, _width, _type, _arg) \ argument
90 (_arg = (_type)mc_dec(_cmd.params[_param], (_offset), (_width)))
/external/libxcam/modules/soft/
Dsoft_handler.h40 SmartPtr<ImageHandler::Parameters> _param;
42 explicit SoftArgs (const SmartPtr<ImageHandler::Parameters> &param = NULL) : _param (param) {} in _param() function
44 return _param; in get_param()
47 _param = param; in set_param()
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
Dbasic_asm.h23 #define __STACK_FRAME_PARAM(_param) (32 + ((_param)*8)) argument
/external/clang/test/Sema/
Ddarwin-align-cast.c15 i386/_param.h:#define __DARWIN_ALIGN(p) ((__darwin_size_t)((char *)(p)
/external/python/cpython3/Lib/ctypes/test/
Dtest_as_parameter.py218 self._param = param
221 return self._param
/external/python/cpython2/Lib/ctypes/test/
Dtest_as_parameter.py214 self._param = param
217 return self._param
/external/clang/include/clang/Driver/
DOptions.td2003 def _param : Separate<["--"], "param">, Group<CompileOnly_Group>;
2004 def _param_EQ : Joined<["--"], "param=">, Alias<_param>;