Home
last modified time | relevance | path

Searched refs:orig_args (Results 1 – 4 of 4) sorted by relevance

/external/r8/tools/
Dcreate_dx_replay.py38 def process_line(out_dir, input_counter, orig_args): argument
41 for arg in orig_args:
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-main.c1620 SyscallArgs orig_args; member
1773 getSyscallArgsFromGuestState( &sci->orig_args, &tst->arch.vex, trc ); in VG_()
1777 sci->args = sci->orig_args; in VG_()
1781 sysno = sci->orig_args.sysno; in VG_()
1843 tmpv[0] = sci->orig_args.arg1; in VG_()
1844 tmpv[1] = sci->orig_args.arg2; in VG_()
1845 tmpv[2] = sci->orig_args.arg3; in VG_()
1846 tmpv[3] = sci->orig_args.arg4; in VG_()
1847 tmpv[4] = sci->orig_args.arg5; in VG_()
1848 tmpv[5] = sci->orig_args.arg6; in VG_()
[all …]
/external/python/cpython2/Objects/
Dstringobject.c4252 PyObject *result, *orig_args; in PyString_Format() local
4261 orig_args = args; in PyString_Format()
4698 if (PyTuple_Check(orig_args) && argidx > 0) { in PyString_Format()
4700 Py_ssize_t n = PyTuple_GET_SIZE(orig_args) - argidx; in PyString_Format()
4705 PyObject *w = PyTuple_GET_ITEM(orig_args, n + argidx); in PyString_Format()
4711 Py_INCREF(orig_args); in PyString_Format()
4712 args = orig_args; in PyString_Format()
/external/python/cpython2/Lib/
Durllib2.py461 orig_args = args
472 args = (dict, 'default', 'http_error_default') + orig_args