Searched refs:rtype (Results 1 - 25 of 107) sorted by relevance

12345

/macosx-10.9.5/cxxfilt-11/cxxfilt/include/elf/
H A Dreloc-macros.h49 static const char *foo (unsigned long rtype);
51 foo (unsigned long rtype)
53 switch (rtype)
72 static const char *name (unsigned long rtype); \
74 name (unsigned long rtype) \
76 switch (rtype) \
/macosx-10.9.5/CPANInternal-140/DBIx-Class/
H A DMakefile.PL87 for my $rtype (keys %$reqs) {
88 for my $mod (keys %{$reqs->{$rtype}} ) {
92 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
95 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
101 my ($rtype, $ver) = @{$final_req{$mod}};
103 $rtype->($mod, $ver);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/x86/
H A Dffi_darwin.c69 if (retval_on_stack(ecif->cif->rtype)) {
140 switch (cif->rtype->type)
150 cif->flags = (unsigned) cif->rtype->type;
160 if (cif->rtype->size == 1)
164 else if (cif->rtype->size == 2)
168 else if (cif->rtype->size == 4)
172 else if (cif->rtype->size == 8)
232 if ((rvalue == NULL) && retval_on_stack(cif->rtype))
235 ecif.rvalue = alloca(cif->rtype->size);
290 if (retval_on_stack(cif->rtype)) {
443 unsigned short rtype; local
[all...]
H A Dffi.c121 switch (cif->rtype->type)
131 cif->flags = (unsigned) cif->rtype->type;
140 if (cif->rtype->size == 1)
144 else if (cif->rtype->size == 2)
148 else if (cif->rtype->size == 4)
152 else if (cif->rtype->size == 8)
210 ecif.rvalue = alloca(cif->rtype->size);
435 (cif->rtype->type == FFI_TYPE_STRUCT))
438 ecif.rvalue = alloca(cif->rtype->size);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/
H A Dprep_cif.c125 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type *rtype,
138 cif->rtype = rtype;
144 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
149 FFI_ASSERT_VALID_TYPE(cif->rtype);
154 if (cif->rtype->type == FFI_TYPE_STRUCT
156 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
160 && (struct_on_stack(cif->rtype->size))
123 ffi_prep_cif( ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes) argument
/macosx-10.9.5/libffi-18.1/
H A Dffi.c135 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type* rtype,
151 cif->rtype = rtype;
156 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
161 FFI_ASSERT_VALID_TYPE(cif->rtype);
166 if (cif->rtype->type == FFI_TYPE_STRUCT
168 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
171 && (struct_on_stack(cif->rtype->size))
131 ffi_prep_cif( ffi_cif* cif, ffi_abi abi, unsigned int nargs, ffi_type* rtype, ffi_type** atypes) argument
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/
H A Dffi.c135 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type* rtype,
151 cif->rtype = rtype;
156 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
161 FFI_ASSERT_VALID_TYPE(cif->rtype);
166 if (cif->rtype->type == FFI_TYPE_STRUCT
168 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
171 && (struct_on_stack(cif->rtype->size))
131 ffi_prep_cif( ffi_cif* cif, ffi_abi abi, unsigned int nargs, ffi_type* rtype, ffi_type** atypes) argument
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/
H A Dffi.c135 /*@dependent@*/ /*@out@*/ /*@partial@*/ ffi_type* rtype,
151 cif->rtype = rtype;
156 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
161 FFI_ASSERT_VALID_TYPE(cif->rtype);
166 if (cif->rtype->type == FFI_TYPE_STRUCT
168 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
171 && (struct_on_stack(cif->rtype->size))
131 ffi_prep_cif( ffi_cif* cif, ffi_abi abi, unsigned int nargs, ffi_type* rtype, ffi_type** atypes) argument
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/tests/
H A Dbasic.test56 if { ! [regexp {^([a-z_ ]+) (\*?)([a-z0-9_]+)\((.*)\)$} $sig all rtype rptr name args]} {
76 set rtype "$rtype $rptr"
78 set rtype [string trim $rtype]
79 if { ! [info exists types($rtype)]} {
80 append msg "no type map for: $rtype" "\n"
86 set retout $types($rtype)
87 set retsize [::ffidl::info sizeof $types($rtype)]
/macosx-10.9.5/JavaScriptCore-7537.78.1/
H A Dcreate_jit_stubs27 my $rtype_template = quotemeta("#rtype#");
47 my $rtype = "";
80 $rtype = quotemeta($1);
82 $stub =~ s/$rtype_template/$rtype/g;
/macosx-10.9.5/libxml2-26/libxml2/
H A Dgentest.py402 def is_known_param_type(name, rtype):
412 if rtype[0:6] == 'const ':
413 crtype = rtype[6:]
415 crtype = rtype
428 """ % (name, crtype, name, name, rtype))
686 rtype = arg.xpathEval("string(@type)")
687 if rtype == 'void':
691 type = type_convert(rtype, nam, info, module, name, n)
692 if is_known_param_type(type, rtype) == 0:
696 rtype[
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dgentest.py402 def is_known_param_type(name, rtype):
412 if rtype[0:6] == 'const ':
413 crtype = rtype[6:]
415 crtype = rtype
428 """ % (name, crtype, name, name, rtype))
686 rtype = arg.xpathEval("string(@type)")
687 if rtype == 'void':
691 type = type_convert(rtype, nam, info, module, name, n)
692 if is_known_param_type(type, rtype) == 0:
696 rtype[
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi_darwin.c77 if (retval_on_stack(ecif->cif->rtype))
145 switch (cif->rtype->type)
155 cif->flags = (unsigned)cif->rtype->type;
164 switch (cif->rtype->size)
244 if ((rvalue == NULL) && retval_on_stack(cif->rtype))
247 ecif.rvalue = alloca(cif->rtype->size);
307 if (retval_on_stack(cif->rtype))
351 /* now, do a generic return based on the value of rtype */
434 unsigned short rtype = cif->flags; local
439 /* now, do a generic return based on the value of rtype */
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf32-i860.c749 lookup_howto (unsigned int rtype)
765 BFD_ASSERT (rtype <= R_860_max);
766 i = elf_code_to_howto_index[rtype];
777 unsigned int rtype;
782 rtype = R_860_NONE;
785 rtype = R_860_32;
788 rtype = R_860_COPY;
791 rtype = R_860_GLOB_DAT;
794 rtype = R_860_JUMP_SLOT;
797 rtype
748 lookup_howto(unsigned int rtype) argument
776 unsigned int rtype; local
[all...]
/macosx-10.9.5/libffi-18.1/x86/
H A Dx86-ffi_darwin.c118 switch (cif->rtype->type)
133 cif->flags = (unsigned) cif->rtype->type;
142 if (cif->rtype->size == 1)
146 else if (cif->rtype->size == 2)
150 else if (cif->rtype->size == 4)
154 else if (cif->rtype->size == 8)
199 ecif.rvalue = alloca(cif->rtype->size);
409 (cif->rtype->type == FFI_TYPE_STRUCT))
411 ecif.rvalue = alloca(cif->rtype->size);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi_darwin.c118 switch (cif->rtype->type)
133 cif->flags = (unsigned) cif->rtype->type;
142 if (cif->rtype->size == 1)
146 else if (cif->rtype->size == 2)
150 else if (cif->rtype->size == 4)
154 else if (cif->rtype->size == 8)
199 ecif.rvalue = alloca(cif->rtype->size);
409 (cif->rtype->type == FFI_TYPE_STRUCT))
411 ecif.rvalue = alloca(cif->rtype->size);
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/
H A Dpoint.tcl95 set rtype [expr {(($atag eq "point") || ($btag eq "point"))
99 return [$rtype {*}$result]
114 set rtype [expr {(($atag eq "point") || ($btag eq "point"))
118 return [$rtype {*}$result]
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/tools/
H A DgenStubs.tcl274 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
278 set rtype [string trim $rtype]
307 return [list $rtype $fname $args]
349 lassign $decl rtype fname args
352 set line "EXTERN $rtype"
409 lassign $decl rtype fname args
450 lassign $decl rtype fname args
455 append text "/* Slot $index */\n" $rtype "\n" $fname
463 if {[string compare $rtype "voi
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/tools/
H A DgenStubs.tcl274 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
278 set rtype [string trim $rtype]
307 return [list $rtype $fname $args]
349 lassign $decl rtype fname args
352 set line "EXTERN $rtype"
409 lassign $decl rtype fname args
450 lassign $decl rtype fname args
455 append text "/* Slot $index */\n" $rtype "\n" $fname
463 if {[string compare $rtype "voi
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/tools/
H A DgenStubs.tcl274 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
278 set rtype [string trim $rtype]
307 return [list $rtype $fname $args]
349 lassign $decl rtype fname args
352 set line "EXTERN $rtype"
409 lassign $decl rtype fname args
450 lassign $decl rtype fname args
455 append text "/* Slot $index */\n" $rtype "\n" $fname
463 if {[string compare $rtype "voi
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/tools/
H A DgenStubs.tcl274 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
278 set rtype [string trim $rtype]
307 return [list $rtype $fname $args]
349 lassign $decl rtype fname args
352 set line "EXTERN $rtype"
409 lassign $decl rtype fname args
450 lassign $decl rtype fname args
455 append text "/* Slot $index */\n" $rtype "\n" $fname
463 if {[string compare $rtype "voi
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/tools/
H A DgenStubs.tcl274 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
278 set rtype [string trim $rtype]
307 return [list $rtype $fname $args]
349 lassign $decl rtype fname args
352 set line "EXTERN $rtype"
409 lassign $decl rtype fname args
450 lassign $decl rtype fname args
455 append text "/* Slot $index */\n" $rtype "\n" $fname
463 if {[string compare $rtype "voi
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl84 if { ! [regexp {^([a-z_]+) ([a-z0-9_]+)\((.*)\)$} $proto all rtype name args]} {
97 set rtype [string trim $rtype]
98 set retout $types($rtype)
/macosx-10.9.5/swig-10/Source/Swig/
H A Dfragment.c40 SwigType *rtype = SwigType_typedef_resolve_all(type); local
44 Delete(rtype);
155 SwigType *rtype = SwigType_typedef_resolve_all(type); local
156 if (!Equal(type, rtype)) {
166 Delete(rtype);
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A DgenStubs.tcl331 if {![regexp {^(.+[ ][*]*)([^ *]+)$} $prefix all rtype fname]} {
335 set rtype [string trim $rtype]
337 return [list $rtype $fname {}]
368 return [list $rtype $fname $args]
410 lassign $decl rtype fname args
413 set line "EXTERN $rtype"
495 lassign $decl rtype fname args
524 lassign $decl rtype fname args
529 append text "/* Slot $index */\n" $rtype "\
[all...]

Completed in 385 milliseconds

12345