Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/bitbake/lib/ply/
H A Dlex.py51 def func_code(f): function
52 return f.func_code
54 def func_code(f): function
360 func_code(func).co_filename, func_code(func).co_firstlineno,
682 line = func_code(t).co_firstlineno
683 file = func_code(t).co_filename
708 f.sort(key=lambda x: func_code(x[1]).co_firstlineno)
726 line = func_code(f).co_firstlineno
727 file = func_code(f).co_filename
735 nargs = func_code(f).co_argcount
[all …]
H A Dyacc.py91 def func_code(f): function
92 return f.func_code
94 def func_code(f): function
2885 eline = func_code(self.error_func).co_firstlineno
2886 efile = func_code(self.error_func).co_filename
2889 if (func_code(self.error_func).co_argcount != 1+ismethod):
2969 line = func_code(item).co_firstlineno
2970 file = func_code(item).co_filename
2993 if func_code(func).co_argcount > reqargs:
2996 elif func_code(func).co_argcount < reqargs:
[all …]
/openbmc/qemu/target/s390x/kvm/
H A Dkvm.c1568 uint16_t func_code; in handle_diag() local
1574 func_code = decode_basedisp_rs(&cpu->env, ipb, NULL) & DIAG_KVM_CODE_MASK; in handle_diag()
1575 switch (func_code) { in handle_diag()
1594 trace_kvm_insn_diag(func_code); in handle_diag()
/openbmc/qemu/target/s390x/tcg/
H A Dtranslate.c2229 TCGv_i32 func_code = tcg_constant_i32(get_field(s, i2)); in op_diag() local
2231 gen_helper_diag(tcg_env, r1, r3, func_code); in op_diag()