/src/ppport.h

http://github.com/PerlGameDev/SDL · C Header · 7142 lines · 3122 code · 586 blank · 3434 comment · 447 complexity · 05306bce4ac57b2115976f9b202c3229 MD5 · raw file

Large files are truncated click here to view the full file

  1. #if 0
  2. <<'SKIP';
  3. #endif
  4. /*
  5. ----------------------------------------------------------------------
  6. ppport.h -- Perl/Pollution/Portability Version 3.19_02
  7. Automatically created by Devel::PPPort running under perl 5.012002.
  8. Do NOT edit this file directly! -- Edit PPPort_pm.PL and the
  9. includes in parts/inc/ instead.
  10. Use 'perldoc ppport.h' to view the documentation below.
  11. ----------------------------------------------------------------------
  12. SKIP
  13. =pod
  14. =head1 NAME
  15. ppport.h - Perl/Pollution/Portability version 3.19_02
  16. =head1 SYNOPSIS
  17. perl ppport.h [options] [source files]
  18. Searches current directory for files if no [source files] are given
  19. --help show short help
  20. --version show version
  21. --patch=file write one patch file with changes
  22. --copy=suffix write changed copies with suffix
  23. --diff=program use diff program and options
  24. --compat-version=version provide compatibility with Perl version
  25. --cplusplus accept C++ comments
  26. --quiet don't output anything except fatal errors
  27. --nodiag don't show diagnostics
  28. --nohints don't show hints
  29. --nochanges don't suggest changes
  30. --nofilter don't filter input files
  31. --strip strip all script and doc functionality from
  32. ppport.h
  33. --list-provided list provided API
  34. --list-unsupported list unsupported API
  35. --api-info=name show Perl API portability information
  36. =head1 COMPATIBILITY
  37. This version of F<ppport.h> is designed to support operation with Perl
  38. installations back to 5.003, and has been tested up to 5.11.5.
  39. =head1 OPTIONS
  40. =head2 --help
  41. Display a brief usage summary.
  42. =head2 --version
  43. Display the version of F<ppport.h>.
  44. =head2 --patch=I<file>
  45. If this option is given, a single patch file will be created if
  46. any changes are suggested. This requires a working diff program
  47. to be installed on your system.
  48. =head2 --copy=I<suffix>
  49. If this option is given, a copy of each file will be saved with
  50. the given suffix that contains the suggested changes. This does
  51. not require any external programs. Note that this does not
  52. automagially add a dot between the original filename and the
  53. suffix. If you want the dot, you have to include it in the option
  54. argument.
  55. If neither C<--patch> or C<--copy> are given, the default is to
  56. simply print the diffs for each file. This requires either
  57. C<Text::Diff> or a C<diff> program to be installed.
  58. =head2 --diff=I<program>
  59. Manually set the diff program and options to use. The default
  60. is to use C<Text::Diff>, when installed, and output unified
  61. context diffs.
  62. =head2 --compat-version=I<version>
  63. Tell F<ppport.h> to check for compatibility with the given
  64. Perl version. The default is to check for compatibility with Perl
  65. version 5.003. You can use this option to reduce the output
  66. of F<ppport.h> if you intend to be backward compatible only
  67. down to a certain Perl version.
  68. =head2 --cplusplus
  69. Usually, F<ppport.h> will detect C++ style comments and
  70. replace them with C style comments for portability reasons.
  71. Using this option instructs F<ppport.h> to leave C++
  72. comments untouched.
  73. =head2 --quiet
  74. Be quiet. Don't print anything except fatal errors.
  75. =head2 --nodiag
  76. Don't output any diagnostic messages. Only portability
  77. alerts will be printed.
  78. =head2 --nohints
  79. Don't output any hints. Hints often contain useful portability
  80. notes. Warnings will still be displayed.
  81. =head2 --nochanges
  82. Don't suggest any changes. Only give diagnostic output and hints
  83. unless these are also deactivated.
  84. =head2 --nofilter
  85. Don't filter the list of input files. By default, files not looking
  86. like source code (i.e. not *.xs, *.c, *.cc, *.cpp or *.h) are skipped.
  87. =head2 --strip
  88. Strip all script and documentation functionality from F<ppport.h>.
  89. This reduces the size of F<ppport.h> dramatically and may be useful
  90. if you want to include F<ppport.h> in smaller modules without
  91. increasing their distribution size too much.
  92. The stripped F<ppport.h> will have a C<--unstrip> option that allows
  93. you to undo the stripping, but only if an appropriate C<Devel::PPPort>
  94. module is installed.
  95. =head2 --list-provided
  96. Lists the API elements for which compatibility is provided by
  97. F<ppport.h>. Also lists if it must be explicitly requested,
  98. if it has dependencies, and if there are hints or warnings for it.
  99. =head2 --list-unsupported
  100. Lists the API elements that are known not to be supported by
  101. F<ppport.h> and below which version of Perl they probably
  102. won't be available or work.
  103. =head2 --api-info=I<name>
  104. Show portability information for API elements matching I<name>.
  105. If I<name> is surrounded by slashes, it is interpreted as a regular
  106. expression.
  107. =head1 DESCRIPTION
  108. In order for a Perl extension (XS) module to be as portable as possible
  109. across differing versions of Perl itself, certain steps need to be taken.
  110. =over 4
  111. =item *
  112. Including this header is the first major one. This alone will give you
  113. access to a large part of the Perl API that hasn't been available in
  114. earlier Perl releases. Use
  115. perl ppport.h --list-provided
  116. to see which API elements are provided by ppport.h.
  117. =item *
  118. You should avoid using deprecated parts of the API. For example, using
  119. global Perl variables without the C<PL_> prefix is deprecated. Also,
  120. some API functions used to have a C<perl_> prefix. Using this form is
  121. also deprecated. You can safely use the supported API, as F<ppport.h>
  122. will provide wrappers for older Perl versions.
  123. =item *
  124. If you use one of a few functions or variables that were not present in
  125. earlier versions of Perl, and that can't be provided using a macro, you
  126. have to explicitly request support for these functions by adding one or
  127. more C<#define>s in your source code before the inclusion of F<ppport.h>.
  128. These functions or variables will be marked C<explicit> in the list shown
  129. by C<--list-provided>.
  130. Depending on whether you module has a single or multiple files that
  131. use such functions or variables, you want either C<static> or global
  132. variants.
  133. For a C<static> function or variable (used only in a single source
  134. file), use:
  135. #define NEED_function
  136. #define NEED_variable
  137. For a global function or variable (used in multiple source files),
  138. use:
  139. #define NEED_function_GLOBAL
  140. #define NEED_variable_GLOBAL
  141. Note that you mustn't have more than one global request for the
  142. same function or variable in your project.
  143. Function / Variable Static Request Global Request
  144. -----------------------------------------------------------------------------------------
  145. PL_parser NEED_PL_parser NEED_PL_parser_GLOBAL
  146. PL_signals NEED_PL_signals NEED_PL_signals_GLOBAL
  147. eval_pv() NEED_eval_pv NEED_eval_pv_GLOBAL
  148. grok_bin() NEED_grok_bin NEED_grok_bin_GLOBAL
  149. grok_hex() NEED_grok_hex NEED_grok_hex_GLOBAL
  150. grok_number() NEED_grok_number NEED_grok_number_GLOBAL
  151. grok_numeric_radix() NEED_grok_numeric_radix NEED_grok_numeric_radix_GLOBAL
  152. grok_oct() NEED_grok_oct NEED_grok_oct_GLOBAL
  153. load_module() NEED_load_module NEED_load_module_GLOBAL
  154. my_snprintf() NEED_my_snprintf NEED_my_snprintf_GLOBAL
  155. my_sprintf() NEED_my_sprintf NEED_my_sprintf_GLOBAL
  156. my_strlcat() NEED_my_strlcat NEED_my_strlcat_GLOBAL
  157. my_strlcpy() NEED_my_strlcpy NEED_my_strlcpy_GLOBAL
  158. newCONSTSUB() NEED_newCONSTSUB NEED_newCONSTSUB_GLOBAL
  159. newRV_noinc() NEED_newRV_noinc NEED_newRV_noinc_GLOBAL
  160. newSV_type() NEED_newSV_type NEED_newSV_type_GLOBAL
  161. newSVpvn_flags() NEED_newSVpvn_flags NEED_newSVpvn_flags_GLOBAL
  162. newSVpvn_share() NEED_newSVpvn_share NEED_newSVpvn_share_GLOBAL
  163. pv_display() NEED_pv_display NEED_pv_display_GLOBAL
  164. pv_escape() NEED_pv_escape NEED_pv_escape_GLOBAL
  165. pv_pretty() NEED_pv_pretty NEED_pv_pretty_GLOBAL
  166. sv_2pv_flags() NEED_sv_2pv_flags NEED_sv_2pv_flags_GLOBAL
  167. sv_2pvbyte() NEED_sv_2pvbyte NEED_sv_2pvbyte_GLOBAL
  168. sv_catpvf_mg() NEED_sv_catpvf_mg NEED_sv_catpvf_mg_GLOBAL
  169. sv_catpvf_mg_nocontext() NEED_sv_catpvf_mg_nocontext NEED_sv_catpvf_mg_nocontext_GLOBAL
  170. sv_pvn_force_flags() NEED_sv_pvn_force_flags NEED_sv_pvn_force_flags_GLOBAL
  171. sv_setpvf_mg() NEED_sv_setpvf_mg NEED_sv_setpvf_mg_GLOBAL
  172. sv_setpvf_mg_nocontext() NEED_sv_setpvf_mg_nocontext NEED_sv_setpvf_mg_nocontext_GLOBAL
  173. vload_module() NEED_vload_module NEED_vload_module_GLOBAL
  174. vnewSVpvf() NEED_vnewSVpvf NEED_vnewSVpvf_GLOBAL
  175. warner() NEED_warner NEED_warner_GLOBAL
  176. To avoid namespace conflicts, you can change the namespace of the
  177. explicitly exported functions / variables using the C<DPPP_NAMESPACE>
  178. macro. Just C<#define> the macro before including C<ppport.h>:
  179. #define DPPP_NAMESPACE MyOwnNamespace_
  180. #include "ppport.h"
  181. The default namespace is C<DPPP_>.
  182. =back
  183. The good thing is that most of the above can be checked by running
  184. F<ppport.h> on your source code. See the next section for
  185. details.
  186. =head1 EXAMPLES
  187. To verify whether F<ppport.h> is needed for your module, whether you
  188. should make any changes to your code, and whether any special defines
  189. should be used, F<ppport.h> can be run as a Perl script to check your
  190. source code. Simply say:
  191. perl ppport.h
  192. The result will usually be a list of patches suggesting changes
  193. that should at least be acceptable, if not necessarily the most
  194. efficient solution, or a fix for all possible problems.
  195. If you know that your XS module uses features only available in
  196. newer Perl releases, if you're aware that it uses C++ comments,
  197. and if you want all suggestions as a single patch file, you could
  198. use something like this:
  199. perl ppport.h --compat-version=5.6.0 --cplusplus --patch=test.diff
  200. If you only want your code to be scanned without any suggestions
  201. for changes, use:
  202. perl ppport.h --nochanges
  203. You can specify a different C<diff> program or options, using
  204. the C<--diff> option:
  205. perl ppport.h --diff='diff -C 10'
  206. This would output context diffs with 10 lines of context.
  207. If you want to create patched copies of your files instead, use:
  208. perl ppport.h --copy=.new
  209. To display portability information for the C<newSVpvn> function,
  210. use:
  211. perl ppport.h --api-info=newSVpvn
  212. Since the argument to C<--api-info> can be a regular expression,
  213. you can use
  214. perl ppport.h --api-info=/_nomg$/
  215. to display portability information for all C<_nomg> functions or
  216. perl ppport.h --api-info=/./
  217. to display information for all known API elements.
  218. =head1 BUGS
  219. If this version of F<ppport.h> is causing failure during
  220. the compilation of this module, please check if newer versions
  221. of either this module or C<Devel::PPPort> are available on CPAN
  222. before sending a bug report.
  223. If F<ppport.h> was generated using the latest version of
  224. C<Devel::PPPort> and is causing failure of this module, please
  225. file a bug report using the CPAN Request Tracker at L<http://rt.cpan.org/>.
  226. Please include the following information:
  227. =over 4
  228. =item 1.
  229. The complete output from running "perl -V"
  230. =item 2.
  231. This file.
  232. =item 3.
  233. The name and version of the module you were trying to build.
  234. =item 4.
  235. A full log of the build that failed.
  236. =item 5.
  237. Any other information that you think could be relevant.
  238. =back
  239. For the latest version of this code, please get the C<Devel::PPPort>
  240. module from CPAN.
  241. =head1 COPYRIGHT
  242. Version 3.x, Copyright (c) 2004-2010, Marcus Holland-Moritz.
  243. Version 2.x, Copyright (C) 2001, Paul Marquess.
  244. Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
  245. This program is free software; you can redistribute it and/or
  246. modify it under the same terms as Perl itself.
  247. =head1 SEE ALSO
  248. See L<Devel::PPPort>.
  249. =cut
  250. use strict;
  251. # Disable broken TRIE-optimization
  252. BEGIN { eval '${^RE_TRIE_MAXBUF} = -1' if $] >= 5.009004 && $] <= 5.009005 }
  253. my $VERSION = 3.19_02;
  254. my %opt = (
  255. quiet => 0,
  256. diag => 1,
  257. hints => 1,
  258. changes => 1,
  259. cplusplus => 0,
  260. filter => 1,
  261. strip => 0,
  262. version => 0,
  263. );
  264. my($ppport) = $0 =~ /([\w.]+)$/;
  265. my $LF = '(?:\r\n|[\r\n])'; # line feed
  266. my $HS = "[ \t]"; # horizontal whitespace
  267. # Never use C comments in this file!
  268. my $ccs = '/'.'*';
  269. my $cce = '*'.'/';
  270. my $rccs = quotemeta $ccs;
  271. my $rcce = quotemeta $cce;
  272. eval {
  273. require Getopt::Long;
  274. Getopt::Long::GetOptions(\%opt, qw(
  275. help quiet diag! filter! hints! changes! cplusplus strip version
  276. patch=s copy=s diff=s compat-version=s
  277. list-provided list-unsupported api-info=s
  278. )) or usage();
  279. };
  280. if ($@ and grep /^-/, @ARGV) {
  281. usage() if "@ARGV" =~ /^--?h(?:elp)?$/;
  282. die "Getopt::Long not found. Please don't use any options.\n";
  283. }
  284. if ($opt{version}) {
  285. print "This is $0 $VERSION.\n";
  286. exit 0;
  287. }
  288. usage() if $opt{help};
  289. strip() if $opt{strip};
  290. if (exists $opt{'compat-version'}) {
  291. my($r,$v,$s) = eval { parse_version($opt{'compat-version'}) };
  292. if ($@) {
  293. die "Invalid version number format: '$opt{'compat-version'}'\n";
  294. }
  295. die "Only Perl 5 is supported\n" if $r != 5;
  296. die "Invalid version number: $opt{'compat-version'}\n" if $v >= 1000 || $s >= 1000;
  297. $opt{'compat-version'} = sprintf "%d.%03d%03d", $r, $v, $s;
  298. }
  299. else {
  300. $opt{'compat-version'} = 5;
  301. }
  302. my %API = map { /^(\w+)\|([^|]*)\|([^|]*)\|(\w*)$/
  303. ? ( $1 => {
  304. ($2 ? ( base => $2 ) : ()),
  305. ($3 ? ( todo => $3 ) : ()),
  306. (index($4, 'v') >= 0 ? ( varargs => 1 ) : ()),
  307. (index($4, 'p') >= 0 ? ( provided => 1 ) : ()),
  308. (index($4, 'n') >= 0 ? ( nothxarg => 1 ) : ()),
  309. } )
  310. : die "invalid spec: $_" } qw(
  311. AvFILLp|5.004050||p
  312. AvFILL|||
  313. CLASS|||n
  314. CPERLscope|5.005000||p
  315. CX_CURPAD_SAVE|||
  316. CX_CURPAD_SV|||
  317. CopFILEAV|5.006000||p
  318. CopFILEGV_set|5.006000||p
  319. CopFILEGV|5.006000||p
  320. CopFILESV|5.006000||p
  321. CopFILE_set|5.006000||p
  322. CopFILE|5.006000||p
  323. CopSTASHPV_set|5.006000||p
  324. CopSTASHPV|5.006000||p
  325. CopSTASH_eq|5.006000||p
  326. CopSTASH_set|5.006000||p
  327. CopSTASH|5.006000||p
  328. CopyD|5.009002||p
  329. Copy|||
  330. CvPADLIST|||
  331. CvSTASH|||
  332. CvWEAKOUTSIDE|||
  333. DEFSV_set|5.010001||p
  334. DEFSV|5.004050||p
  335. END_EXTERN_C|5.005000||p
  336. ENTER|||
  337. ERRSV|5.004050||p
  338. EXTEND|||
  339. EXTERN_C|5.005000||p
  340. F0convert|||n
  341. FREETMPS|||
  342. GIMME_V||5.004000|n
  343. GIMME|||n
  344. GROK_NUMERIC_RADIX|5.007002||p
  345. G_ARRAY|||
  346. G_DISCARD|||
  347. G_EVAL|||
  348. G_METHOD|5.006001||p
  349. G_NOARGS|||
  350. G_SCALAR|||
  351. G_VOID||5.004000|
  352. GetVars|||
  353. GvSVn|5.009003||p
  354. GvSV|||
  355. Gv_AMupdate||5.011000|
  356. HEf_SVKEY||5.004000|
  357. HeHASH||5.004000|
  358. HeKEY||5.004000|
  359. HeKLEN||5.004000|
  360. HePV||5.004000|
  361. HeSVKEY_force||5.004000|
  362. HeSVKEY_set||5.004000|
  363. HeSVKEY||5.004000|
  364. HeUTF8||5.010001|
  365. HeVAL||5.004000|
  366. HvNAMELEN_get|5.009003||p
  367. HvNAME_get|5.009003||p
  368. HvNAME|||
  369. INT2PTR|5.006000||p
  370. IN_LOCALE_COMPILETIME|5.007002||p
  371. IN_LOCALE_RUNTIME|5.007002||p
  372. IN_LOCALE|5.007002||p
  373. IN_PERL_COMPILETIME|5.008001||p
  374. IS_NUMBER_GREATER_THAN_UV_MAX|5.007002||p
  375. IS_NUMBER_INFINITY|5.007002||p
  376. IS_NUMBER_IN_UV|5.007002||p
  377. IS_NUMBER_NAN|5.007003||p
  378. IS_NUMBER_NEG|5.007002||p
  379. IS_NUMBER_NOT_INT|5.007002||p
  380. IVSIZE|5.006000||p
  381. IVTYPE|5.006000||p
  382. IVdf|5.006000||p
  383. LEAVE|||
  384. LVRET|||
  385. MARK|||
  386. MULTICALL||5.011005|
  387. MY_CXT_CLONE|5.009002||p
  388. MY_CXT_INIT|5.007003||p
  389. MY_CXT|5.007003||p
  390. MoveD|5.009002||p
  391. Move|||
  392. NOOP|5.005000||p
  393. NUM2PTR|5.006000||p
  394. NVTYPE|5.006000||p
  395. NVef|5.006001||p
  396. NVff|5.006001||p
  397. NVgf|5.006001||p
  398. Newxc|5.009003||p
  399. Newxz|5.009003||p
  400. Newx|5.009003||p
  401. Nullav|||
  402. Nullch|||
  403. Nullcv|||
  404. Nullhv|||
  405. Nullsv|||
  406. ORIGMARK|||
  407. PAD_BASE_SV|||
  408. PAD_CLONE_VARS|||
  409. PAD_COMPNAME_FLAGS|||
  410. PAD_COMPNAME_GEN_set|||
  411. PAD_COMPNAME_GEN|||
  412. PAD_COMPNAME_OURSTASH|||
  413. PAD_COMPNAME_PV|||
  414. PAD_COMPNAME_TYPE|||
  415. PAD_DUP|||
  416. PAD_RESTORE_LOCAL|||
  417. PAD_SAVE_LOCAL|||
  418. PAD_SAVE_SETNULLPAD|||
  419. PAD_SETSV|||
  420. PAD_SET_CUR_NOSAVE|||
  421. PAD_SET_CUR|||
  422. PAD_SVl|||
  423. PAD_SV|||
  424. PERLIO_FUNCS_CAST|5.009003||p
  425. PERLIO_FUNCS_DECL|5.009003||p
  426. PERL_ABS|5.008001||p
  427. PERL_BCDVERSION|5.011004||p
  428. PERL_GCC_BRACE_GROUPS_FORBIDDEN|5.008001||p
  429. PERL_HASH|5.004000||p
  430. PERL_INT_MAX|5.004000||p
  431. PERL_INT_MIN|5.004000||p
  432. PERL_LONG_MAX|5.004000||p
  433. PERL_LONG_MIN|5.004000||p
  434. PERL_MAGIC_arylen|5.007002||p
  435. PERL_MAGIC_backref|5.007002||p
  436. PERL_MAGIC_bm|5.007002||p
  437. PERL_MAGIC_collxfrm|5.007002||p
  438. PERL_MAGIC_dbfile|5.007002||p
  439. PERL_MAGIC_dbline|5.007002||p
  440. PERL_MAGIC_defelem|5.007002||p
  441. PERL_MAGIC_envelem|5.007002||p
  442. PERL_MAGIC_env|5.007002||p
  443. PERL_MAGIC_ext|5.007002||p
  444. PERL_MAGIC_fm|5.007002||p
  445. PERL_MAGIC_glob|5.011004||p
  446. PERL_MAGIC_isaelem|5.007002||p
  447. PERL_MAGIC_isa|5.007002||p
  448. PERL_MAGIC_mutex|5.011004||p
  449. PERL_MAGIC_nkeys|5.007002||p
  450. PERL_MAGIC_overload_elem|5.007002||p
  451. PERL_MAGIC_overload_table|5.007002||p
  452. PERL_MAGIC_overload|5.007002||p
  453. PERL_MAGIC_pos|5.007002||p
  454. PERL_MAGIC_qr|5.007002||p
  455. PERL_MAGIC_regdata|5.007002||p
  456. PERL_MAGIC_regdatum|5.007002||p
  457. PERL_MAGIC_regex_global|5.007002||p
  458. PERL_MAGIC_shared_scalar|5.007003||p
  459. PERL_MAGIC_shared|5.007003||p
  460. PERL_MAGIC_sigelem|5.007002||p
  461. PERL_MAGIC_sig|5.007002||p
  462. PERL_MAGIC_substr|5.007002||p
  463. PERL_MAGIC_sv|5.007002||p
  464. PERL_MAGIC_taint|5.007002||p
  465. PERL_MAGIC_tiedelem|5.007002||p
  466. PERL_MAGIC_tiedscalar|5.007002||p
  467. PERL_MAGIC_tied|5.007002||p
  468. PERL_MAGIC_utf8|5.008001||p
  469. PERL_MAGIC_uvar_elem|5.007003||p
  470. PERL_MAGIC_uvar|5.007002||p
  471. PERL_MAGIC_vec|5.007002||p
  472. PERL_MAGIC_vstring|5.008001||p
  473. PERL_PV_ESCAPE_ALL|5.009004||p
  474. PERL_PV_ESCAPE_FIRSTCHAR|5.009004||p
  475. PERL_PV_ESCAPE_NOBACKSLASH|5.009004||p
  476. PERL_PV_ESCAPE_NOCLEAR|5.009004||p
  477. PERL_PV_ESCAPE_QUOTE|5.009004||p
  478. PERL_PV_ESCAPE_RE|5.009005||p
  479. PERL_PV_ESCAPE_UNI_DETECT|5.009004||p
  480. PERL_PV_ESCAPE_UNI|5.009004||p
  481. PERL_PV_PRETTY_DUMP|5.009004||p
  482. PERL_PV_PRETTY_ELLIPSES|5.010000||p
  483. PERL_PV_PRETTY_LTGT|5.009004||p
  484. PERL_PV_PRETTY_NOCLEAR|5.010000||p
  485. PERL_PV_PRETTY_QUOTE|5.009004||p
  486. PERL_PV_PRETTY_REGPROP|5.009004||p
  487. PERL_QUAD_MAX|5.004000||p
  488. PERL_QUAD_MIN|5.004000||p
  489. PERL_REVISION|5.006000||p
  490. PERL_SCAN_ALLOW_UNDERSCORES|5.007003||p
  491. PERL_SCAN_DISALLOW_PREFIX|5.007003||p
  492. PERL_SCAN_GREATER_THAN_UV_MAX|5.007003||p
  493. PERL_SCAN_SILENT_ILLDIGIT|5.008001||p
  494. PERL_SHORT_MAX|5.004000||p
  495. PERL_SHORT_MIN|5.004000||p
  496. PERL_SIGNALS_UNSAFE_FLAG|5.008001||p
  497. PERL_SUBVERSION|5.006000||p
  498. PERL_SYS_INIT3||5.006000|
  499. PERL_SYS_INIT|||
  500. PERL_SYS_TERM||5.011005|
  501. PERL_UCHAR_MAX|5.004000||p
  502. PERL_UCHAR_MIN|5.004000||p
  503. PERL_UINT_MAX|5.004000||p
  504. PERL_UINT_MIN|5.004000||p
  505. PERL_ULONG_MAX|5.004000||p
  506. PERL_ULONG_MIN|5.004000||p
  507. PERL_UNUSED_ARG|5.009003||p
  508. PERL_UNUSED_CONTEXT|5.009004||p
  509. PERL_UNUSED_DECL|5.007002||p
  510. PERL_UNUSED_VAR|5.007002||p
  511. PERL_UQUAD_MAX|5.004000||p
  512. PERL_UQUAD_MIN|5.004000||p
  513. PERL_USE_GCC_BRACE_GROUPS|5.009004||p
  514. PERL_USHORT_MAX|5.004000||p
  515. PERL_USHORT_MIN|5.004000||p
  516. PERL_VERSION|5.006000||p
  517. PL_DBsignal|5.005000||p
  518. PL_DBsingle|||pn
  519. PL_DBsub|||pn
  520. PL_DBtrace|||pn
  521. PL_Sv|5.005000||p
  522. PL_bufend|5.011004||p
  523. PL_bufptr|5.011004||p
  524. PL_compiling|5.004050||p
  525. PL_copline|5.011004||p
  526. PL_curcop|5.004050||p
  527. PL_curstash|5.004050||p
  528. PL_debstash|5.004050||p
  529. PL_defgv|5.004050||p
  530. PL_diehook|5.004050||p
  531. PL_dirty|5.004050||p
  532. PL_dowarn|||pn
  533. PL_errgv|5.004050||p
  534. PL_error_count|5.011004||p
  535. PL_expect|5.011004||p
  536. PL_hexdigit|5.005000||p
  537. PL_hints|5.005000||p
  538. PL_in_my_stash|5.011004||p
  539. PL_in_my|5.011004||p
  540. PL_keyword_plugin||5.011002|
  541. PL_last_in_gv|||n
  542. PL_laststatval|5.005000||p
  543. PL_lex_state|5.011004||p
  544. PL_lex_stuff|5.011004||p
  545. PL_linestr|5.011004||p
  546. PL_modglobal||5.005000|n
  547. PL_na|5.004050||pn
  548. PL_no_modify|5.006000||p
  549. PL_ofsgv|||n
  550. PL_opfreehook||5.011000|n
  551. PL_parser|5.009005|5.009005|p
  552. PL_perl_destruct_level|5.004050||p
  553. PL_perldb|5.004050||p
  554. PL_ppaddr|5.006000||p
  555. PL_rsfp_filters|5.004050||p
  556. PL_rsfp|5.004050||p
  557. PL_rs|||n
  558. PL_signals|5.008001||p
  559. PL_stack_base|5.004050||p
  560. PL_stack_sp|5.004050||p
  561. PL_statcache|5.005000||p
  562. PL_stdingv|5.004050||p
  563. PL_sv_arenaroot|5.004050||p
  564. PL_sv_no|5.004050||pn
  565. PL_sv_undef|5.004050||pn
  566. PL_sv_yes|5.004050||pn
  567. PL_tainted|5.004050||p
  568. PL_tainting|5.004050||p
  569. PL_tokenbuf|5.011004||p
  570. POP_MULTICALL||5.011005|
  571. POPi|||n
  572. POPl|||n
  573. POPn|||n
  574. POPpbytex||5.007001|n
  575. POPpx||5.005030|n
  576. POPp|||n
  577. POPs|||n
  578. PTR2IV|5.006000||p
  579. PTR2NV|5.006000||p
  580. PTR2UV|5.006000||p
  581. PTR2nat|5.009003||p
  582. PTR2ul|5.007001||p
  583. PTRV|5.006000||p
  584. PUSHMARK|||
  585. PUSH_MULTICALL||5.011005|
  586. PUSHi|||
  587. PUSHmortal|5.009002||p
  588. PUSHn|||
  589. PUSHp|||
  590. PUSHs|||
  591. PUSHu|5.004000||p
  592. PUTBACK|||
  593. PerlIO_clearerr||5.007003|
  594. PerlIO_close||5.007003|
  595. PerlIO_context_layers||5.009004|
  596. PerlIO_eof||5.007003|
  597. PerlIO_error||5.007003|
  598. PerlIO_fileno||5.007003|
  599. PerlIO_fill||5.007003|
  600. PerlIO_flush||5.007003|
  601. PerlIO_get_base||5.007003|
  602. PerlIO_get_bufsiz||5.007003|
  603. PerlIO_get_cnt||5.007003|
  604. PerlIO_get_ptr||5.007003|
  605. PerlIO_read||5.007003|
  606. PerlIO_seek||5.007003|
  607. PerlIO_set_cnt||5.007003|
  608. PerlIO_set_ptrcnt||5.007003|
  609. PerlIO_setlinebuf||5.007003|
  610. PerlIO_stderr||5.007003|
  611. PerlIO_stdin||5.007003|
  612. PerlIO_stdout||5.007003|
  613. PerlIO_tell||5.007003|
  614. PerlIO_unread||5.007003|
  615. PerlIO_write||5.007003|
  616. Perl_signbit||5.009005|n
  617. PoisonFree|5.009004||p
  618. PoisonNew|5.009004||p
  619. PoisonWith|5.009004||p
  620. Poison|5.008000||p
  621. RETVAL|||n
  622. Renewc|||
  623. Renew|||
  624. SAVECLEARSV|||
  625. SAVECOMPPAD|||
  626. SAVEPADSV|||
  627. SAVETMPS|||
  628. SAVE_DEFSV|5.004050||p
  629. SPAGAIN|||
  630. SP|||
  631. START_EXTERN_C|5.005000||p
  632. START_MY_CXT|5.007003||p
  633. STMT_END|||p
  634. STMT_START|||p
  635. STR_WITH_LEN|5.009003||p
  636. ST|||
  637. SV_CONST_RETURN|5.009003||p
  638. SV_COW_DROP_PV|5.008001||p
  639. SV_COW_SHARED_HASH_KEYS|5.009005||p
  640. SV_GMAGIC|5.007002||p
  641. SV_HAS_TRAILING_NUL|5.009004||p
  642. SV_IMMEDIATE_UNREF|5.007001||p
  643. SV_MUTABLE_RETURN|5.009003||p
  644. SV_NOSTEAL|5.009002||p
  645. SV_SMAGIC|5.009003||p
  646. SV_UTF8_NO_ENCODING|5.008001||p
  647. SVfARG|5.009005||p
  648. SVf_UTF8|5.006000||p
  649. SVf|5.006000||p
  650. SVt_IV|||
  651. SVt_NV|||
  652. SVt_PVAV|||
  653. SVt_PVCV|||
  654. SVt_PVHV|||
  655. SVt_PVMG|||
  656. SVt_PV|||
  657. Safefree|||
  658. Slab_Alloc|||
  659. Slab_Free|||
  660. Slab_to_rw|||
  661. StructCopy|||
  662. SvCUR_set|||
  663. SvCUR|||
  664. SvEND|||
  665. SvGAMAGIC||5.006001|
  666. SvGETMAGIC|5.004050||p
  667. SvGROW|||
  668. SvIOK_UV||5.006000|
  669. SvIOK_notUV||5.006000|
  670. SvIOK_off|||
  671. SvIOK_only_UV||5.006000|
  672. SvIOK_only|||
  673. SvIOK_on|||
  674. SvIOKp|||
  675. SvIOK|||
  676. SvIVX|||
  677. SvIV_nomg|5.009001||p
  678. SvIV_set|||
  679. SvIVx|||
  680. SvIV|||
  681. SvIsCOW_shared_hash||5.008003|
  682. SvIsCOW||5.008003|
  683. SvLEN_set|||
  684. SvLEN|||
  685. SvLOCK||5.007003|
  686. SvMAGIC_set|5.009003||p
  687. SvNIOK_off|||
  688. SvNIOKp|||
  689. SvNIOK|||
  690. SvNOK_off|||
  691. SvNOK_only|||
  692. SvNOK_on|||
  693. SvNOKp|||
  694. SvNOK|||
  695. SvNVX|||
  696. SvNV_set|||
  697. SvNVx|||
  698. SvNV|||
  699. SvOK|||
  700. SvOOK_offset||5.011000|
  701. SvOOK|||
  702. SvPOK_off|||
  703. SvPOK_only_UTF8||5.006000|
  704. SvPOK_only|||
  705. SvPOK_on|||
  706. SvPOKp|||
  707. SvPOK|||
  708. SvPVX_const|5.009003||p
  709. SvPVX_mutable|5.009003||p
  710. SvPVX|||
  711. SvPV_const|5.009003||p
  712. SvPV_flags_const_nolen|5.009003||p
  713. SvPV_flags_const|5.009003||p
  714. SvPV_flags_mutable|5.009003||p
  715. SvPV_flags|5.007002||p
  716. SvPV_force_flags_mutable|5.009003||p
  717. SvPV_force_flags_nolen|5.009003||p
  718. SvPV_force_flags|5.007002||p
  719. SvPV_force_mutable|5.009003||p
  720. SvPV_force_nolen|5.009003||p
  721. SvPV_force_nomg_nolen|5.009003||p
  722. SvPV_force_nomg|5.007002||p
  723. SvPV_force|||p
  724. SvPV_mutable|5.009003||p
  725. SvPV_nolen_const|5.009003||p
  726. SvPV_nolen|5.006000||p
  727. SvPV_nomg_const_nolen|5.009003||p
  728. SvPV_nomg_const|5.009003||p
  729. SvPV_nomg|5.007002||p
  730. SvPV_renew|5.009003||p
  731. SvPV_set|||
  732. SvPVbyte_force||5.009002|
  733. SvPVbyte_nolen||5.006000|
  734. SvPVbytex_force||5.006000|
  735. SvPVbytex||5.006000|
  736. SvPVbyte|5.006000||p
  737. SvPVutf8_force||5.006000|
  738. SvPVutf8_nolen||5.006000|
  739. SvPVutf8x_force||5.006000|
  740. SvPVutf8x||5.006000|
  741. SvPVutf8||5.006000|
  742. SvPVx|||
  743. SvPV|||
  744. SvREFCNT_dec|||
  745. SvREFCNT_inc_NN|5.009004||p
  746. SvREFCNT_inc_simple_NN|5.009004||p
  747. SvREFCNT_inc_simple_void_NN|5.009004||p
  748. SvREFCNT_inc_simple_void|5.009004||p
  749. SvREFCNT_inc_simple|5.009004||p
  750. SvREFCNT_inc_void_NN|5.009004||p
  751. SvREFCNT_inc_void|5.009004||p
  752. SvREFCNT_inc|||p
  753. SvREFCNT|||
  754. SvROK_off|||
  755. SvROK_on|||
  756. SvROK|||
  757. SvRV_set|5.009003||p
  758. SvRV|||
  759. SvRXOK||5.009005|
  760. SvRX||5.009005|
  761. SvSETMAGIC|||
  762. SvSHARED_HASH|5.009003||p
  763. SvSHARE||5.007003|
  764. SvSTASH_set|5.009003||p
  765. SvSTASH|||
  766. SvSetMagicSV_nosteal||5.004000|
  767. SvSetMagicSV||5.004000|
  768. SvSetSV_nosteal||5.004000|
  769. SvSetSV|||
  770. SvTAINTED_off||5.004000|
  771. SvTAINTED_on||5.004000|
  772. SvTAINTED||5.004000|
  773. SvTAINT|||
  774. SvTRUE|||
  775. SvTYPE|||
  776. SvUNLOCK||5.007003|
  777. SvUOK|5.007001|5.006000|p
  778. SvUPGRADE|||
  779. SvUTF8_off||5.006000|
  780. SvUTF8_on||5.006000|
  781. SvUTF8||5.006000|
  782. SvUVXx|5.004000||p
  783. SvUVX|5.004000||p
  784. SvUV_nomg|5.009001||p
  785. SvUV_set|5.009003||p
  786. SvUVx|5.004000||p
  787. SvUV|5.004000||p
  788. SvVOK||5.008001|
  789. SvVSTRING_mg|5.009004||p
  790. THIS|||n
  791. UNDERBAR|5.009002||p
  792. UTF8_MAXBYTES|5.009002||p
  793. UVSIZE|5.006000||p
  794. UVTYPE|5.006000||p
  795. UVXf|5.007001||p
  796. UVof|5.006000||p
  797. UVuf|5.006000||p
  798. UVxf|5.006000||p
  799. WARN_ALL|5.006000||p
  800. WARN_AMBIGUOUS|5.006000||p
  801. WARN_ASSERTIONS|5.011004||p
  802. WARN_BAREWORD|5.006000||p
  803. WARN_CLOSED|5.006000||p
  804. WARN_CLOSURE|5.006000||p
  805. WARN_DEBUGGING|5.006000||p
  806. WARN_DEPRECATED|5.006000||p
  807. WARN_DIGIT|5.006000||p
  808. WARN_EXEC|5.006000||p
  809. WARN_EXITING|5.006000||p
  810. WARN_GLOB|5.006000||p
  811. WARN_INPLACE|5.006000||p
  812. WARN_INTERNAL|5.006000||p
  813. WARN_IO|5.006000||p
  814. WARN_LAYER|5.008000||p
  815. WARN_MALLOC|5.006000||p
  816. WARN_MISC|5.006000||p
  817. WARN_NEWLINE|5.006000||p
  818. WARN_NUMERIC|5.006000||p
  819. WARN_ONCE|5.006000||p
  820. WARN_OVERFLOW|5.006000||p
  821. WARN_PACK|5.006000||p
  822. WARN_PARENTHESIS|5.006000||p
  823. WARN_PIPE|5.006000||p
  824. WARN_PORTABLE|5.006000||p
  825. WARN_PRECEDENCE|5.006000||p
  826. WARN_PRINTF|5.006000||p
  827. WARN_PROTOTYPE|5.006000||p
  828. WARN_QW|5.006000||p
  829. WARN_RECURSION|5.006000||p
  830. WARN_REDEFINE|5.006000||p
  831. WARN_REGEXP|5.006000||p
  832. WARN_RESERVED|5.006000||p
  833. WARN_SEMICOLON|5.006000||p
  834. WARN_SEVERE|5.006000||p
  835. WARN_SIGNAL|5.006000||p
  836. WARN_SUBSTR|5.006000||p
  837. WARN_SYNTAX|5.006000||p
  838. WARN_TAINT|5.006000||p
  839. WARN_THREADS|5.008000||p
  840. WARN_UNINITIALIZED|5.006000||p
  841. WARN_UNOPENED|5.006000||p
  842. WARN_UNPACK|5.006000||p
  843. WARN_UNTIE|5.006000||p
  844. WARN_UTF8|5.006000||p
  845. WARN_VOID|5.006000||p
  846. XCPT_CATCH|5.009002||p
  847. XCPT_RETHROW|5.009002||p
  848. XCPT_TRY_END|5.009002||p
  849. XCPT_TRY_START|5.009002||p
  850. XPUSHi|||
  851. XPUSHmortal|5.009002||p
  852. XPUSHn|||
  853. XPUSHp|||
  854. XPUSHs|||
  855. XPUSHu|5.004000||p
  856. XSPROTO|5.010000||p
  857. XSRETURN_EMPTY|||
  858. XSRETURN_IV|||
  859. XSRETURN_NO|||
  860. XSRETURN_NV|||
  861. XSRETURN_PV|||
  862. XSRETURN_UNDEF|||
  863. XSRETURN_UV|5.008001||p
  864. XSRETURN_YES|||
  865. XSRETURN|||p
  866. XST_mIV|||
  867. XST_mNO|||
  868. XST_mNV|||
  869. XST_mPV|||
  870. XST_mUNDEF|||
  871. XST_mUV|5.008001||p
  872. XST_mYES|||
  873. XS_VERSION_BOOTCHECK|||
  874. XS_VERSION|||
  875. XSprePUSH|5.006000||p
  876. XS|||
  877. ZeroD|5.009002||p
  878. Zero|||
  879. _aMY_CXT|5.007003||p
  880. _pMY_CXT|5.007003||p
  881. aMY_CXT_|5.007003||p
  882. aMY_CXT|5.007003||p
  883. aTHXR_|5.011004||p
  884. aTHXR|5.011004||p
  885. aTHX_|5.006000||p
  886. aTHX|5.006000||p
  887. add_data|||n
  888. add_utf16_textfilter|||
  889. addmad|||
  890. allocmy|||
  891. amagic_call|||
  892. amagic_cmp_locale|||
  893. amagic_cmp|||
  894. amagic_i_ncmp|||
  895. amagic_ncmp|||
  896. anonymise_cv|||
  897. any_dup|||
  898. ao|||
  899. append_elem|||
  900. append_list|||
  901. append_madprops|||
  902. apply_attrs_my|||
  903. apply_attrs_string||5.006001|
  904. apply_attrs|||
  905. apply|||
  906. atfork_lock||5.007003|n
  907. atfork_unlock||5.007003|n
  908. av_arylen_p||5.009003|
  909. av_clear|||
  910. av_create_and_push||5.009005|
  911. av_create_and_unshift_one||5.009005|
  912. av_delete||5.006000|
  913. av_exists||5.006000|
  914. av_extend|||
  915. av_fetch|||
  916. av_fill|||
  917. av_iter_p||5.011000|
  918. av_len|||
  919. av_make|||
  920. av_pop|||
  921. av_push|||
  922. av_reify|||
  923. av_shift|||
  924. av_store|||
  925. av_undef|||
  926. av_unshift|||
  927. ax|||n
  928. bad_type|||
  929. bind_match|||
  930. block_end|||
  931. block_gimme||5.004000|
  932. block_start|||
  933. boolSV|5.004000||p
  934. boot_core_PerlIO|||
  935. boot_core_UNIVERSAL|||
  936. boot_core_mro|||
  937. bytes_from_utf8||5.007001|
  938. bytes_to_uni|||n
  939. bytes_to_utf8||5.006001|
  940. call_argv|5.006000||p
  941. call_atexit||5.006000|
  942. call_list||5.004000|
  943. call_method|5.006000||p
  944. call_pv|5.006000||p
  945. call_sv|5.006000||p
  946. calloc||5.007002|n
  947. cando|||
  948. cast_i32||5.006000|
  949. cast_iv||5.006000|
  950. cast_ulong||5.006000|
  951. cast_uv||5.006000|
  952. check_type_and_open|||
  953. check_uni|||
  954. checkcomma|||
  955. checkposixcc|||
  956. ckWARN|5.006000||p
  957. ck_anoncode|||
  958. ck_bitop|||
  959. ck_concat|||
  960. ck_defined|||
  961. ck_delete|||
  962. ck_die|||
  963. ck_each|||
  964. ck_eof|||
  965. ck_eval|||
  966. ck_exec|||
  967. ck_exists|||
  968. ck_exit|||
  969. ck_ftst|||
  970. ck_fun|||
  971. ck_glob|||
  972. ck_grep|||
  973. ck_index|||
  974. ck_join|||
  975. ck_lfun|||
  976. ck_listiob|||
  977. ck_match|||
  978. ck_method|||
  979. ck_null|||
  980. ck_open|||
  981. ck_readline|||
  982. ck_repeat|||
  983. ck_require|||
  984. ck_return|||
  985. ck_rfun|||
  986. ck_rvconst|||
  987. ck_sassign|||
  988. ck_select|||
  989. ck_shift|||
  990. ck_sort|||
  991. ck_spair|||
  992. ck_split|||
  993. ck_subr|||
  994. ck_substr|||
  995. ck_svconst|||
  996. ck_trunc|||
  997. ck_unpack|||
  998. ck_warner_d||5.011001|v
  999. ck_warner||5.011001|v
  1000. ckwarn_common|||
  1001. ckwarn_d||5.009003|
  1002. ckwarn||5.009003|
  1003. cl_and|||n
  1004. cl_anything|||n
  1005. cl_init_zero|||n
  1006. cl_init|||n
  1007. cl_is_anything|||n
  1008. cl_or|||n
  1009. clear_placeholders|||
  1010. closest_cop|||
  1011. convert|||
  1012. cop_free|||
  1013. cr_textfilter|||
  1014. create_eval_scope|||
  1015. croak_nocontext|||vn
  1016. croak_xs_usage||5.010001|
  1017. croak|||v
  1018. csighandler||5.009003|n
  1019. curmad|||
  1020. custom_op_desc||5.007003|
  1021. custom_op_name||5.007003|
  1022. cv_ckproto_len|||
  1023. cv_clone|||
  1024. cv_const_sv||5.004000|
  1025. cv_dump|||
  1026. cv_undef|||
  1027. cx_dump||5.005000|
  1028. cx_dup|||
  1029. cxinc|||
  1030. dAXMARK|5.009003||p
  1031. dAX|5.007002||p
  1032. dITEMS|5.007002||p
  1033. dMARK|||
  1034. dMULTICALL||5.009003|
  1035. dMY_CXT_SV|5.007003||p
  1036. dMY_CXT|5.007003||p
  1037. dNOOP|5.006000||p
  1038. dORIGMARK|||
  1039. dSP|||
  1040. dTHR|5.004050||p
  1041. dTHXR|5.011004||p
  1042. dTHXa|5.006000||p
  1043. dTHXoa|5.006000||p
  1044. dTHX|5.006000||p
  1045. dUNDERBAR|5.009002||p
  1046. dVAR|5.009003||p
  1047. dXCPT|5.009002||p
  1048. dXSARGS|||
  1049. dXSI32|||
  1050. dXSTARG|5.006000||p
  1051. deb_curcv|||
  1052. deb_nocontext|||vn
  1053. deb_stack_all|||
  1054. deb_stack_n|||
  1055. debop||5.005000|
  1056. debprofdump||5.005000|
  1057. debprof|||
  1058. debstackptrs||5.007003|
  1059. debstack||5.007003|
  1060. debug_start_match|||
  1061. deb||5.007003|v
  1062. del_sv|||
  1063. delete_eval_scope|||
  1064. delimcpy||5.004000|n
  1065. deprecate_commaless_var_list|||
  1066. despatch_signals||5.007001|
  1067. destroy_matcher|||
  1068. die_nocontext|||vn
  1069. die_where|||
  1070. die|||v
  1071. dirp_dup|||
  1072. div128|||
  1073. djSP|||
  1074. do_aexec5|||
  1075. do_aexec|||
  1076. do_aspawn|||
  1077. do_binmode||5.004050|
  1078. do_chomp|||
  1079. do_chop|||
  1080. do_close|||
  1081. do_delete_local|||
  1082. do_dump_pad|||
  1083. do_eof|||
  1084. do_exec3|||
  1085. do_execfree|||
  1086. do_exec|||
  1087. do_gv_dump||5.006000|
  1088. do_gvgv_dump||5.006000|
  1089. do_hv_dump||5.006000|
  1090. do_ipcctl|||
  1091. do_ipcget|||
  1092. do_join|||
  1093. do_kv|||
  1094. do_magic_dump||5.006000|
  1095. do_msgrcv|||
  1096. do_msgsnd|||
  1097. do_oddball|||
  1098. do_op_dump||5.006000|
  1099. do_op_xmldump|||
  1100. do_open9||5.006000|
  1101. do_openn||5.007001|
  1102. do_open||5.004000|
  1103. do_pmop_dump||5.006000|
  1104. do_pmop_xmldump|||
  1105. do_print|||
  1106. do_readline|||
  1107. do_seek|||
  1108. do_semop|||
  1109. do_shmio|||
  1110. do_smartmatch|||
  1111. do_spawn_nowait|||
  1112. do_spawn|||
  1113. do_sprintf|||
  1114. do_sv_dump||5.006000|
  1115. do_sysseek|||
  1116. do_tell|||
  1117. do_trans_complex_utf8|||
  1118. do_trans_complex|||
  1119. do_trans_count_utf8|||
  1120. do_trans_count|||
  1121. do_trans_simple_utf8|||
  1122. do_trans_simple|||
  1123. do_trans|||
  1124. do_vecget|||
  1125. do_vecset|||
  1126. do_vop|||
  1127. docatch|||
  1128. doeval|||
  1129. dofile|||
  1130. dofindlabel|||
  1131. doform|||
  1132. doing_taint||5.008001|n
  1133. dooneliner|||
  1134. doopen_pm|||
  1135. doparseform|||
  1136. dopoptoeval|||
  1137. dopoptogiven|||
  1138. dopoptolabel|||
  1139. dopoptoloop|||
  1140. dopoptosub_at|||
  1141. dopoptowhen|||
  1142. doref||5.009003|
  1143. dounwind|||
  1144. dowantarray|||
  1145. dump_all_perl|||
  1146. dump_all||5.006000|
  1147. dump_eval||5.006000|
  1148. dump_exec_pos|||
  1149. dump_fds|||
  1150. dump_form||5.006000|
  1151. dump_indent||5.006000|v
  1152. dump_mstats|||
  1153. dump_packsubs_perl|||
  1154. dump_packsubs||5.006000|
  1155. dump_sub_perl|||
  1156. dump_sub||5.006000|
  1157. dump_sv_child|||
  1158. dump_trie_interim_list|||
  1159. dump_trie_interim_table|||
  1160. dump_trie|||
  1161. dump_vindent||5.006000|
  1162. dumpuntil|||
  1163. dup_attrlist|||
  1164. emulate_cop_io|||
  1165. eval_pv|5.006000||p
  1166. eval_sv|5.006000||p
  1167. exec_failed|||
  1168. expect_number|||
  1169. fbm_compile||5.005000|
  1170. fbm_instr||5.005000|
  1171. feature_is_enabled|||
  1172. fetch_cop_label||5.011000|
  1173. filter_add|||
  1174. filter_del|||
  1175. filter_gets|||
  1176. filter_read|||
  1177. find_and_forget_pmops|||
  1178. find_array_subscript|||
  1179. find_beginning|||
  1180. find_byclass|||
  1181. find_hash_subscript|||
  1182. find_in_my_stash|||
  1183. find_runcv||5.008001|
  1184. find_rundefsvoffset||5.009002|
  1185. find_script|||
  1186. find_uninit_var|||
  1187. first_symbol|||n
  1188. fold_constants|||
  1189. forbid_setid|||
  1190. force_ident|||
  1191. force_list|||
  1192. force_next|||
  1193. force_strict_version|||
  1194. force_version|||
  1195. force_word|||
  1196. forget_pmop|||
  1197. form_nocontext|||vn
  1198. form||5.004000|v
  1199. fp_dup|||
  1200. fprintf_nocontext|||vn
  1201. free_global_struct|||
  1202. free_tied_hv_pool|||
  1203. free_tmps|||
  1204. gen_constant_list|||
  1205. get_arena|||
  1206. get_aux_mg|||
  1207. get_av|5.006000||p
  1208. get_context||5.006000|n
  1209. get_cvn_flags|5.009005||p
  1210. get_cvs|5.011000||p
  1211. get_cv|5.006000||p
  1212. get_db_sub|||
  1213. get_debug_opts|||
  1214. get_hash_seed|||
  1215. get_hv|5.006000||p
  1216. get_isa_hash|||
  1217. get_mstats|||
  1218. get_no_modify|||
  1219. get_num|||
  1220. get_op_descs||5.005000|
  1221. get_op_names||5.005000|
  1222. get_opargs|||
  1223. get_ppaddr||5.006000|
  1224. get_re_arg|||
  1225. get_sv|5.006000||p
  1226. get_vtbl||5.005030|
  1227. getcwd_sv||5.007002|
  1228. getenv_len|||
  1229. glob_2number|||
  1230. glob_assign_glob|||
  1231. glob_assign_ref|||
  1232. gp_dup|||
  1233. gp_free|||
  1234. gp_ref|||
  1235. grok_bin|5.007003||p
  1236. grok_hex|5.007003||p
  1237. grok_number|5.007002||p
  1238. grok_numeric_radix|5.007002||p
  1239. grok_oct|5.007003||p
  1240. group_end|||
  1241. gv_AVadd|||
  1242. gv_HVadd|||
  1243. gv_IOadd|||
  1244. gv_SVadd|||
  1245. gv_add_by_type||5.011000|
  1246. gv_autoload4||5.004000|
  1247. gv_check|||
  1248. gv_const_sv||5.009003|
  1249. gv_dump||5.006000|
  1250. gv_efullname3||5.004000|
  1251. gv_efullname4||5.006001|
  1252. gv_efullname|||
  1253. gv_ename|||
  1254. gv_fetchfile_flags||5.009005|
  1255. gv_fetchfile|||
  1256. gv_fetchmeth_autoload||5.007003|
  1257. gv_fetchmethod_autoload||5.004000|
  1258. gv_fetchmethod_flags||5.011000|
  1259. gv_fetchmethod|||
  1260. gv_fetchmeth|||
  1261. gv_fetchpvn_flags|5.009002||p
  1262. gv_fetchpvs|5.009004||p
  1263. gv_fetchpv|||
  1264. gv_fetchsv|5.009002||p
  1265. gv_fullname3||5.004000|
  1266. gv_fullname4||5.006001|
  1267. gv_fullname|||
  1268. gv_get_super_pkg|||
  1269. gv_handler||5.007001|
  1270. gv_init_sv|||
  1271. gv_init|||
  1272. gv_name_set||5.009004|
  1273. gv_stashpvn|5.004000||p
  1274. gv_stashpvs|5.009003||p
  1275. gv_stashpv|||
  1276. gv_stashsv|||
  1277. gv_try_downgrade||5.011002|
  1278. he_dup|||
  1279. hek_dup|||
  1280. hfreeentries|||
  1281. hsplit|||
  1282. hv_assert|||
  1283. hv_auxinit|||n
  1284. hv_backreferences_p|||
  1285. hv_clear_placeholders||5.009001|
  1286. hv_clear|||
  1287. hv_common_key_len||5.010000|
  1288. hv_common||5.010000|
  1289. hv_copy_hints_hv|||
  1290. hv_delayfree_ent||5.004000|
  1291. hv_delete_common|||
  1292. hv_delete_ent||5.004000|
  1293. hv_delete|||
  1294. hv_eiter_p||5.009003|
  1295. hv_eiter_set||5.009003|
  1296. hv_exists_ent||5.004000|
  1297. hv_exists|||
  1298. hv_fetch_ent||5.004000|
  1299. hv_fetchs|5.009003||p
  1300. hv_fetch|||
  1301. hv_free_ent||5.004000|
  1302. hv_iterinit|||
  1303. hv_iterkeysv||5.004000|
  1304. hv_iterkey|||
  1305. hv_iternext_flags||5.008000|
  1306. hv_iternextsv|||
  1307. hv_iternext|||
  1308. hv_iterval|||
  1309. hv_kill_backrefs|||
  1310. hv_ksplit||5.004000|
  1311. hv_magic_check|||n
  1312. hv_magic|||
  1313. hv_name_set||5.009003|
  1314. hv_notallowed|||
  1315. hv_placeholders_get||5.009003|
  1316. hv_placeholders_p||5.009003|
  1317. hv_placeholders_set||5.009003|
  1318. hv_riter_p||5.009003|
  1319. hv_riter_set||5.009003|
  1320. hv_scalar||5.009001|
  1321. hv_store_ent||5.004000|
  1322. hv_store_flags||5.008000|
  1323. hv_stores|5.009004||p
  1324. hv_store|||
  1325. hv_undef|||
  1326. ibcmp_locale||5.004000|n
  1327. ibcmp_utf8||5.007003|
  1328. ibcmp|||n
  1329. incline|||
  1330. incpush_if_exists|||
  1331. incpush_use_sep|||
  1332. incpush|||
  1333. ingroup|||
  1334. init_argv_symbols|||
  1335. init_debugger|||
  1336. init_global_struct|||
  1337. init_i18nl10n||5.006000|
  1338. init_i18nl14n||5.006000|
  1339. init_ids|||
  1340. init_interp|||
  1341. init_main_stash|||
  1342. init_perllib|||
  1343. init_postdump_symbols|||
  1344. init_predump_symbols|||
  1345. init_stacks||5.005000|
  1346. init_tm||5.007002|
  1347. instr|||n
  1348. intro_my|||
  1349. intuit_method|||
  1350. intuit_more|||
  1351. invert|||
  1352. io_close|||
  1353. isALNUMC|5.006000||p
  1354. isALNUM|||
  1355. isALPHA|||
  1356. isASCII|5.006000||p
  1357. isBLANK|5.006001||p
  1358. isCNTRL|5.006000||p
  1359. isDIGIT|||
  1360. isGRAPH|5.006000||p
  1361. isGV_with_GP|5.009004||p
  1362. isLOWER|||
  1363. isPRINT|5.004000||p
  1364. isPSXSPC|5.006001||p
  1365. isPUNCT|5.006000||p
  1366. isSPACE|||
  1367. isUPPER|||
  1368. isXDIGIT|5.006000||p
  1369. is_an_int|||
  1370. is_ascii_string||5.011000|n
  1371. is_gv_magical_sv|||
  1372. is_handle_constructor|||n
  1373. is_inplace_av|||
  1374. is_list_assignment|||
  1375. is_lvalue_sub||5.007001|
  1376. is_uni_alnum_lc||5.006000|
  1377. is_uni_alnum||5.006000|
  1378. is_uni_alpha_lc||5.006000|
  1379. is_uni_alpha||5.006000|
  1380. is_uni_ascii_lc||5.006000|
  1381. is_uni_ascii||5.006000|
  1382. is_uni_cntrl_lc||5.006000|
  1383. is_uni_cntrl||5.006000|
  1384. is_uni_digit_lc||5.006000|
  1385. is_uni_digit||5.006000|
  1386. is_uni_graph_lc||5.006000|
  1387. is_uni_graph||5.006000|
  1388. is_uni_idfirst_lc||5.006000|
  1389. is_uni_idfirst||5.006000|
  1390. is_uni_lower_lc||5.006000|
  1391. is_uni_lower||5.006000|
  1392. is_uni_print_lc||5.006000|
  1393. is_uni_print||5.006000|
  1394. is_uni_punct_lc||5.006000|
  1395. is_uni_punct||5.006000|
  1396. is_uni_space_lc||5.006000|
  1397. is_uni_space||5.006000|
  1398. is_uni_upper_lc||5.006000|
  1399. is_uni_upper||5.006000|
  1400. is_uni_xdigit_lc||5.006000|
  1401. is_uni_xdigit||5.006000|
  1402. is_utf8_X_LVT|||
  1403. is_utf8_X_LV_LVT_V|||
  1404. is_utf8_X_LV|||
  1405. is_utf8_X_L|||
  1406. is_utf8_X_T|||
  1407. is_utf8_X_V|||
  1408. is_utf8_X_begin|||
  1409. is_utf8_X_extend|||
  1410. is_utf8_X_non_hangul|||
  1411. is_utf8_X_prepend|||
  1412. is_utf8_alnum||5.006000|
  1413. is_utf8_alpha||5.006000|
  1414. is_utf8_ascii||5.006000|
  1415. is_utf8_char_slow|||n
  1416. is_utf8_char||5.006000|n
  1417. is_utf8_cntrl||5.006000|
  1418. is_utf8_common|||
  1419. is_utf8_digit||5.006000|
  1420. is_utf8_graph||5.006000|
  1421. is_utf8_idcont||5.008000|
  1422. is_utf8_idfirst||5.006000|
  1423. is_utf8_lower||5.006000|
  1424. is_utf8_mark||5.006000|
  1425. is_utf8_perl_space||5.011001|
  1426. is_utf8_perl_word||5.011001|
  1427. is_utf8_posix_digit||5.011001|
  1428. is_utf8_print||5.006000|
  1429. is_utf8_punct||5.006000|
  1430. is_utf8_space||5.006000|
  1431. is_utf8_string_loclen||5.009003|n
  1432. is_utf8_string_loc||5.008001|n
  1433. is_utf8_string||5.006001|n
  1434. is_utf8_upper||5.006000|
  1435. is_utf8_xdigit||5.006000|
  1436. isa_lookup|||
  1437. items|||n
  1438. ix|||n
  1439. jmaybe|||
  1440. join_exact|||
  1441. keyword_plugin_standard|||
  1442. keyword|||
  1443. leave_scope|||
  1444. lex_bufutf8||5.011002|
  1445. lex_discard_to||5.011002|
  1446. lex_end|||
  1447. lex_grow_linestr||5.011002|
  1448. lex_next_chunk||5.011002|
  1449. lex_peek_unichar||5.011002|
  1450. lex_read_space||5.011002|
  1451. lex_read_to||5.011002|
  1452. lex_read_unichar||5.011002|
  1453. lex_start|||
  1454. lex_stuff_pvn||5.011002|
  1455. lex_stuff_sv||5.011002|
  1456. lex_unstuff||5.011002|
  1457. linklist|||
  1458. listkids|||
  1459. list|||
  1460. load_module_nocontext|||vn
  1461. load_module|5.006000||pv
  1462. localize|||
  1463. looks_like_bool|||
  1464. looks_like_number|||
  1465. lop|||
  1466. mPUSHi|5.009002||p
  1467. mPUSHn|5.009002||p
  1468. mPUSHp|5.009002||p
  1469. mPUSHs|5.010001||p
  1470. mPUSHu|5.009002||p
  1471. mXPUSHi|5.009002||p
  1472. mXPUSHn|5.009002||p
  1473. mXPUSHp|5.009002||p
  1474. mXPUSHs|5.010001||p
  1475. mXPUSHu|5.009002||p
  1476. mad_free|||
  1477. madlex|||
  1478. madparse|||
  1479. magic_clear_all_env|||
  1480. magic_clearenv|||
  1481. magic_clearhints|||
  1482. magic_clearhint|||
  1483. magic_clearisa|||
  1484. magic_clearpack|||
  1485. magic_clearsig|||
  1486. magic_dump||5.006000|
  1487. magic_existspack|||
  1488. magic_freearylen_p|||
  1489. magic_freeovrld|||
  1490. magic_getarylen|||
  1491. magic_getdefelem|||
  1492. magic_getnkeys|||
  1493. magic_getpack|||
  1494. magic_getpos|||
  1495. magic_getsig|||
  1496. magic_getsubstr|||
  1497. magic_gettaint|||
  1498. magic_getuvar|||
  1499. magic_getvec|||
  1500. magic_get|||
  1501. magic_killbackrefs|||
  1502. magic_len|||
  1503. magic_methcall|||
  1504. magic_methpack|||
  1505. magic_nextpack|||
  1506. magic_regdata_cnt|||
  1507. magic_regdatum_get|||
  1508. magic_regdatum_set|||
  1509. magic_scalarpack|||
  1510. magic_set_all_env|||
  1511. magic_setamagic|||
  1512. magic_setarylen|||
  1513. magic_setcollxfrm|||
  1514. magic_setdbline|||
  1515. magic_setdefelem|||
  1516. magic_setenv|||
  1517. magic_sethint|||
  1518. magic_setisa|||
  1519. magic_setmglob|||
  1520. magic_setnkeys|||
  1521. magic_setpack|||
  1522. magic_setpos|||
  1523. magic_setregexp|||
  1524. magic_setsig|||
  1525. magic_setsubstr|||
  1526. magic_settaint|||
  1527. magic_setutf8|||
  1528. magic_setuvar|||
  1529. magic_setvec|||
  1530. magic_set|||
  1531. magic_sizepack|||
  1532. magic_wipepack|||
  1533. make_matcher|||
  1534. make_trie_failtable|||
  1535. make_trie|||
  1536. malloc_good_size|||n
  1537. malloced_size|||n
  1538. malloc||5.007002|n
  1539. markstack_grow|||
  1540. matcher_matches_sv|||
  1541. measure_struct|||
  1542. memEQs|5.009005||p
  1543. memEQ|5.004000||p
  1544. memNEs|5.009005||p
  1545. memNE|5.004000||p
  1546. mem_collxfrm|||
  1547. mem_log_common|||n
  1548. mess_alloc|||
  1549. mess_nocontext|||vn
  1550. mess||5.006000|v
  1551. method_common|||
  1552. mfree||5.007002|n
  1553. mg_clear|||
  1554. mg_copy|||
  1555. mg_dup|||
  1556. mg_find|||
  1557. mg_free|||
  1558. mg_get|||
  1559. mg_length||5.005000|
  1560. mg_localize|||
  1561. mg_magical|||
  1562. mg_set|||
  1563. mg_size||5.005000|
  1564. mini_mktime||5.007002|
  1565. missingterm|||
  1566. mode_from_discipline|||
  1567. modkids|||
  1568. mod|||
  1569. more_bodies|||
  1570. more_sv|||
  1571. moreswitches|||
  1572. mro_get_from_name||5.010001|
  1573. mro_get_linear_isa_dfs|||
  1574. mro_get_linear_isa||5.009005|
  1575. mro_get_private_data||5.010001|
  1576. mro_isa_changed_in|||
  1577. mro_meta_dup|||
  1578. mro_meta_init|||
  1579. mro_method_changed_in||5.009005|
  1580. mro_register||5.010001|
  1581. mro_set_mro||5.010001|
  1582. mro_set_private_data||5.010001|
  1583. mul128|||
  1584. mulexp10|||n
  1585. my_atof2||5.007002|
  1586. my_atof||5.006000|
  1587. my_attrs|||
  1588. my_bcopy|||n
  1589. my_betoh16|||n
  1590. my_betoh32|||n
  1591. my_betoh64|||n
  1592. my_betohi|||n
  1593. my_betohl|||n
  1594. my_betohs|||n
  1595. my_bzero|||n
  1596. my_chsize|||
  1597. my_clearenv|||
  1598. my_cxt_index|||
  1599. my_cxt_init|||
  1600. my_dirfd||5.009005|
  1601. my_exit_jump|||
  1602. my_exit|||
  1603. my_failure_exit||5.004000|
  1604. my_fflush_all||5.006000|
  1605. my_fork||5.007003|n
  1606. my_htobe16|||n
  1607. my_htobe32|||n
  1608. my_htobe64|||n
  1609. my_htobei|||n
  1610. my_htobel|||n
  1611. my_htobes|||n
  1612. my_htole16|||n
  1613. my_htole32|||n
  1614. my_htole64|||n
  1615. my_htolei|||n
  1616. my_htolel|||n
  1617. my_htoles|||n
  1618. my_htonl|||
  1619. my_kid|||
  1620. my_letoh16|||n
  1621. my_letoh32|||n
  1622. my_letoh64|||n
  1623. my_letohi|||n
  1624. my_letohl|||n
  1625. my_letohs|||n
  1626. my_lstat|||
  1627. my_memcmp||5.004000|n
  1628. my_memset|||n
  1629. my_ntohl|||
  1630. my_pclose||5.004000|
  1631. my_popen_list||5.007001|
  1632. my_popen||5.004000|
  1633. my_setenv|||
  1634. my_snprintf|5.009004||pvn
  1635. my_socketpair||5.007003|n
  1636. my_sprintf|5.009003||pvn
  1637. my_stat|||
  1638. my_strftime||5.007002|
  1639. my_strlcat|5.009004||pn
  1640. my_strlcpy|5.009004||pn
  1641. my_swabn|||n
  1642. my_swap|||
  1643. my_unexec|||
  1644. my_vsnprintf||5.009004|n
  1645. need_utf8|||n
  1646. newANONATTRSUB||5.006000|
  1647. newANONHASH|||
  1648. newANONLIST|||
  1649. newANONSUB|||
  1650. newASSIGNOP|||
  1651. newATTRSUB||5.006000|
  1652. newAVREF|||
  1653. newAV|||
  1654. newBINOP|||
  1655. newCONDOP|||
  1656. newCONSTSUB|5.004050||p
  1657. newCVREF|||
  1658. newDEFSVOP|||
  1659. newFORM|||
  1660. newFOROP|||
  1661. newGIVENOP||5.009003|
  1662. newGIVWHENOP|||
  1663. newGP|||
  1664. newGVOP|||
  1665. newGVREF|||
  1666. newGVgen|||
  1667. newHVREF|||
  1668. newHVhv||5.005000|
  1669. newHV|||
  1670. newIO|||
  1671. newLISTOP|||
  1672. newLOGOP|||
  1673. newLOOPEX|||
  1674. newLOOPOP|||
  1675. newMADPROP|||
  1676. newMADsv|||
  1677. newMYSUB|||
  1678. newNULLLIST|||
  1679. newOP|||
  1680. newPADOP|||
  1681. newPMOP|||
  1682. newPROG|||
  1683. newPVOP|||
  1684. newRANGE|||
  1685. newRV_inc|5.004000||p
  1686. newRV_noinc|5.004000||p
  1687. newRV|||
  1688. newSLICEOP|||
  1689. newSTATEOP|||
  1690. newSUB|||
  1691. newSVOP|||
  1692. newSVREF|||
  1693. newSV_type|5.009005||p
  1694. newSVhek||5.009003|
  1695. newSViv|||
  1696. newSVnv|||
  1697. newSVpvf_nocontext|||vn
  1698. newSVpvf||5.004000|v
  1699. newSVpvn_flags|5.010001||p
  1700. newSVpvn_share|5.007001||p
  1701. newSVpvn_utf8|5.010001||p
  1702. newSVpvn|5.004050||p
  1703. newSVpvs_flags|5.010001||p
  1704. newSVpvs_share|5.009003||p
  1705. newSVpvs|5.009003||p
  1706. newSVpv|||
  1707. newSVrv|||
  1708. newSVsv|||
  1709. newSVuv|5.006000||p
  1710. newSV|||
  1711. newTOKEN|||
  1712. newUNOP|||
  1713. newWHENOP||5.009003|
  1714. newWHILEOP||5.009003|
  1715. newXS_flags||5.009004|
  1716. newXSproto||5.006000|
  1717. newXS||5.006000|
  1718. new_collate||5.006000|
  1719. new_constant|||
  1720. new_ctype||5.006000|
  1721. new_he|||
  1722. new_logop|||
  1723. new_numeric||5.006000|
  1724. new_stackinfo||5.005000|
  1725. new_version||5.009000|
  1726. new_warnings_bitfield|||
  1727. next_symbol|||
  1728. nextargv|||
  1729. nextchar|||
  1730. ninstr|||n
  1731. no_bareword_allowed|||
  1732. no_fh_allowed|||
  1733. no_op|||
  1734. not_a_number|||
  1735. nothreadhook||5.008000|
  1736. nuke_stacks|||
  1737. num_overflow|||n
  1738. offer_nice_chunk|||
  1739. oopsAV|||
  1740. oopsHV|||
  1741. op_clear|||
  1742. op_const_sv|||
  1743. op_dump||5.006000|
  1744. op_free|||
  1745. op_getmad_weak|||
  1746. op_getmad|||
  1747. op_null||5.007002|
  1748. op_refcnt_dec|||
  1749. op_refcnt_inc|||
  1750. op_refcnt_lock||5.009002|
  1751. op_refcnt_unlock||5.009002|
  1752. op_xmldump|||
  1753. open_script|||
  1754. opt_scalarhv|||
  1755. pMY_CXT_|5.007003||p
  1756. pMY_CXT|5.007003||p
  1757. pTHX_|5.006000||p
  1758. pTHX|5.006000||p
  1759. packWARN|5.007003||p
  1760. pack_cat||5.007003|
  1761. pack_rec|||
  1762. package_version|||
  1763. package|||
  1764. packlist||5.008001|
  1765. pad_add_anon|||
  1766. pad_add_name_sv|||
  1767. pad_add_name|||
  1768. pad_alloc|||
  1769. pad_block_start|||
  1770. pad_check_dup|||
  1771. pad_compname_type|||
  1772. pad_findlex|||
  1773. pad_findmy||5.011002|
  1774. pad_fixup_inner_anons|||
  1775. pad_free|||
  1776. pad_leavemy|||
  1777. pad_new|||
  1778. pad_peg|||n
  1779. pad_push|||
  1780. pad_reset|||
  1781. pad_setsv|||
  1782. pad_sv|||
  1783. pad_swipe|||
  1784. pad_tidy|||
  1785. pad_undef|||
  1786. parse_body|||
  1787. parse_unicode_opts|||
  1788. parser_dup|||
  1789. parser_free|||
  1790. path_is_absolute|||n
  1791. peep|||
  1792. pending_Slabs_to_ro|||
  1793. perl_alloc_using|||n
  1794. perl_alloc|||n
  1795. perl_clone_using|||n
  1796. perl_clone|||n
  1797. perl_construct|||n
  1798. perl_destruct||5.007003|n
  1799. perl_free|||n
  1800. perl_parse||5.006000|n
  1801. perl_run|||n
  1802. pidgone|||
  1803. pm_description|||
  1804. pmflag|||
  1805. pmop_dump||5.006000|
  1806. pmop_xmldump|||
  1807. pmruntime|||
  1808. pmtrans|||
  1809. pop_scope|||
  1810. pregcomp||5.009005|
  1811. pregexec|||
  1812. pregfree2||5.011000|
  1813. pregfree|||
  1814. prepend_elem|||
  1815. prepend_madprops|||
  1816. prescan_version||5.011004|
  1817. printbuf|||
  1818. printf_nocontext|||vn
  1819. process_special_blocks|||
  1820. ptr_table_clear||5.009005|
  1821. ptr_table_fetch||5.009005|
  1822. ptr_table_find|||n
  1823. ptr_table_free||5.009005|
  1824. ptr_table_new||5.009005|
  1825. ptr_table_split||5.009005|
  1826. ptr_table_store||5.009005|
  1827. push_scope|||
  1828. put_byte|||
  1829. pv_display|5.006000||p
  1830. pv_escape|5.009004||p
  1831. pv_pretty|5.009004||p
  1832. pv_uni_display||5.007003|
  1833. qerror|||
  1834. qsortsvu|||
  1835. re_compile||5.009005|
  1836. re_croak2|||
  1837. re_dup_guts|||
  1838. re_intuit_start||5.009005|
  1839. re_intuit_string||5.006000|
  1840. readpipe_override|||
  1841. realloc||5.007002|n
  1842. reentrant_free|||
  1843. reentrant_init|||
  1844. reentrant_retry|||vn
  1845. reentrant_size|||
  1846. ref_array_or_hash|||
  1847. refcounted_he_chain_2hv|||
  1848. refcounted_he_fetch|||
  1849. refcounted_he_free|||
  1850. refcounted_he_new_common|||
  1851. refcounted_he_new|||
  1852. refcounted_he_value|||
  1853. refkids|||
  1854. refto|||
  1855. ref||5.011005|
  1856. reg_check_named_buff_matched|||
  1857. reg_named_buff_all||5.009005|
  1858. reg_named_buff_exists||5.009005|
  1859. reg_named_buff_fetch||5.009005|
  1860. reg_named_buff_firstkey||5.009005|
  1861. reg_named_buff_iter|||
  1862. reg_named_buff_nextkey||5.009005|
  1863. reg_named_buff_scalar||5.009005|
  1864. reg_named_buff|||
  1865. reg_namedseq|||
  1866. reg_node|||
  1867. reg_numbered_buff_fetch|||
  1868. reg_numbered_buff_length|||
  1869. reg_numbered_buff_store|||
  1870. reg_qr_package|||
  1871. reg_recode|||
  1872. reg_scan_name|||
  1873. reg_skipcomment|||
  1874. reg_temp_copy|||
  1875. reganode|||
  1876. regatom|||
  1877. regbranch|||
  1878. regclass_swash||5.009004|
  1879. regclass|||
  1880. regcppop|||
  1881. regcppush|||
  1882. regcurly|||n
  1883. regdump_extflags|||
  1884. regdump||5.005000|
  1885. regdupe_internal|||
  1886. regexec_flags||5.005000|
  1887. regfree_internal||5.009005|
  1888. reghop3|||n
  1889. reghop4|||n
  1890. reghopmaybe3|||n
  1891. reginclass|||
  1892. reginitcolors||5.006000|
  1893. reginsert|||
  1894. regmatch|||
  1895. regnext||5.005000|
  1896. regpiece|||
  1897. regpposixcc|||
  1898. regprop|||
  1899. regrepeat|||
  1900. regtail_study|||
  1901. regtail|||
  1902. regtry|||
  1903. reguni|||
  1904. regwhite|||n
  1905. reg|||
  1906. repeatcpy|||n
  1907. report_evil_fh|||
  1908. report_uninit|||
  1909. require_pv||5.006000|
  1910. require_tie_mod|||
  1911. restore_magic|||
  1912. rninstr|||n
  1913. rsignal_restore|||
  1914. rsignal_save|||
  1915. rsignal_state||5.004000|
  1916. rsignal||5.004000|
  1917. run_body|||
  1918. run_user_filter|||
  1919. runops_debug||5.005000|
  1920. runops_standard||5.005000|
  1921. rvpv_dup|||
  1922. rxres_free|||
  1923. rxres_restore|||
  1924. rxres_save|||
  1925. safesyscalloc||5.006000|n
  1926. safesysfree||5.006000|n
  1927. safesysmalloc||5.006000|n
  1928. safesysrealloc||5.006000|n
  1929. same_dirent|||
  1930. save_I16||5.004000|
  1931. save_I32|||
  1932. save_I8||5.006000|
  1933. save_adelete||5.011000|
  1934. save_aelem_flags||5.011000|
  1935. save_aelem||5.004050|
  1936. save_alloc||5.006000|
  1937. save_aptr|||
  1938. save_ary|||
  1939. save_bool||5.008001|
  1940. save_clearsv|||
  1941. save_delete|||
  1942. save_destructor_x||5.006000|
  1943. save_destructor||5.006000|
  1944. save_freeop|||
  1945. save_freepv|||
  1946. save_freesv|||
  1947. save_generic_pvref||5.006001|
  1948. save_generic_svref||5.005030|
  1949. save_gp||5.004000|
  1950. save_hash|||
  1951. save_hdelete||5.011000|
  1952. save_hek_flags|||n
  1953. save_helem_flags||5.011000|
  1954. save_helem||5.004050|
  1955. save_hints|||
  1956. save_hptr|||
  1957. save_int|||
  1958. save_item|||
  1959. save_iv||5.005000|
  1960. save_lines|||
  1961. save_list|||
  1962. save_long|||
  1963. save_magic|||
  1964. save_mortalizesv||5.007001|
  1965. save_nogv|||
  1966. save_op|||
  1967. save_padsv_and_mortalize||5.010001|
  1968. save_pptr|||
  1969. save_pushi32ptr|||
  1970. save_pushptri32ptr|||
  1971. save_pushptrptr|||
  1972. save_pushptr||5.010001|
  1973. save_re_context||5.006000|
  1974. save_scalar_at|||
  1975. save_scalar|||
  1976. save_set_svflags||5.009000|
  1977. save_shared_pvref||5.007003|
  1978. save_sptr|||
  1979. save_svref|||
  1980. save_vptr||5.006000|
  1981. savepvn|||
  1982. savepvs||5.009003|
  1983. savepv|||
  1984. savesharedpvn||5.009005|
  1985. savesharedpv||5.007003|
  1986. savestack_grow_cnt||5.008001|
  1987. savestack_grow|||
  1988. savesvpv||5.009002|
  1989. sawparens|||
  1990. scalar_mod_type|||n
  1991. scalarboolean|||
  1992. scalarkids|||
  1993. scalarseq|||
  1994. scalarvoid|||
  1995. scalar|||
  1996. scan_bin||5.006000|
  1997. scan_commit|||
  1998. scan_const|||
  1999. scan_formline|||
  2000. scan_heredoc|||
  2001. scan_hex|||
  2002. scan_ident|||
  2003. scan_inputsymbol|||
  2004. scan_num||5.007001|
  2005. scan_oct|||
  2006. scan_pat|||
  2007. scan_str|||
  2008. scan_subst|||
  2009. scan_trans|||
  2010. scan_version||5.009001|
  2011. scan_vstring||5.009005|
  2012. scan_word|||
  2013. scope|||
  2014. screaminstr||5.005000|
  2015. search_const|||
  2016. seed||5.008001|
  2017. sequence_num|||
  2018. sequence_tail|||
  2019. sequence|||
  2020. set_context||5.006000|n
  2021. set_numeric_local||5.006000|
  2022. set_numeric_radix||5.006000|
  2023. set_numeric_standard||5.006000|
  2024. setdefout|||
  2025. share_hek_flags|||
  2026. share_hek||5.004000|
  2027. si_dup|||
  2028. sighandler|||n
  2029. simplify_sort|||
  2030. skipspace0|||
  2031. skipspace1|||
  2032. skipspace2|||
  2033. skipspace|||
  2034. softref2xv|||
  2035. sortcv_stacked|||
  2036. sortcv_xsub|||
  2037. sortcv|||
  2038. sortsv_flags||5.009003|
  2039. sortsv||5.007003|
  2040. space_join_names_mortal|||
  2041. ss_dup|||
  2042. stack_grow|||
  2043. start_force|||
  2044. start_glob|||
  2045. start_subparse||5.004000|
  2046. stashpv_hvname_match||5.011005|
  2047. stdize_locale|||
  2048. store_cop_label|||
  2049. strEQ|||
  2050. strGE|||
  2051. strGT|||
  2052. strLE|||
  2053. strLT|||
  2054. strNE|||
  2055. str_to_version||5.006000|
  2056. strip_return|||
  2057. strnEQ|||
  2058. strnNE|||
  2059. study_chunk|||
  2060. sub_crush_depth|||
  2061. sublex_done|||
  2062. sublex_push|||
  2063. sublex_start|||
  2064. sv_2bool|||
  2065. sv_2cv|||
  2066. sv_2io|||
  2067. sv_2iuv_common|||
  2068. sv_2iuv_non_preserve|||
  2069. sv_2iv_flags||5.009001|
  2070. sv_2iv|||
  2071. sv_2mortal|||
  2072. sv_2num|||
  2073. sv_2nv|||
  2074. sv_2pv_flags|5.007002||p
  2075. sv_2pv_nolen|5.006000||p
  2076. sv_2pvbyte_nolen|5.006000||p
  2077. sv_2pvbyte|5.006000||p
  2078. sv_2pvutf8_nolen||5.006000|
  2079. sv_2pvutf8||5.006000|
  2080. sv_2pv|||
  2081. sv_2uv_flags||5.009001|
  2082. sv_2uv|5.004000||p
  2083. sv_add_arena|||
  2084. sv_add_backref|||
  2085. sv_backoff|||
  2086. sv_bless|||
  2087. sv_cat_decode||5.008001|
  2088. sv_catpv_mg|5.004050||p
  2089. sv_catpvf_mg_nocontext|||pvn
  2090. sv_catpvf_mg|5.006000|5.004000|pv
  2091. sv_catpvf_nocontext|||vn
  2092. sv_catpvf||5.004000|v
  2093. sv_catpvn_flags||5.007002|
  2094. sv_catpvn_mg|5.004050||p
  2095. sv_catpvn_nomg|5.007002||p
  2096. sv_catpvn|||
  2097. sv_catpvs|5.009003||p
  2098. sv_catpv|||
  2099. sv_catsv_flags||5.007002|
  2100. sv_catsv_mg|5.004050||p
  2101. sv_catsv_nomg|5.007002||p
  2102. sv_catsv|||
  2103. sv_catxmlpvn|||
  2104. sv_catxmlsv|||
  2105. sv_chop|||
  2106. sv_clean_all|||
  2107. sv_clean_objs|||
  2108. sv_clear|||
  2109. sv_cmp_locale||5.004000|
  2110. sv_cmp|||
  2111. sv_collxfrm|||
  2112. sv_compile_2op||5.008001|
  2113. sv_copypv||5.007003|
  2114. sv_dec|||
  2115. sv_del_backref|||
  2116. sv_derived_from||5.004000|
  2117. sv_destroyable||5.010000|
  2118. sv_does||5.009004|
  2119. sv_dump|||
  2120. sv_dup_inc_multiple|||
  2121. sv_dup|||
  2122. sv_eq|||
  2123. sv_exp_grow|||
  2124. sv_force_normal_flags||5.007001|
  2125. sv_force_normal||5.006000|
  2126. sv_free2|||
  2127. sv_free_arenas|||
  2128. sv_free|||
  2129. sv_gets||5.004000|
  2130. sv_grow|||
  2131. sv_i_ncmp|||
  2132. sv_inc|||
  2133. sv_insert_flags||5.010001|
  2134. sv_insert|||
  2135. sv_isa|||
  2136. sv_isobject|||
  2137. sv_iv||5.005000|
  2138. sv_kill_backrefs|||
  2139. sv_len_utf8||5.006000|
  2140. sv_len|||
  2141. sv_magic_portable|5.011005|5.004000|p
  2142. sv_magicext||5.007003|
  2143. sv_magic|||
  2144. sv_mortalcopy|||
  2145. sv_ncmp|||
  2146. sv_newmortal|||
  2147. sv_newref|||
  2148. sv_nolocking||5.007003|
  2149. sv_nosharing||5.007003|
  2150. sv_nounlocking|||
  2151. sv_nv||5.005000|
  2152. sv_peek||5.005000|
  2153. sv_pos_b2u_midway|||
  2154. sv_pos_b2u||5.006000|
  2155. sv_pos_u2b_cached|||
  2156. sv_pos_u2b_flags||5.011005|
  2157. sv_pos_u2b_forwards|||n
  2158. sv_pos_u2b_midway|||n
  2159. sv_pos_u2b||5.006000|
  2160. sv_pvbyten_force||5.006000|
  2161. sv_pvbyten||5.006000|
  2162. sv_pvbyte||5.006000|
  2163. sv_pvn_force_flags|5.007002||p
  2164. sv_pvn_force|||
  2165. sv_pvn_nomg|5.007003|5.005000|p
  2166. sv_pvn||5.005000|
  2167. sv_pvutf8n_force||5.006000|
  2168. sv_pvutf8n||5.006000|
  2169. sv_pvutf8||5.006000|
  2170. sv_pv||5.006000|
  2171. sv_recode_to_utf8||5.007003|
  2172. sv_reftype|||
  2173. sv_release_COW|||
  2174. sv_replace|||
  2175. sv_report_used|||
  2176. sv_reset|||
  2177. sv_rvweaken||5.00…