Home
last modified time | relevance | path

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

12345

/php-src/ext/random/tests/03_randomizer/methods/
H A DgetBytes_expansion.phpt33 // 4-5: "abcdefghABC" - Returned values are truncated to 64-bits for technical reasons, thus droppi…
/php-src/ext/pdo_sqlite/tests/
H A Dbug_63916-2.phpt11 $num = PHP_INT_MAX; // 32 bits
H A Dbug_63916.phpt11 $num = 100004313234244; // exceeds 32 bits
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_uuencode.c239 static unsigned char uuencode_six_bits(unsigned int bits) in uuencode_six_bits() argument
241 if (bits == 0) { in uuencode_six_bits()
244 return bits + 32; in uuencode_six_bits()
H A Dmbfilter_utf7imap.c683 uint64_t bits; in mb_wchar_to_utf7imap() local
688 bits = ((uint64_t)cache << 32) | 0xD800DC00L | ((w & 0xFFC00) << 6) | (w & 0x3FF); in mb_wchar_to_utf7imap()
692 bits = (cache << 16) | w; in mb_wchar_to_utf7imap()
697 out = mb_convert_buf_add(out, mbfl_base64_table[(bits >> (nbits - 6)) & 0x3F]); in mb_wchar_to_utf7imap()
700 cache = bits; in mb_wchar_to_utf7imap()
H A Dmbfilter_utf7.c671 uint64_t bits; in mb_wchar_to_utf7() local
676 bits = ((uint64_t)cache << 32) | 0xD800DC00L | ((w & 0xFFC00) << 6) | (w & 0x3FF); in mb_wchar_to_utf7()
680 bits = (cache << 16) | w; in mb_wchar_to_utf7()
685 out = mb_convert_buf_add(out, mbfl_base64_table[(bits >> (nbits - 6)) & 0x3F]); in mb_wchar_to_utf7()
688 cache = bits; in mb_wchar_to_utf7()
/php-src/ext/sqlite3/tests/
H A Dbug63921-32bit.phpt11 $num = PHP_INT_MAX; // 32 bits
H A Dbug63921-64bit.phpt11 $num = 100004313234244; // notice this exceeds 32 bits
/php-src/ext/standard/tests/image/
H A Dbug75708.phpt53 ["bits"]=>
/php-src/ext/dom/lexbor/patches/
H A D0001-Patch-utilities-and-data-structure-to-be-able-to-gen.patch7 Changed the generation script to check if everything fits in 32-bits.
8 And change the actual field types to 32-bits. This decreases the hash
/php-src/ext/date/tests/
H A Dgmdate_variation12_64bits.phpt2 Test gmdate() function : usage variation - Valid and invalid range of timestamp 64 bits.
H A Dgmdate_variation12.phpt2 Test gmdate() function : usage variation - Valid and invalid range of timestamp 32 bits.
/php-src/ext/standard/tests/general_functions/
H A Dphpinfo.phpt32 PHP Integer Size => %d bits
/php-src/ext/hash/sha3/generic64lc/
H A DKeccakSponge.inc85 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
88 /* Last few bits, whose delimiter coincides with first bit of padding */
225 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
228 /* Last few bits, whose delimiter coincides with first bit of padding */
/php-src/ext/hash/sha3/generic32lc/
H A DKeccakSponge.inc85 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
88 /* Last few bits, whose delimiter coincides with first bit of padding */
225 … displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
228 /* Last few bits, whose delimiter coincides with first bit of padding */
/php-src/Zend/
H A Dzend_portability.h452 #define ZEND_BIT_TEST(bits, bit) \ argument
453 (((bits)[(bit) / (sizeof((bits)[0])*8)] >> ((bit) & (sizeof((bits)[0])*8-1))) & 1)
/php-src/ext/hash/
H A Dhash_md.c247 unsigned char bits[8]; in PHP_MD4Final() local
251 Encode(bits, context->count, 8); in PHP_MD4Final()
260 PHP_MD4Update(context, bits, 8); in PHP_MD4Final()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.lua858 local function parse_imm(imm, bits, shift, scale, signed, action)
864 local s = sar(m, bits-1)
866 elseif s == -1 then return shl(m + shl(1, bits), shift) end
868 if sar(m, bits) == 0 then return shl(m, shift) end
877 (signed and 32768 or 0)+shl(scale, 10)+shl(bits, 5)+shift, imm)
/php-src/ext/session/
H A Dmod_files.bat13 ECHO ^[hash_bits^] is the number of bits defined in session.hash_bits_per_character
/php-src/Zend/tests/
H A Dbug55509.phpt6 die('skip Not for 32-bits OS');
/php-src/docs-old/
H A Doutput-api.md112 remove the CLEANABLE and REMOVABLE bits when the first output has passed through it;
134 Many bits of the manual (and very first implementation) do not comply with the
/php-src/ext/sockets/tests/
H A Dsocket_sendrecvmsg_multi_msg-unix.phpt14 * WSARecvMsg (though only the top 6 bits seem to reported), but WSASendMsg
H A Dsocket_sendrecvmsg_multi_msg.phpt12 * WSARecvMsg (though only the top 6 bits seem to reported), but WSASendMsg
/php-src/ext/openssl/tests/
H A Dstream_security_level.phpt14 // Security level 2 refuses certs signed by keys with length of less than 2048 bits
/php-src/ext/standard/tests/strings/
H A Dstrncasecmp_variation6.phpt17 var_dump( strncasecmp($str1, $str2, 8) ); //comparing all the 8-bits; expected: int(0)
18 var_dump( strncasecmp($str1, $str2, 4) ); //comparing only 4-bits; expected: int(0)
25 var_dump( strncasecmp($str1, $str2, 8) ); //comparing all the 8-bits; expected: int(1)

Completed in 94 milliseconds

12345