PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: zend_bitset.h Size: 4.79 KB
//opt/cpanel/ea-php70/root/usr/include/php/Zend/zend_bitset.h

/*
   +----------------------------------------------------------------------+
   | Zend OPcache JIT                                                     |
   +----------------------------------------------------------------------+
   | Copyright (c) 1998-2014 The PHP Group                                |
   +----------------------------------------------------------------------+
   | This source file is subject to version 3.01 of the PHP license,      |
   | that is bundled with this package in the file LICENSE, and is        |
   | available through the world-wide-web at the following url:           |
   | http://www.php.net/license/3_01.txt                                  |
   | If you did not receive a copy of the PHP license and are unable to   |
   | obtain it through the world-wide-web, please send a note to          |
   | license@php.net so we can mail you a copy immediately.               |
   +----------------------------------------------------------------------+
   | Authors: Dmitry Stogov <dmitry@zend.com>                             |
   +----------------------------------------------------------------------+
*/

/* $Id:$ */

#ifndef _ZEND_BITSET_H_
#define _ZEND_BITSET_H_

typedef zend_ulong *zend_bitset;

#define ZEND_BITSET_ELM_SIZE sizeof(zend_ulong)

#if SIZEOF_ZEND_LONG == 4
# define ZEND_BITSET_ELM_NUM(n)		((n) >> 5)
# define ZEND_BITSET_BIT_NUM(n)		((zend_ulong)(n) & Z_UL(0x1f))
#elif SIZEOF_ZEND_LONG == 8
# define ZEND_BITSET_ELM_NUM(n)		((n) >> 6)
# define ZEND_BITSET_BIT_NUM(n)		((zend_ulong)(n) & Z_UL(0x3f))
#else
# define ZEND_BITSET_ELM_NUM(n)		((n) / (sizeof(zend_long) * 8))
# define ZEND_BITSET_BIT_NUM(n)		((n) % (sizeof(zend_long) * 8))
#endif

/* Returns the number of zend_ulong words needed to store a bitset that is N
   bits long.  */
static inline uint32_t zend_bitset_len(uint32_t n)
{
	return (n + ((sizeof(zend_long) * 8) - 1)) / (sizeof(zend_long) * 8);
}

#define ZEND_BITSET_ALLOCA(n, use_heap) \
	(zend_bitset)do_alloca((n) * ZEND_BITSET_ELM_SIZE, use_heap)

static inline zend_bool zend_bitset_in(zend_bitset set, uint32_t n)
{
	return (set[ZEND_BITSET_ELM_NUM(n)] & (Z_UL(1) << ZEND_BITSET_BIT_NUM(n))) != Z_UL(0);
}

static inline void zend_bitset_incl(zend_bitset set, uint32_t n)
{
	set[ZEND_BITSET_ELM_NUM(n)] |= Z_UL(1) << ZEND_BITSET_BIT_NUM(n);
}

static inline void zend_bitset_excl(zend_bitset set, uint32_t n)
{
	set[ZEND_BITSET_ELM_NUM(n)] &= ~(Z_UL(1) << ZEND_BITSET_BIT_NUM(n));
}

static inline void zend_bitset_clear(zend_bitset set, uint32_t len)
{
	memset(set, 0, len * ZEND_BITSET_ELM_SIZE);
}

static inline int zend_bitset_empty(zend_bitset set, uint32_t len)
{
	uint32_t i;
	for (i = 0; i < len; i++) {
		if (set[i]) {
			return 0;
		}
	}
	return 1;
}

static inline void zend_bitset_fill(zend_bitset set, uint32_t len)
{
	memset(set, 0xff, len * ZEND_BITSET_ELM_SIZE);
}

static inline zend_bool zend_bitset_equal(zend_bitset set1, zend_bitset set2, uint32_t len)
{
    return memcmp(set1, set2, len * ZEND_BITSET_ELM_SIZE) == 0;
}

static inline void zend_bitset_copy(zend_bitset set1, zend_bitset set2, uint32_t len)
{
    memcpy(set1, set2, len * ZEND_BITSET_ELM_SIZE);
}

static inline void zend_bitset_intersection(zend_bitset set1, zend_bitset set2, uint32_t len)
{
    uint32_t i;

    for (i = 0; i < len; i++) {
		set1[i] &= set2[i];
	}
}

static inline void zend_bitset_union(zend_bitset set1, zend_bitset set2, uint32_t len)
{
	uint32_t i;

	for (i = 0; i < len; i++) {
		set1[i] |= set2[i];
	}
}

static inline void zend_bitset_difference(zend_bitset set1, zend_bitset set2, uint32_t len)
{
	uint32_t i;

	for (i = 0; i < len; i++) {
		set1[i] = set1[i] & ~set2[i];
	}
}

static inline void zend_bitset_union_with_intersection(zend_bitset set1, zend_bitset set2, zend_bitset set3, zend_bitset set4, uint32_t len)
{
	uint32_t i;

	for (i = 0; i < len; i++) {
		set1[i] = set2[i] | (set3[i] & set4[i]);
	}
}

static inline void zend_bitset_union_with_difference(zend_bitset set1, zend_bitset set2, zend_bitset set3, zend_bitset set4, uint32_t len)
{
	uint32_t i;

	for (i = 0; i < len; i++) {
		set1[i] = set2[i] | (set3[i] & ~set4[i]);
	}
}

static inline int zend_bitset_first(zend_bitset set, uint32_t len)
{
	uint32_t i;

	for (i = 0; i < len; i++) {
		if (set[i]) {
			int j = ZEND_BITSET_ELM_SIZE * 8 * i;
			zend_ulong x = set[i];
			while ((x & Z_UL(1)) == 0) {
				x = x >> Z_UL(1);
				j++;
			}
			return j;
		}
	}
	return -1; /* empty set */
}

static inline int zend_bitset_last(zend_bitset set, uint32_t len)
{
	uint32_t i = len;

	while (i > 0) {
		i--;
		if (set[i]) {
			int j = ZEND_BITSET_ELM_SIZE * 8 * i - 1;
			zend_ulong x = set[i];
			while (x != Z_UL(0)) {
				x = x >> Z_UL(1);
				j++;
			}
			return j;
		}
	}
	return -1; /* empty set */
}

#endif /* _ZEND_BITSET_H_ */

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * indent-tabs-mode: t
 * End:
 */

Directory Contents

Dirs: 0 × Files: 67

Name Size Perms Modified Actions
12.49 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
18.72 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
2.57 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
54.41 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.65 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
7.92 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.79 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.59 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.58 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.96 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
32.01 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
107 B lrw-r--r-- 2026-01-08 21:03:24
Edit Download
2.44 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
5.79 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.91 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
2.11 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.68 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
13.86 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
5.21 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
15.19 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.77 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
7.19 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
6.92 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.14 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
31.41 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
2.32 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.91 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
9.40 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
2.69 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
1.93 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
224 B lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.22 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.61 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.50 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
7.96 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
2.68 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
296 B lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.17 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.81 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.03 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.78 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.83 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
8.27 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.83 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.54 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
9.06 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
27.88 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
13.38 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.22 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.02 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
3.92 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
4.41 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.25 KB lrw-r--r-- 2026-01-08 21:03:23
Edit Download
1.70 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
2.41 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
3.23 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
12.25 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
1.82 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
3.42 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
6.50 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
30.54 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
5.80 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
11.87 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
1.45 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
231.79 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
1.53 MB lrw-r--r-- 2026-01-08 21:03:24
Edit Download
9.63 KB lrw-r--r-- 2026-01-08 21:03:24
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI