Home
last modified time | relevance | path

Searched refs:cmethod (Results 1 – 25 of 208) sorted by relevance

123456789

/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Dsimd-intrinsics.c1225 ins->klass = cmethod->klass; in simd_intrinsic_emit_unary()
1472 ins->klass = cmethod->klass; in simd_intrinsic_emit_long_getter()
1585 if (cmethod->is_inflated) in simd_intrinsic_emit_cast()
1589 klass = cmethod->klass; in simd_intrinsic_emit_cast()
1620 ins->klass = cmethod->klass; in simd_intrinsic_emit_shift()
1651 ins->klass = cmethod->klass; in simd_intrinsic_emit_equality_op()
1655 ins->klass = cmethod->klass; in simd_intrinsic_emit_equality_op()
1662 ins->klass = cmethod->klass; in simd_intrinsic_emit_equality_op()
1706 ins->klass = cmethod->klass; in simd_intrinsic_emit_shuffle()
1725 ins->klass = cmethod->klass; in simd_intrinsic_emit_load_aligned()
[all …]
H A Dmethod-to-ir.c4074 …if (((cmethod->klass == mono_defaults.object_class) || mono_class_is_interface (cmethod->klass) ||… in handle_constrained_gsharedvt_call()
6499 MonoMethod *cmethod; in initialize_array_data() local
6512 if (!cmethod) in initialize_array_data()
8183 cmethod = NULL; in mono_method_to_ir()
8471 …if (cmethod && cmethod->klass->image == mono_defaults.corlib && !strcmp (cmethod->klass->name, "Th… in mono_method_to_ir()
8818 cmethod = mono_marshal_get_native_wrapper (cmethod, TRUE, FALSE); in mono_method_to_ir()
8889 …if (cmethod == orig || (cmethod->is_inflated && mono_method_get_declaring_generic_method (cmethod)… in mono_method_to_ir()
8890 cmethod = mono_marshal_get_synchronized_inner_wrapper (cmethod); in mono_method_to_ir()
9161 if (cfg->llvm_only && cmethod && method_needs_stack_walk (cfg, cmethod)) { in mono_method_to_ir()
9919cmethod && cmethod->klass != method->klass && mono_class_is_ginst (cmethod->klass) && mono_method_… in mono_method_to_ir()
[all …]
H A Dmini-native-types.c182 emit_intrinsics (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args,… in emit_intrinsics() argument
185 const char *name = cmethod->name; in emit_intrinsics()
325 mono_emit_native_types_intrinsics (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig… in mono_emit_native_types_intrinsics() argument
327 if (mono_class_is_magic_int (cmethod->klass)) { in mono_emit_native_types_intrinsics()
328 const char *class_name = cmethod->klass->name; in mono_emit_native_types_intrinsics()
330 return emit_intrinsics (cfg, cmethod, fsig, args, &type_info [0]); in mono_emit_native_types_intrinsics()
332 return emit_intrinsics (cfg, cmethod, fsig, args, &type_info [1]); in mono_emit_native_types_intrinsics()
333 } else if (mono_class_is_magic_float (cmethod->klass)) in mono_emit_native_types_intrinsics()
334 return emit_intrinsics (cfg, cmethod, fsig, args, &type_info [2]); in mono_emit_native_types_intrinsics()
/dports/biology/p5-BioPerl/BioPerl-1.7.7/bin/
H A Dbp_process_gadfly72 my ($ref,$csource,$cmethod,$start,$stop,$cscore,$strand,$cphase,$cgroup) = split "\t";
75 my $fixed_group = fix_group($csource,$cmethod,$cgroup);
76 print join("\t",$ref,$csource,$cmethod,$start,$stop,$cscore,$strand,$cphase,$fixed_group),"\n";
77 …dump_symbol($ref,$csource,$cmethod,$start,$stop,$cscore,$strand,$cphase,$cgroup) if $cgroup =~ /sy…
95 my ($ref,$csource,$cmethod,$start,$stop,$cscore,$strand,$cphase,$cgroup) = @_;
99 $cmethod = 'symbol';
100 …print join("\t",$ref,$csource,$cmethod,$start,$stop,$cscore,$strand,$cphase,qq(Symbol "$symbol")),…
/dports/lang/guile1/guile-1.8.8/oop/goops/
H A Dcompile.scm48 => (lambda (cmethod)
49 (cons (car code-table) cmethod)))
61 (let ((cmethod (compile-method methods types)))
62 (set-car! place-holder (car cmethod))
63 (set-cdr! place-holder (cdr cmethod)))
97 (let* ((cmethod (compute-cmethod methods types))
98 (method (local-eval (cons 'lambda (cmethod-code cmethod))
99 (cmethod-environment cmethod))))
/dports/lang/guile1/guile-1.8.8/libguile/
H A Dobjects.h168 #define SCM_CMETHOD_CODE(cmethod) SCM_CDR (cmethod) argument
169 #define SCM_CMETHOD_FORMALS(cmethod) SCM_CAR (SCM_CMETHOD_CODE (cmethod)) argument
170 #define SCM_CMETHOD_BODY(cmethod) SCM_CDR (SCM_CMETHOD_CODE (cmethod)) argument
171 #define SCM_CMETHOD_ENV(cmethod) SCM_CAR (cmethod) argument
H A Dobjects.c153 SCM cmethod = scm_mcache_lookup_cmethod (cache, args); in scm_mcache_compute_cmethod() local
154 if (scm_is_false (cmethod)) in scm_mcache_compute_cmethod()
157 return cmethod; in scm_mcache_compute_cmethod()
163 SCM cmethod = scm_mcache_compute_cmethod (SCM_ENTITY_PROCEDURE (gf), args); in scm_apply_generic() local
164 return scm_eval_body (SCM_CDR (SCM_CMETHOD_CODE (cmethod)), in scm_apply_generic()
165 SCM_EXTEND_ENV (SCM_CAR (SCM_CMETHOD_CODE (cmethod)), in scm_apply_generic()
167 SCM_CMETHOD_ENV (cmethod))); in scm_apply_generic()
/dports/net-mgmt/rancid3/rancid-3.13/bin/
H A Dalogin.in21 proc login { router user userpswd passwd prompt cmethod cyphertype } {
28 set progs [llength $cmethod]
29 foreach prog [lrange $cmethod 0 end] {
199 global do_interact do_saveconfig in_proc cmethod
223 if { "$cmethod" == "ssh" } {
339 set cmethod [find method $router]
340 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
354 if {[login $router $ruser $userpswd $passwd $prompt $cmethod $cyphertype]} {
H A Dwlogin.in21 proc login { router user userpswd passwd cmethod cyphertype } {
28 set progs [llength $cmethod]
29 foreach prog [lrange $cmethod 0 end] {
61 if { [llength $cmethod] == 1 } {
456 set cmethod [find method $router]
457 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
471 if {[login $router $ruser $userpswd $passwd $cmethod $cyphertype]} {
H A Dpanlogin.in27 proc login { router user userpswd passwd cmethod cyphertype identfile } {
34 set progs [llength $cmethod]
35 foreach prog [lrange $cmethod 0 end] {
72 if { [llength $cmethod] == 1 } {
427 set cmethod [find method $router]
428 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
442 if {[login $router $ruser $userpswd $passwd $cmethod $cyphertype $identfile ]} {
H A Ddllogin.in32 proc login { router user userpswd passwd enapasswd prompt cmethod cyphertype identfile } {
38 set progs [llength $cmethod]
39 foreach prog [lrange $cmethod 0 end] {
332 set cmethod [find method $router]
333 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
347 … if {[login $router $ruser $userpswd $passwd $enapasswd $prompt $cmethod $cyphertype $identfile]} {
H A Dmtlogin.in20 proc login { router user userpswd passwd prompt cmethod cyphertype identfile } {
27 set progs [llength $cmethod]
28 foreach prog [lrange $cmethod 0 end] {
323 set cmethod [find method $router]
324 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
338 if {[login $router $ruser $userpswd $passwd $prompt $cmethod $cyphertype $identfile]} {
H A Djlogin.in18 proc login { router user passwd cmethod cyphertype identfile} {
25 set progs [llength $cmethod]
26 foreach prog [lrange $cmethod 0 end] {
314 set cmethod [find method $router]
315 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
329 if {[login $router $loginname $passwd $cmethod $cyphertype $identfile]} {
H A Dnslogin.in21 proc login { router user userpswd passwd enapasswd cmethod cyphertype } {
28 set progs [llength $cmethod]
29 foreach prog [lrange $cmethod 0 end] {
362 set cmethod [find method $router]
363 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
373 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype]} {
H A Dnoklogin.in21 proc login { router user userpswd passwd cmethod cyphertype identfile } {
29 set progs [llength $cmethod]
30 foreach prog [lrange $cmethod 0 end] {
63 if { [llength $cmethod] == 1 } {
495 set cmethod [find method $router]
496 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
510 if {[login $router $ruser $userpswd $passwd $cmethod $cyphertype $identfile]} {
H A Davologin.in25 proc login { router user userpswd passwd enapasswd cmethod cyphertype identfile } {
32 set progs [llength $cmethod]
33 foreach prog [lrange $cmethod 0 end] {
471 set cmethod [find method $router]
472 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
486 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype $identfile]} {
H A Da10login.in18 proc login { router user userpswd passwd enapasswd cmethod cyphertype identfile } {
25 set progs [llength $cmethod]
26 foreach prog [lrange $cmethod 0 end] {
474 set cmethod [find method $router]
475 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
489 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype $identfile]} {
H A Dflogin.in28 proc login { router user userpswd passwd enapasswd cmethod cyphertype identfile } {
35 set progs [llength $cmethod]
36 foreach prog [lrange $cmethod 0 end] {
458 set cmethod [find method $router]
459 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
473 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype $identfile ]} {
H A Dmrvlogin.in17 proc login { router user userpswd passwd enapasswd cmethod cyphertype } {
24 set progs [llength $cmethod]
25 foreach prog [lrange $cmethod 0 end] {
460 set cmethod [find method $router]
461 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
475 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype]} {
H A Dbrlogin.in16 proc login { router user userpswd passwd enapasswd cmethod cyphertype } {
23 set progs [llength $cmethod]
24 foreach prog [lrange $cmethod 0 end] {
54 if { [llength $cmethod] == 1 } {
585 set cmethod [find method $router]
586 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
600 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype]} {
H A Dfxlogin.in25 proc login { router user userpswd passwd enapasswd cmethod cyphertype identfile } {
32 set progs [llength $cmethod]
33 foreach prog [lrange $cmethod 0 end] {
66 if { [llength $cmethod] == 1 } {
645 set cmethod [find method $router]
646 if { "$cmethod" == "" } { set cmethod {{telnet} {ssh}} }
660 if {[login $router $ruser $userpswd $passwd $enapasswd $cmethod $cyphertype $identfile]} {
/dports/devel/p5-Mouse/Mouse-v2.5.10/t/001_mouse/
H A D051_throw_error.t20 sub cmethod{
27 Class->new->cmethod();
31 Class->cmethod();
/dports/devel/swig/swig-4.0.2/Examples/test-suite/python/
H A Ddirector_basic_runme.py35 self.cmethod = 7
50 bc = cc.cmethod(b)
51 bd = dd.cmethod(b)
54 if c.cmethod != 7:
/dports/devel/swig/swig-4.0.2/Examples/test-suite/go/
H A Ddirector_basic_runme.go40 cmethod int member
44 p.cmethod = 7
66 if pc.cmethod != 7 {
67 panic(pc.cmethod)
/dports/devel/swig/swig-4.0.2/Examples/test-suite/octave/
H A Ddirector_basic_runme.m46 self.cmethod = 7;
60 bc = cc.cmethod(b);
61 bd = dd.cmethod(b);
64 if (c.cmethod != 7)

123456789