| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | webpimg.c | 387 int data_size, 397 if (!data || data_size <= 10 || !p_Y || !p_U || !p_V 411 if (vpx_codec_decode(&dec, data, data_size, NULL, 0) == VPX_CODEC_OK) { 453 int data_size, 460 const uint32 chunk_size = SkipRiffHeader(&data, &data_size); 465 return VPXDecode(data, data_size, p_Y, p_U, p_V, p_width, p_height); 850 int data_size, 853 const uint32 chunk_size = SkipRiffHeader(&data, &data_size); 863 if (data_size < 10) { 386 VPXDecode(const uint8* data, int data_size, uint8** p_Y, uint8** p_U, uint8** p_V, int* p_width, int* p_height) argument 452 WebPDecode(const uint8* data, int data_size, uint8** p_Y, uint8** p_U, uint8** p_V, int* p_width, int* p_height) argument 849 WebPGetInfo(const uint8* data, int data_size, int *width, int *height) argument
|
| H A D | webpimg.h | 54 * 2. data_size: count of bytes in the WebP data stream 70 int data_size, 165 * 2. data_size: count of bytes in the WebP data stream 173 int data_size,
|
| /PHP_TRUNK/ext/hash/ |
| H A D | hash.c | 234 static inline void php_hash_hmac_round(unsigned char *final, const php_hash_ops *ops, void *context, const unsigned char *key, const unsigned char *data, const long data_size) { argument 237 ops->hash_update(context, data, data_size);
|
| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_query.c | 1427 static int _php_ibase_arr_zval(zval *ar_zval, char *data, unsigned long data_size, /* {{{ */ argument 1440 unsigned long slice_size = data_size / dim_len;
|
| /PHP_TRUNK/ext/mcrypt/ |
| H A D | mcrypt.c | 662 int block_size, data_size; local 679 data_size = (((data_len - 1) / block_size) + 1) * block_size; 680 data_s = emalloc(data_size + 1); 681 memset(data_s, 0, data_size); 684 data_size = data_len; 685 data_s = emalloc(data_size + 1); 686 memset(data_s, 0, data_size); 690 mcrypt_generic(pm->td, data_s, data_size); 691 data_s[data_size] = '\0'; 693 RETVAL_STRINGL(data_s, data_size, 707 int block_size, data_size; local 1173 unsigned long int data_size; local [all...] |
| /PHP_TRUNK/ext/oci8/ |
| H A D | oci8_interface.c | 1166 RETURN_LONG(column->data_size);
|
| H A D | oci8_statement.c | 549 PHP_OCI_CALL_RETURN(statement->errcode, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->data_size, (dvoid *)0, OCI_ATTR_DATA_SIZE, statement->err)); 558 outcol->storage_size4 = outcol->data_size; 559 outcol->retlen = outcol->data_size;
|
| H A D | php_oci8_int.h | 234 ub2 data_size; /* data size */ member in struct:__anon10
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_ps_codec.c | 527 size_t data_size = 0; local 679 data_size += 8; 697 data_size += 8; 707 data_size += 4; 716 data_size++; 721 data_size += 8; /* max 8 bytes for size */ 732 data_size += Z_STRLEN_P(the_var); 739 if (left < data_size) { 742 *buf_len = offset + data_size + 10; /* Allocate + 10 for safety */
|
| H A D | mysqlnd_wireprotocol.c | 1395 size_t * data_size, zend_bool persistent_alloc, 1413 *data_size = prealloc_more_bytes; 1420 *data_size += header.size; 1428 *buffer = result_set_memory_pool->get_chunk(result_set_memory_pool, *data_size + 1 TSRMLS_CC); 1446 if (FAIL == (*buffer)->resize_chunk((*buffer), *data_size + 1 TSRMLS_CC)) { 1452 p = (*buffer)->ptr + (*data_size - header.size); 1469 *data_size -= prealloc_more_bytes; 1583 size_t data_size = row_buffer->app; local 1584 zend_uchar * bit_area = (zend_uchar*) row_buffer->ptr + data_size + 1; /* we allocate from here */ 1749 row_buffer->ptr[data_size] 1393 php_mysqlnd_read_row_ex(MYSQLND_CONN_DATA * conn, MYSQLND_MEMORY_POOL * result_set_memory_pool, MYSQLND_MEMORY_POOL_CHUNK ** buffer, size_t * data_size, zend_bool persistent_alloc, unsigned int prealloc_more_bytes TSRMLS_DC) argument 1769 size_t data_size = 0; local 1932 unsigned int data_size; local [all...] |
| /PHP_TRUNK/ext/pdo_oci/ |
| H A D | oci_statement.c | 503 ub2 dtype, data_size, scale, precis; local 517 (param, OCI_DTYPE_PARAM, &data_size, 0, OCI_ATTR_DATA_SIZE, S->err)); 532 col->maxlen = data_size;
|