Home
last modified time | relevance | path

Searched refs:argval (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/test/
Dtest_dis.py968 …Instruction(opname='LOAD_CONST', opcode=100, arg=8, argval=(3, 4), argrepr='(3, 4)', offset=0, sta…
969 …Instruction(opname='LOAD_CLOSURE', opcode=135, arg=0, argval='a', argrepr='a', offset=2, starts_li…
970 …Instruction(opname='LOAD_CLOSURE', opcode=135, arg=1, argval='b', argrepr='b', offset=4, starts_li…
971 …Instruction(opname='BUILD_TUPLE', opcode=102, arg=2, argval=2, argrepr='', offset=6, starts_line=N…
972 …Instruction(opname='LOAD_CONST', opcode=100, arg=3, argval=code_object_f, argrepr=repr(code_object…
973 …Instruction(opname='LOAD_CONST', opcode=100, arg=4, argval='outer.<locals>.f', argrepr="'outer.<lo…
974 …Instruction(opname='MAKE_FUNCTION', opcode=132, arg=9, argval=9, argrepr='defaults, closure', offs…
975 …Instruction(opname='STORE_FAST', opcode=125, arg=2, argval='f', argrepr='f', offset=14, starts_lin…
976 …Instruction(opname='LOAD_GLOBAL', opcode=116, arg=0, argval='print', argrepr='print', offset=16, s…
977 …Instruction(opname='LOAD_DEREF', opcode=136, arg=0, argval='a', argrepr='a', offset=18, starts_lin…
[all …]
Dtest_peepholer.py28 tgt = targets[instr.argval]
Dtest_positional_only_arg.py439 codes = [(i.opname, i.argval) for i in dis.get_instructions(g)]
Dtest_compile.py775 self.assertEqual(None, opcodes[-2].argval)
794 self.assertEqual(None, opcodes[0].argval)
Dtest_ast.py1710 consts.append(instr.argval)
/third_party/python/Lib/test/support/
Dbytecode_helper.py17 def assertInBytecode(self, x, opname, argval=_UNSPECIFIED): argument
21 if argval is _UNSPECIFIED or instr.argval == argval:
24 if argval is _UNSPECIFIED:
28 msg = msg % (opname, argval, disassembly)
31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): argument
36 if argval is _UNSPECIFIED:
39 elif instr.argval == argval:
41 msg = msg % (opname, argval, disassembly)
/third_party/python/Lib/
Ddis.py200 _Instruction.argval.__doc__ = "Resolved arg value (if known), otherwise same as arg"
290 argval = const_index
292 argval = const_list[const_index]
293 return argval, repr(argval)
302 argval = name_index
304 argval = name_list[name_index]
305 argrepr = argval
307 argrepr = repr(argval)
308 return argval, argrepr
329 argval = None
[all …]
/third_party/cef/tools/
Dcef_parser.py429 for retval, argval, vfmod, body in list:
449 for v in argval.split(','):
601 for attrib, retval, argval in list:
602 comment = get_comment(data, retval + '(' + argval + ');')
605 obj_function(self, filename, attrib, retval, argval, comment))
851 for attrib, retval, argval in list:
852 comment = get_comment(body, retval + '(' + argval + ')')
855 obj_function_static(self, attrib, retval, argval, comment))
866 for attrib, retval, argval, vfmod in list:
867 comment = get_comment(body, retval + '(' + argval + ')')
[all …]
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/
Dcommands.c117 size_t argval; in size_kmgp() local
120 argval = strtoul(arg, &next, 0); in size_kmgp()
122 return argval; in size_kmgp()
126 argval *= glctx.pagesize; in size_kmgp()
130 argval <<= KILO_SHIFT; in size_kmgp()
134 argval <<= KILO_SHIFT * 2; in size_kmgp()
138 argval <<= KILO_SHIFT * 3; in size_kmgp()
145 return argval; in size_kmgp()
Dmemtoy.c402 int argval; in parse_command_line_args() local
435 argval = strtoul(optarg, &next, 0); in parse_command_line_args()
441 gcp->debug = argval; in parse_command_line_args()
/third_party/libbpf/src/
Dbpf_helper_defs.h1562 static long (*bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops *bpf_sock, int argval) = (void *) 59;
/third_party/python/Doc/library/
Dtest.rst1202 .. method:: BytecodeTestCase.assertInBytecode(x, opname, argval=_UNSPECIFIED)
1207 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)
Ddis.rst294 .. data:: argval