Searched refs:argval (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_dis.py | 709 …Instruction(opname='LOAD_CONST', opcode=100, arg=8, argval=(3, 4), argrepr='(3, 4)', offset=0, sta… 710 …Instruction(opname='LOAD_CLOSURE', opcode=135, arg=0, argval='a', argrepr='a', offset=2, starts_li… 711 …Instruction(opname='LOAD_CLOSURE', opcode=135, arg=1, argval='b', argrepr='b', offset=4, starts_li… 712 …Instruction(opname='BUILD_TUPLE', opcode=102, arg=2, argval=2, argrepr='', offset=6, starts_line=N… 713 …Instruction(opname='LOAD_CONST', opcode=100, arg=3, argval=code_object_f, argrepr=repr(code_object… 714 …Instruction(opname='LOAD_CONST', opcode=100, arg=4, argval='outer.<locals>.f', argrepr="'outer.<lo… 715 …Instruction(opname='MAKE_FUNCTION', opcode=132, arg=9, argval=9, argrepr='', offset=12, starts_lin… 716 …Instruction(opname='STORE_FAST', opcode=125, arg=2, argval='f', argrepr='f', offset=14, starts_lin… 717 …Instruction(opname='LOAD_GLOBAL', opcode=116, arg=0, argval='print', argrepr='print', offset=16, s… 718 …Instruction(opname='LOAD_DEREF', opcode=136, arg=0, argval='a', argrepr='a', offset=18, starts_lin… [all …]
|
D | bytecode_helper.py | 17 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: 38 elif instr.argval == argval: 40 msg = msg % (opname, argval, disassembly)
|
D | test_ast.py | 1022 consts.append(instr.argval)
|
/external/python/cpython3/Lib/ |
D | dis.py | 172 _Instruction.argval.__doc__ = "Resolved arg value (if known), otherwise same as arg" 258 argval = const_index 260 argval = const_list[const_index] 261 return argval, repr(argval) 270 argval = name_index 272 argval = name_list[name_index] 273 argrepr = argval 275 argrepr = repr(argval) 276 return argval, argrepr 297 argval = None [all …]
|
/external/ltp/testcases/kernel/hotplug/memory_hotplug/ |
D | commands.c | 113 size_t argval; in size_kmgp() local 116 argval = strtoul(arg, &next, 0); in size_kmgp() 118 return argval; in size_kmgp() 122 argval *= glctx.pagesize; in size_kmgp() 126 argval <<= KILO_SHIFT; in size_kmgp() 130 argval <<= KILO_SHIFT * 2; in size_kmgp() 134 argval <<= KILO_SHIFT * 3; in size_kmgp() 141 return argval; in size_kmgp()
|
D | memtoy.c | 405 int argval; in parse_command_line_args() local 438 argval = strtoul(optarg, &next, 0); in parse_command_line_args() 444 gcp->debug = argval; in parse_command_line_args()
|
/external/tensorflow/tensorflow/tools/compatibility/ |
D | tf_upgrade.py | 315 argval = keyword.value 318 argval_lineno, argval_col_offset = self._find_true_position(argval) 337 argval.lineno, 338 argval.col_offset - len(argkey) - 1,
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 255 .. data:: argval
|