Searched refs:typemap (Results 1 – 25 of 50) sorted by relevance
12
| /mirbsd/src/gnu/usr.bin/perl/plan9/ |
| D | mkfile | 83 …./miniperl $privlib/ExtUtils/xsubpp -noprototypes -typemap $privlib/ExtUtils/typemap ext/IO/IO.xs … 94 …./miniperl $privlib/ExtUtils/xsubpp -noprototypes -typemap $privlib/ExtUtils/typemap ext/Socket/So… 98 …./miniperl $privlib/ExtUtils/xsubpp -noprototypes -typemap $privlib/ExtUtils/typemap ext/Opcode/Op… 102 …./miniperl $privlib/ExtUtils/xsubpp -noprototypes -typemap $privlib/ExtUtils/typemap ext/Fcntl/Fcn… 106 …./miniperl $privlib/ExtUtils/xsubpp -noprototypes -typemap $privlib/ExtUtils/typemap ext/POSIX/POS… 110 …./miniperl $privlib/ExtUtils/xsubpp -noprototypes -typemap $privlib/ExtUtils/typemap ext/DynaLoade…
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/ |
| D | xsubpp | 9 …types>] [B<-noversioncheck>] [B<-nolinenumbers>] [B<-nooptimize>] [B<-typemap typemap>] ... file.xs 20 The compiler will search for typemap files called I<typemap>. It will use 22 typemap taking precedence. 24 ../../../typemap:../../typemap:../typemap:typemap 221 $typemap = shift @ARGV; 222 foreach $typemap (@tm) { 223 die "Can't find $typemap in $pwd\n" unless -r $typemap; 225 unshift @tm, qw(../../../../lib/ExtUtils/typemap ../../../lib/ExtUtils/typemap 226 ../../lib/ExtUtils/typemap ../../../typemap ../../typemap 227 ../typemap typemap); [all …]
|
| D | MM_Unix.pm | 3509 my $typemap; 3510 foreach $typemap (@{$self->{TYPEMAPS}}){ 3511 if( ! -f $typemap ){ 3512 warn "Typemap $typemap not found.\n"; 3515 push(@tmdeps, $typemap);
|
| D | TODO | 47 Give typemap location its own macro.
|
| D | README | 23 PLEASE NOTE: This distribution does not include the xsubpp or typemap
|
| /mirbsd/src/gnu/usr.bin/perl/ext/XS/Typemap/ |
| D | typemap | 1 # Typemap file for typemap testing 2 # includes bonus typemap entries 5 # typemap
|
| D | Typemap.xs | 62 Each C type is represented by an entry in the typemap file that 154 The T_SYSRET typemap is used to process return values from system calls. 159 and (usually) 0 on success. If the return value is -1 this typemap 160 returns C<undef>. If the return value is not -1, this typemap 218 A signed integer. This typemap converts the Perl value to a native
|
| D | README | 12 Currently not all the typemap entries have corresponding tests.
|
| /mirbsd/src/gnu/usr.bin/perl/utils/ |
| D | h2xs.PL | 1513 my %typemap; 1754 $typemap{float} = 'T_NV'; 1756 foreach my $typemap (@tm) { 1757 next unless -e $typemap ; 1759 warn " Scanning $typemap\n"; 1760 warn("Warning: ignoring non-text typemap file '$typemap'\n"), next 1761 unless -T $typemap ; 1762 open(TYPEMAP, $typemap) 1763 or warn ("Warning: could not open typemap file '$typemap': $!\n"), next; 1776 and not ($image eq 'T_PACKED' and $typemap eq $stdtypemap)) { [all …]
|
| /mirbsd/src/sbin/fsdb/ |
| D | fsdb.c | 607 static struct typemap { struct 620 struct typemap *tp; in CMDFUNCSTART() argument 626 tp < &typenamemap[sizeof(typemap)/sizeof(*typemap)]; in CMDFUNCSTART() 634 if (tp == &typenamemap[sizeof(typemap)/sizeof(*typemap)]) { in CMDFUNCSTART()
|
| /mirbsd/src/usr.bin/vi/build/ |
| D | Makefile | 65 perl.c: ${.CURDIR}/../perl_api/perl.xs ${.CURDIR}/../perl_api/typemap 67 perl /usr/libdata/perl5/ExtUtils/xsubpp -typemap \ 68 /usr/libdata/perl5/ExtUtils/typemap ${.CURDIR}/../perl_api/perl.xs >> ${.TARGET}
|
| /mirbsd/src/gnu/usr.bin/perl/pod/ |
| D | perlxs.pod | 61 and output values to Perl values and back. The default typemap 63 typemap may also be needed to handle any special structures and types 286 easier, the typemap file automatically makes C<RETVAL> mortal when 318 CPAN modules) in the typemap file, the reference count of the C<AV *> 424 typemap. 577 supplied by the typemap. If the initialization 580 case the initialization normally supplied by the typemap is not performed. 582 initialization from the typemap. A global 641 If a variable is declared inside a CODE: section it will follow any typemap 694 The ability to put additional declarations before the typemap entries are [all …]
|
| D | perlxstut.pod | 178 perl xsubpp -typemap typemap Mytest.xs >Mytest.tc && mv Mytest.tc Mytest.c 435 in the typemap file ($PERLLIB/ExtUtils/typemap). This file is split into 466 of the typemap file, you'll see that doubles are of type T_DOUBLE. In the 604 Now we also need to create a typemap file because the default Perl doesn't 605 currently support the const char * type. Create a file called typemap in 1135 This function does not use a typemap. Instead, we declare it as accepting 1227 The real work is done in the standard typemap. 1232 The standard typemap offers three variants of PerlIO *: 1239 The standard typemap does not contain PerlIO * before perl 5.7, 1241 is not backwards compatible unless you provide your own typemap.
|
| /mirbsd/src/gnu/usr.bin/perl/os2/OS2/PrfDB/ |
| D | MANIFEST | 7 typemap
|
| /mirbsd/src/gnu/usr.bin/perl/os2/OS2/ExtAttr/ |
| D | MANIFEST | 8 typemap
|
| /mirbsd/src/sbin/fsck_ffs/ |
| D | main.c | 312 free(typemap); in checkfilesys() 313 typemap = NULL; in checkfilesys()
|
| D | pass2.c | 265 dirp->d_type = typemap[dirp->d_ino]; in pass2check() 476 if (newinofmt && dirp->d_type != typemap[dirp->d_ino]) { in pass2check() 479 dirp->d_type = typemap[dirp->d_ino]; in pass2check()
|
| D | setup.c | 413 typemap = calloc((unsigned)(maxino + 1), sizeof(char)); in setup() 414 if (typemap == NULL) { in setup()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Devel/PPPort/ |
| D | typemap | 3 # typemap -- XS type mappings not present in early perls
|
| D | MANIFEST | 121 typemap
|
| /mirbsd/src/gnu/usr.bin/perl/ext/DB_File/ |
| D | typemap | 1 # typemap for Perl 5 interface to Berkeley
|
| /mirbsd/src/sbin/fsck_ext2fs/ |
| D | fsck.h | 183 u_char *typemap; /* ptr to inode type table */ variable
|
| D | pass2.c | 406 inot2ext2dt(typemap[fs2h32(dirp->e2d_ino)])) { in pass2check() 408 inot2ext2dt(typemap[fs2h32(dirp->e2d_ino)]); in pass2check()
|
| D | setup.c | 215 typemap = calloc((unsigned)(maxino + 1), sizeof(char)); in setup() 216 if (typemap == NULL) { in setup()
|
| /mirbsd/src/gnu/usr.bin/perl/djgpp/ |
| D | config.over | 50 -e 's=xs/typemap=XS/Typemap=' \
|
12