GRAYBYTE WORDPRESS FILE MANAGER6455

Server IP : 68.65.123.43 / Your IP : 216.73.216.162
System : Linux server266.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/lib64/perl5/CORE/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/lib64/perl5/CORE//warnings.h
/* -*- buffer-read-only: t -*-
   !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
   This file is built by regen/warnings.pl.
   Any changes made here will be lost!
 */


#define Off(x)			((x) / 8)
#define Bit(x)			(1 << ((x) % 8))
#define IsSet(a, x)		((a)[Off(x)] & Bit(x))


#define G_WARN_OFF		0 	/* $^W == 0 */
#define G_WARN_ON		1	/* -w flag and $^W != 0 */
#define G_WARN_ALL_ON		2	/* -W flag */
#define G_WARN_ALL_OFF		4	/* -X flag */
#define G_WARN_ONCE		8	/* set if 'once' ever enabled */
#define G_WARN_ALL_MASK		(G_WARN_ALL_ON|G_WARN_ALL_OFF)

#define pWARN_STD		NULL
#define pWARN_ALL		(((STRLEN*)0)+1)    /* use warnings 'all' */
#define pWARN_NONE		(((STRLEN*)0)+2)    /* no  warnings 'all' */

#define specialWARN(x)		((x) == pWARN_STD || (x) == pWARN_ALL ||	\
				 (x) == pWARN_NONE)

/* if PL_warnhook is set to this value, then warnings die */
#define PERL_WARNHOOK_FATAL	(&PL_sv_placeholder)

/* Warnings Categories added in Perl 5.008 */

#define WARN_ALL			 0
#define WARN_CLOSURE			 1
#define WARN_DEPRECATED			 2
#define WARN_EXITING			 3
#define WARN_GLOB			 4
#define WARN_IO				 5
#define WARN_CLOSED			 6
#define WARN_EXEC			 7
#define WARN_LAYER			 8
#define WARN_NEWLINE			 9
#define WARN_PIPE			 10
#define WARN_UNOPENED			 11
#define WARN_MISC			 12
#define WARN_NUMERIC			 13
#define WARN_ONCE			 14
#define WARN_OVERFLOW			 15
#define WARN_PACK			 16
#define WARN_PORTABLE			 17
#define WARN_RECURSION			 18
#define WARN_REDEFINE			 19
#define WARN_REGEXP			 20
#define WARN_SEVERE			 21
#define WARN_DEBUGGING			 22
#define WARN_INPLACE			 23
#define WARN_INTERNAL			 24
#define WARN_MALLOC			 25
#define WARN_SIGNAL			 26
#define WARN_SUBSTR			 27
#define WARN_SYNTAX			 28
#define WARN_AMBIGUOUS			 29
#define WARN_BAREWORD			 30
#define WARN_DIGIT			 31
#define WARN_PARENTHESIS		 32
#define WARN_PRECEDENCE			 33
#define WARN_PRINTF			 34
#define WARN_PROTOTYPE			 35
#define WARN_QW				 36
#define WARN_RESERVED			 37
#define WARN_SEMICOLON			 38
#define WARN_TAINT			 39
#define WARN_THREADS			 40
#define WARN_UNINITIALIZED		 41
#define WARN_UNPACK			 42
#define WARN_UNTIE			 43
#define WARN_UTF8			 44
#define WARN_VOID			 45

/* Warnings Categories added in Perl 5.011 */

#define WARN_IMPRECISION		 46
#define WARN_ILLEGALPROTO		 47

/* Warnings Categories added in Perl 5.013 */

#define WARN_NON_UNICODE		 48
#define WARN_NONCHAR			 49
#define WARN_SURROGATE			 50

/* Warnings Categories added in Perl 5.017 */

#define WARN_EXPERIMENTAL		 51
#define WARN_EXPERIMENTAL__LEXICAL_SUBS	 52
#define WARN_EXPERIMENTAL__REGEX_SETS	 53
#define WARN_EXPERIMENTAL__SMARTMATCH	 54

/* Warnings Categories added in Perl 5.019 */

#define WARN_EXPERIMENTAL__POSTDEREF	 55
#define WARN_EXPERIMENTAL__SIGNATURES	 56
#define WARN_SYSCALLS			 57

/* Warnings Categories added in Perl 5.021 */

#define WARN_EXPERIMENTAL__BITWISE	 58
#define WARN_EXPERIMENTAL__CONST_ATTR	 59
#define WARN_EXPERIMENTAL__RE_STRICT	 60
#define WARN_EXPERIMENTAL__REFALIASING	 61
#define WARN_EXPERIMENTAL__WIN32_PERLIO	 62
#define WARN_LOCALE			 63
#define WARN_MISSING			 64
#define WARN_REDUNDANT			 65

/* Warnings Categories added in Perl 5.025 */

#define WARN_EXPERIMENTAL__DECLARED_REFS 66

#define WARNsize			 17
#define WARN_ALLstring			 "\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125"
#define WARN_NONEstring			 "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"

#define isLEXWARN_on \
	cBOOL(PL_curcop && PL_curcop->cop_warnings != pWARN_STD)
#define isLEXWARN_off \
	cBOOL(!PL_curcop || PL_curcop->cop_warnings == pWARN_STD)
#define isWARN_ONCE	(PL_dowarn & (G_WARN_ON|G_WARN_ONCE))
#define isWARN_on(c,x)	(IsSet((U8 *)(c + 1), 2*(x)))
#define isWARNf_on(c,x)	(IsSet((U8 *)(c + 1), 2*(x)+1))

#define DUP_WARNINGS(p)		\
    (specialWARN(p) ? (STRLEN*)(p)	\
    : (STRLEN*)CopyD(p, PerlMemShared_malloc(sizeof(*p)+*p), sizeof(*p)+*p, \
		     			     char))

/*

=head1 Warning and Dieing

=for apidoc Am|bool|ckWARN|U32 w

Returns a boolean as to whether or not warnings are enabled for the warning
category C<w>.  If the category is by default enabled even if not within the
scope of S<C<use warnings>>, instead use the L</ckWARN_d> macro.

=for apidoc Am|bool|ckWARN_d|U32 w

Like C<L</ckWARN>>, but for use if and only if the warning category is by
default enabled even if not within the scope of S<C<use warnings>>.

=for apidoc Am|bool|ckWARN2|U32 w1|U32 w2

Like C<L</ckWARN>>, but takes two warnings categories as input, and returns
TRUE if either is enabled.  If either category is by default enabled even if
not within the scope of S<C<use warnings>>, instead use the L</ckWARN2_d>
macro.  The categories must be completely independent, one may not be
subclassed from the other.

=for apidoc Am|bool|ckWARN2_d|U32 w1|U32 w2

Like C<L</ckWARN2>>, but for use if and only if either warning category is by
default enabled even if not within the scope of S<C<use warnings>>.

=for apidoc Am|bool|ckWARN3|U32 w1|U32 w2|U32 w3

Like C<L</ckWARN2>>, but takes three warnings categories as input, and returns
TRUE if any is enabled.  If any of the categories is by default enabled even
if not within the scope of S<C<use warnings>>, instead use the L</ckWARN3_d>
macro.  The categories must be completely independent, one may not be
subclassed from any other.

=for apidoc Am|bool|ckWARN3_d|U32 w1|U32 w2|U32 w3

Like C<L</ckWARN3>>, but for use if and only if any of the warning categories
is by default enabled even if not within the scope of S<C<use warnings>>.

=for apidoc Am|bool|ckWARN4|U32 w1|U32 w2|U32 w3|U32 w4

Like C<L</ckWARN3>>, but takes four warnings categories as input, and returns
TRUE if any is enabled.  If any of the categories is by default enabled even
if not within the scope of S<C<use warnings>>, instead use the L</ckWARN4_d>
macro.  The categories must be completely independent, one may not be
subclassed from any other.

=for apidoc Am|bool|ckWARN4_d|U32 w1|U32 w2|U32 w3|U32 w4

Like C<L</ckWARN4>>, but for use if and only if any of the warning categories
is by default enabled even if not within the scope of S<C<use warnings>>.

=cut

*/

#define ckWARN(w)		Perl_ckwarn(aTHX_ packWARN(w))

/* The w1, w2 ... should be independent warnings categories; one shouldn't be
 * a subcategory of any other */

#define ckWARN2(w1,w2)		Perl_ckwarn(aTHX_ packWARN2(w1,w2))
#define ckWARN3(w1,w2,w3)	Perl_ckwarn(aTHX_ packWARN3(w1,w2,w3))
#define ckWARN4(w1,w2,w3,w4)	Perl_ckwarn(aTHX_ packWARN4(w1,w2,w3,w4))

#define ckWARN_d(w)		Perl_ckwarn_d(aTHX_ packWARN(w))
#define ckWARN2_d(w1,w2)	Perl_ckwarn_d(aTHX_ packWARN2(w1,w2))
#define ckWARN3_d(w1,w2,w3)	Perl_ckwarn_d(aTHX_ packWARN3(w1,w2,w3))
#define ckWARN4_d(w1,w2,w3,w4)	Perl_ckwarn_d(aTHX_ packWARN4(w1,w2,w3,w4))

#define WARNshift		8

#define packWARN(a)		(a                                      )

/* The a, b, ... should be independent warnings categories; one shouldn't be
 * a subcategory of any other */

#define packWARN2(a,b)		((a) | ((b)<<8)                         )
#define packWARN3(a,b,c)	((a) | ((b)<<8) | ((c)<<16)             )
#define packWARN4(a,b,c,d)	((a) | ((b)<<8) | ((c)<<16) | ((d) <<24))

#define unpackWARN1(x)		((x)        & 0xFF)
#define unpackWARN2(x)		(((x) >>8)  & 0xFF)
#define unpackWARN3(x)		(((x) >>16) & 0xFF)
#define unpackWARN4(x)		(((x) >>24) & 0xFF)

#define ckDEAD(x)							\
	   (PL_curcop &&                                                \
            !specialWARN(PL_curcop->cop_warnings) &&			\
	    ( isWARNf_on(PL_curcop->cop_warnings, WARN_ALL) || 		\
	      isWARNf_on(PL_curcop->cop_warnings, unpackWARN1(x)) ||	\
	      isWARNf_on(PL_curcop->cop_warnings, unpackWARN2(x)) ||	\
	      isWARNf_on(PL_curcop->cop_warnings, unpackWARN3(x)) ||	\
	      isWARNf_on(PL_curcop->cop_warnings, unpackWARN4(x))))

/* end of file warnings.h */

/* ex: set ro: */

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 20:49:23
root / root
0755
EXTERN.h
1.674 KB
May 18 2023 21:34:54
root / root
0644
INTERN.h
1.241 KB
May 18 2023 21:34:54
root / root
0644
XSUB.h
23.874 KB
May 18 2023 21:34:54
root / root
0644
av.h
3.242 KB
May 18 2023 21:34:54
root / root
0644
bitcount.h
0.83 KB
May 18 2023 21:34:54
root / root
0644
charclass_invlists.h
949.685 KB
May 18 2023 21:34:54
root / root
0644
config.h
163.476 KB
May 18 2023 21:34:54
root / root
0644
cop.h
38.609 KB
May 18 2023 21:34:54
root / root
0644
cv.h
11.76 KB
May 18 2023 21:34:54
root / root
0644
dosish.h
5.372 KB
May 18 2023 21:34:54
root / root
0644
dquote_inline.h
1.8 KB
May 18 2023 21:34:54
root / root
0644
ebcdic_tables.h
29.156 KB
May 18 2023 21:34:54
root / root
0644
embed.h
95.069 KB
May 18 2023 21:34:54
root / root
0644
embedvar.h
18.467 KB
May 18 2023 21:34:54
root / root
0644
fakesdio.h
3.136 KB
May 18 2023 21:34:54
root / root
0644
feature.h
4.8 KB
May 18 2023 21:34:54
root / root
0644
form.h
1.429 KB
May 18 2023 21:34:54
root / root
0644
git_version.h
0.349 KB
May 18 2023 21:34:54
root / root
0644
gv.h
10.46 KB
May 18 2023 21:34:54
root / root
0644
handy.h
120.458 KB
May 18 2023 21:34:54
root / root
0644
hv.h
24.972 KB
May 18 2023 21:34:54
root / root
0644
hv_func.h
13.099 KB
May 18 2023 21:34:54
root / root
0644
inline.h
45.395 KB
May 18 2023 21:34:54
root / root
0644
intrpvar.h
28.786 KB
May 18 2023 21:34:54
root / root
0644
invlist_inline.h
2.686 KB
May 18 2023 21:34:54
root / root
0644
iperlsys.h
47.662 KB
May 18 2023 21:34:54
root / root
0644
keywords.h
6.433 KB
May 18 2023 21:34:54
root / root
0644
l1_char_class_tab.h
123.943 KB
May 18 2023 21:34:54
root / root
0644
libperl.so
2.08 MB
May 18 2023 21:35:10
root / root
0755
malloc_ctl.h
1.477 KB
May 18 2023 21:34:54
root / root
0644
metaconfig.h
0.658 KB
May 18 2023 21:34:54
root / root
0644
mg.h
2.942 KB
May 18 2023 21:34:54
root / root
0644
mg_data.h
4.809 KB
May 18 2023 21:34:54
root / root
0644
mg_raw.h
4.157 KB
May 18 2023 21:34:54
root / root
0644
mg_vtable.h
9.117 KB
May 18 2023 21:34:54
root / root
0644
mydtrace.h
1.653 KB
May 18 2023 21:34:54
root / root
0644
nostdio.h
3.313 KB
May 18 2023 21:34:54
root / root
0644
op.h
35.565 KB
May 18 2023 21:34:54
root / root
0644
op_reg_common.h
5.772 KB
May 18 2023 21:34:54
root / root
0644
opcode.h
89.733 KB
May 18 2023 21:34:54
root / root
0644
opnames.h
8.629 KB
May 18 2023 21:34:54
root / root
0644
overload.h
3.199 KB
May 18 2023 21:34:54
root / root
0644
pad.h
16.842 KB
May 18 2023 21:34:54
root / root
0644
parser.h
6.752 KB
May 18 2023 21:34:54
root / root
0644
patchlevel.h
9.667 KB
May 18 2023 21:34:54
root / root
0644
perl.h
237.536 KB
May 18 2023 21:34:54
root / root
0644
perlapi.h
5.726 KB
May 18 2023 21:34:54
root / root
0644
perldtrace.h
3.224 KB
May 18 2023 21:34:54
root / root
0644
perlio.h
9.242 KB
May 18 2023 21:34:54
root / root
0644
perliol.h
13.438 KB
May 18 2023 21:34:54
root / root
0644
perlsdio.h
0.515 KB
May 18 2023 21:34:54
root / root
0644
perlvars.h
9.463 KB
May 18 2023 21:34:54
root / root
0644
perly.h
4.269 KB
May 18 2023 21:34:54
root / root
0644
pp.h
26.931 KB
May 18 2023 21:34:54
root / root
0644
pp_proto.h
11.803 KB
May 18 2023 21:34:54
root / root
0644
proto.h
240.979 KB
May 18 2023 21:34:54
root / root
0644
reentr.h
76.436 KB
May 18 2023 21:34:54
root / root
0644
regcharclass.h
141.193 KB
May 18 2023 21:34:54
root / root
0644
regcomp.h
46.676 KB
May 18 2023 21:34:54
root / root
0644
regexp.h
33.573 KB
May 18 2023 21:34:54
root / root
0644
regnodes.h
34.994 KB
May 18 2023 21:34:54
root / root
0644
scope.h
11.626 KB
May 18 2023 21:34:54
root / root
0644
sv.h
82.281 KB
May 18 2023 21:34:54
root / root
0644
thread.h
11.731 KB
May 18 2023 21:34:54
root / root
0644
time64.h
1.539 KB
May 18 2023 21:34:54
root / root
0644
time64_config.h
1.982 KB
May 18 2023 21:34:54
root / root
0644
uconfig.h
163.212 KB
May 18 2023 21:34:54
root / root
0644
unicode_constants.h
7.803 KB
May 18 2023 21:34:54
root / root
0644
unixish.h
4.987 KB
May 18 2023 21:34:54
root / root
0644
utf8.h
57.726 KB
May 18 2023 21:34:54
root / root
0644
utfebcdic.h
65.725 KB
May 18 2023 21:34:54
root / root
0644
util.h
9.375 KB
May 18 2023 21:34:54
root / root
0644
uudmap.h
0.883 KB
May 18 2023 21:34:54
root / root
0644
vutil.h
7.292 KB
May 18 2023 21:34:54
root / root
0644
warnings.h
7.633 KB
May 18 2023 21:34:54
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF