Home
last modified time | relevance | path

Searched refs:block (Results 76 – 100 of 126) sorted by relevance

123456

/PHP-7.4/tests/classes/
H A Dinheritance_007.phpt2 Ensure inherited old-style constructor doesn't block other methods
/PHP-7.4/ext/hash/
H A Dhash_md.c352 static void MD5Transform(state, block) in MD5Transform() argument
354 const unsigned char block[64];
358 Decode(x, block, 64);
456 static void MD4Transform(uint32_t state[4], const unsigned char block[64]) in MD4Transform()
460 Decode(x, block, 64); in MD4Transform()
632 static void MD2_Transform(PHP_MD2_CTX *context, const unsigned char *block) in MD2_Transform() argument
637 context->state[16+i] = block[i]; in MD2_Transform()
651 t = context->checksum[i] ^= MD2_S[block[i] ^ t]; in MD2_Transform()
H A Dhash_haval.c142 static void PHP_3HAVALTransform(uint32_t state[8], const unsigned char block[128]) in PHP_3HAVALTransform()
148 Decode(x, block, 128); in PHP_3HAVALTransform()
176 static void PHP_4HAVALTransform(uint32_t state[8], const unsigned char block[128]) in PHP_4HAVALTransform()
182 Decode(x, block, 128); in PHP_4HAVALTransform()
213 static void PHP_5HAVALTransform(uint32_t state[8], const unsigned char block[128]) in PHP_5HAVALTransform()
219 Decode(x, block, 128); in PHP_5HAVALTransform()
H A Dhash_ripemd.c205 static void RIPEMD128Transform(uint32_t state[4], const unsigned char block[64]) in RIPEMD128Transform()
212 RIPEMDDecode(x, block, 64); in RIPEMD128Transform()
296 static void RIPEMD256Transform(uint32_t state[8], const unsigned char block[64]) in RIPEMD256Transform()
303 RIPEMDDecode(x, block, 64); in RIPEMD256Transform()
394 static void RIPEMD160Transform(uint32_t state[5], const unsigned char block[64]) in RIPEMD160Transform()
401 RIPEMDDecode(x, block, 64); in RIPEMD160Transform()
493 static void RIPEMD320Transform(uint32_t state[10], const unsigned char block[64]) in RIPEMD320Transform()
500 RIPEMDDecode(x, block, 64); in RIPEMD320Transform()
H A Dhash_sha.c218 static void SHA1Transform(uint32_t state[5], const unsigned char block[64]) in SHA1Transform()
223 SHADecode32(x, block, 64); in SHA1Transform()
478 static void SHA256Transform(uint32_t state[8], const unsigned char block[64]) in SHA256Transform()
485 SHADecode32(x, block, 64); in SHA256Transform()
788 static void SHA512Transform(uint64_t state[8], const unsigned char block[128]) in SHA512Transform()
795 SHADecode64(x, block, 128); in SHA512Transform()
/PHP-7.4/ext/opcache/Optimizer/
H A Dsccp.c1921 int block_num, zend_basic_block *block, in sccp_mark_feasible_successors() argument
1933 scdf_mark_edge_feasible(scdf, block_num, block->successors[0]); in sccp_mark_feasible_successors()
1934 scdf_mark_edge_feasible(scdf, block_num, block->successors[1]); in sccp_mark_feasible_successors()
1942 for (s = 0; s < block->successors_count; s++) { in sccp_mark_feasible_successors()
2009 s = block->successors_count - 1; in sccp_mark_feasible_successors()
2027 s = block->successors_count - 1; in sccp_mark_feasible_successors()
2030 for (s = 0; s < block->successors_count; s++) { in sccp_mark_feasible_successors()
2035 scdf_mark_edge_feasible(scdf, block_num, block->successors[s]); in sccp_mark_feasible_successors()
2131 zend_basic_block *block = &ssa->cfg.blocks[phi->block]; in sccp_visit_phi() local
2142 if (scdf_is_edge_feasible(scdf, phi->pi, phi->block)) { in sccp_visit_phi()
[all …]
H A Ddce.c526 zend_basic_block *block = &ssa->cfg.blocks[b]; in dce_optimize_op_array() local
527 if (!(block->flags & ZEND_BB_REACHABLE)) { in dce_optimize_op_array()
530 i = block->start + block->len; in dce_optimize_op_array()
531 while (i > block->start) { in dce_optimize_op_array()
H A Dscdf.h44 struct _scdf_ctx *scdf, int block_num, zend_basic_block *block,
/PHP-7.4/win32/
H A Dcodepage.c141 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w() local
142 vec_err = _mm_or_si128(vec_err, block); in php_win32_cp_conv_ascii_to_w()
180 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w() local
183 const __m128i lo = _mm_unpacklo_epi8(block, mask); in php_win32_cp_conv_ascii_to_w()
189 const __m128i hi = _mm_unpackhi_epi8(block, mask); in php_win32_cp_conv_ascii_to_w()
/PHP-7.4/ext/standard/tests/file/
H A Dfiletype_error.phpt8 dir, block, link, file, and unknown.
/PHP-7.4/ext/standard/tests/streams/
H A Dbug77069.phpt2 Bug #77069 (stream filter loses final block of data)
H A Dproc_open_bug51800.phpt14 /* This is the wrong way to do it. The parent will block till it has read all the STDIN.
/PHP-7.4/ext/oci8/tests/
H A Dconnect_scope_try2.phpt60 // Verify data was committed in the Catch block
H A Dconnect_scope_try3.phpt60 // Verify data was committed in the Catch block
H A Dconnect_scope_try4.phpt60 // Verify data was committed in the Catch block
H A Dconnect_scope_try6.phpt60 // Verify data was committed in the Catch block
H A Dconnect_scope_try1.phpt60 // Verify data was committed in the Catch block
H A Dconnect_scope_try5.phpt60 // Verify data was committed in the Catch block
/PHP-7.4/ext/standard/
H A Dfile.h74 PHPAPI int php_set_sock_blocking(php_socket_t socketd, int block);
H A Dsha1.c254 static void SHA1Transform(state, block) in SHA1Transform() argument
256 const unsigned char block[64];
261 SHA1Decode(x, block, 64);
H A Dmd5.c177 (ctx->block[(n)] = \
183 (ctx->block[(n)])
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_context.c63 static void default_free(void *block, void *data) in default_free() argument
66 free(block); in default_free()
/PHP-7.4/ext/xml/tests/
H A Dxml003.phpt86 ]}{CDATA[ ]}{?[<![CDATA[]}{CDATA[CDATA block]}{?[]]>]}{CDATA[
H A Dxml001.phpt87 ]}{CDATA[ ]}{?[<![CDATA[]}{CDATA[CDATA block]}{?[]]>]}{CDATA[
H A Dxml002.phpt88 ]}{CDATA[ ]}{?[<![CDATA[]}{CDATA[CDATA block]}{?[]]>]}{CDATA[

Completed in 61 milliseconds

123456