| /PHP_5_4/main/ |
| H A D | alloca.c | 256 long sstcpt:32; /* Pointer to task common address block. */ 294 long extends; /* Number of block extensions. */ 316 long this_address; /* Address of this block. */ 317 long this_size; /* Size of this block (does not include 321 long link; /* Address of trailer block of previous 347 long *block, size; local 353 $LM00 common block, but I know that this works. */ 373 block = (long *) trailer->this_address; 375 if (block == 0 || size == 0) 378 if ((block < [all...] |
| /PHP_5_4/Zend/ |
| H A D | zend_static_allocator.c | 25 inline static void block_init(Block *block, zend_uint block_size) argument 27 block->pos = block->bp = (char *) emalloc(block_size); 28 block->end = block->bp + block_size; 31 inline static char *block_allocate(Block *block, zend_uint size) argument 33 char *retval = block->pos; 34 if ((block->pos += size) >= block->end) { 40 inline static void block_destroy(Block *block) argument [all...] |
| /PHP_5_4/ext/hash/ |
| H A D | hash_haval.c | 144 static void PHP_3HAVALTransform(php_hash_uint32 state[8], const unsigned char block[128]) argument 150 Decode(x, block, 128); 178 static void PHP_4HAVALTransform(php_hash_uint32 state[8], const unsigned char block[128]) argument 184 Decode(x, block, 128); 215 static void PHP_5HAVALTransform(php_hash_uint32 state[8], const unsigned char block[128]) argument 221 Decode(x, block, 128);
|
| H A D | hash_md.c | 280 MD5 block update operation. Continues an MD5 message-digest 281 operation, processing another message block, and updating the 352 * MD5 basic transformation. Transforms state based on block. 354 static void MD5Transform(state, block) 356 const unsigned char block[64]; 360 Decode(x, block, 64); 458 static void MD4Transform(php_hash_uint32 state[4], const unsigned char block[64]) argument 462 Decode(x, block, 64); 540 MD4 block update operation. Continues an MD4 message-digest 541 operation, processing another message block, an 634 MD2_Transform(PHP_MD2_CTX *context, const unsigned char *block) argument [all...] |
| H A D | hash_ripemd.c | 201 * ripemd128 basic transformation. Transforms state based on block. 203 static void RIPEMD128Transform(php_hash_uint32 state[4], const unsigned char block[64]) argument 210 RIPEMDDecode(x, block, 64); 252 ripemd128 block update operation. Continues a ripemd128 message-digest 253 operation, processing another message block, and updating the 292 * ripemd256 basic transformation. Transforms state based on block. 294 static void RIPEMD256Transform(php_hash_uint32 state[8], const unsigned char block[64]) argument 301 RIPEMDDecode(x, block, 64); 350 ripemd256 block update operation. Continues a ripemd256 message-digest 351 operation, processing another message block, an 392 RIPEMD160Transform(php_hash_uint32 state[5], const unsigned char block[64]) argument 491 RIPEMD320Transform(php_hash_uint32 state[10], const unsigned char block[64]) argument [all...] |
| H A D | hash_sha.c | 220 * SHA1 basic transformation. Transforms state based on block. 222 static void SHA1Transform(php_hash_uint32 state[5], const unsigned char block[64]) argument 227 SHADecode32(x, block, 64); 329 SHA1 block update operation. Continues an SHA1 message-digest 330 operation, processing another message block, and updating the 478 * SHA256 basic transformation. Transforms state based on block. 480 static void SHA256Transform(php_hash_uint32 state[8], const unsigned char block[64]) argument 487 SHADecode32(x, block, 64); 538 SHA224 block update operation. Continues an SHA224 message-digest 539 operation, processing another message block, an 790 SHA512Transform(php_hash_uint64 state[8], const unsigned char block[128]) argument [all...] |
| H A D | hash_whirlpool.c | 45 php_hash_uint64 block[8]; /* mu(buffer) */ local 51 * map the buffer to a block: 54 block[i] = 67 state[0] = block[0] ^ (K[0] = context->state[0]); 68 state[1] = block[1] ^ (K[1] = context->state[1]); 69 state[2] = block[2] ^ (K[2] = context->state[2]); 70 state[3] = block[3] ^ (K[3] = context->state[3]); 71 state[4] = block[4] ^ (K[4] = context->state[4]); 72 state[5] = block[5] ^ (K[5] = context->state[5]); 73 state[6] = block[ [all...] |
| /PHP_5_4/ext/readline/ |
| H A D | readline_cli.c | 134 static char *cli_get_prompt(char *block, char prompt TSRMLS_DC) /* {{{ */ argument 165 smart_str_appends(&retval, block);
|
| /PHP_5_4/ext/standard/ |
| H A D | md5.h | 48 php_uint32 block[16]; member in struct:__anon243
|
| H A D | streamsfuncs.c | 1350 int block; local 1360 block = arg2; 1362 if (php_stream_set_option(stream, PHP_STREAM_OPTION_BLOCKING, block == 0 ? 0 : 1, NULL) == -1) {
|
| /PHP_5_4/sapi/apache2filter/ |
| H A D | sapi_apache2.c | 360 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) 371 return ap_get_brigade(f->next, bb, mode, block, readbytes); 381 if ((rv = ap_get_brigade(f->next, bb, mode, block, readbytes)) != APR_SUCCESS) { 359 php_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) argument
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli_server.c | 147 struct { void *block; char *p; size_t len; } heap; member in struct:php_cli_server_chunk::__anon2::__anon3 841 if (chunk->data.heap.block != chunk) { 842 pefree(chunk->data.heap.block, 1); 913 static php_cli_server_chunk *php_cli_server_chunk_heap_new(char *block, char *buf, size_t len) /* {{{ */ argument 922 chunk->data.heap.block = block; 937 chunk->data.heap.block = chunk;
|