Home
last modified time | relevance | path

Searched refs:bits (Results 101 – 108 of 108) sorted by relevance

12345

/php-src/build/
H A Dconfig.guess718 long bits = sysconf(_SC_KERNEL_BITS);
728 switch (bits)
/php-src/
H A Dphp.ini-development1459 ; Define how many bits are stored in each character when converting
1462 ; 4 (4 bits: 0-9, a-f)
1463 ; 5 (5 bits: 0-9, a-v)
1464 ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
1468 ; https://php.net/session.hash-bits-per-character
H A Dphp.ini-production1461 ; Define how many bits are stored in each character when converting
1464 ; 4 (4 bits: 0-9, a-f)
1465 ; 5 (5 bits: 0-9, a-v)
1466 ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
1470 ; https://php.net/session.hash-bits-per-character
/php-src/ext/mbstring/tests/
H A Dcp5022x_encoding.phpt17 * Shift-JIS is fun! The first byte only represents the top 7 bits of
H A Dutf_encodings.phpt1092 // (which decodes to only zero bits)
1098 $encoded = encode("\x12\x34", 'UTF-16BE'); // 3 Base64 bytes, 2 bits of padding...
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeS390X.c392 sljit_uw bits[4]; in have_facility_dynamic() member
402 if (SLJIT_UNLIKELY(cpu_features.bits[0] == 0)) { in have_facility_dynamic()
410 SLJIT_ASSERT(cpu_features.bits[0] != 0); in have_facility_dynamic()
412 return (cpu_features.bits[word_index] & bit_index) != 0; in have_facility_dynamic()
H A DsljitNativeARM_T2_32.c68 #define COPY_BITS(src, from, to, bits) \ argument
69 …((sljit_ins)(src) >> (from - to)) : ((sljit_ins)(src) << (to - from))) & (((1 << bits) - 1) << to))
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c6569 static BOOL optimize_class(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert,…
6934 static BOOL optimize_class_ranges(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL … in optimize_class_ranges() argument
6942 bit = bits[0] & 0x1; in optimize_class_ranges()
6949 if ((i & 0x7) == 0 && bits[byte] == all) in optimize_class_ranges()
6953 cbit = (bits[byte] >> (i & 0x7)) & 0x1; in optimize_class_ranges()
6978 bit = bits[0] & 0x1; in optimize_class_ranges()
7086 static BOOL optimize_class_chars(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL i… in optimize_class_chars() argument
7102 byte = bits[i]; in optimize_class_chars()
7187 static BOOL optimize_class(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert,… in optimize_class() argument
7190 if (optimize_class_ranges(common, bits, nclass, invert, backtracks)) in optimize_class()
[all …]

Completed in 76 milliseconds

12345