Searched refs:data_size (Results 1 – 8 of 8) sorted by relevance
/php-src/ext/standard/libavifinfo/ |
H A D | avifinfo.h | 50 AvifInfoStatus AvifInfoIdentify(const uint8_t* data, size_t data_size); 56 AvifInfoStatus AvifInfoGetFeatures(const uint8_t* data, size_t data_size,
|
H A D | avifinfo.c | 666 size_t data_size; member 672 if (num_bytes > forward->data_size) return NULL; in AvifInfoInternalForwardRead() 675 forward->data_size -= num_bytes; in AvifInfoInternalForwardRead() 681 if (num_bytes > forward->data_size) num_bytes = forward->data_size; in AvifInfoInternalForwardSkip() 683 forward->data_size -= num_bytes; in AvifInfoInternalForwardSkip() 689 AvifInfoStatus AvifInfoIdentify(const uint8_t* data, size_t data_size) { in AvifInfoIdentify() argument 692 stream.data_size = data_size; in AvifInfoIdentify() 699 AvifInfoStatus AvifInfoGetFeatures(const uint8_t* data, size_t data_size, in AvifInfoGetFeatures() argument 703 stream.data_size = data_size; in AvifInfoGetFeatures()
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_real_connect_compression_error.phpt | 22 $data_size = 16777174; 31 $data = str_repeat("x", $data_size); 42 $data = str_repeat("x", $data_size);
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_wireprotocol.c | 1383 size_t * const data_size) in php_mysqlnd_read_row_ex() argument 1406 *data_size = 0; in php_mysqlnd_read_row_ex() 1417 p = buf + *data_size; in php_mysqlnd_read_row_ex() 1418 *data_size += header.size; in php_mysqlnd_read_row_ex() 1439 *data_size += header.size; in php_mysqlnd_read_row_ex() 1719 size_t data_size = 0; in php_mysqlnd_rowp_read() local 1742 packet->header.size = data_size; in php_mysqlnd_rowp_read() 1761 if (data_size > 1) { in php_mysqlnd_rowp_read() 1839 unsigned int data_size; in php_mysqlnd_prepare_read() local 1848 data_size = packet->header.size; in php_mysqlnd_prepare_read() [all …]
|
H A D | mysqlnd_ps_codec.c | 706 …ute_calculate_param_values_size(MYSQLND_STMT_DATA * stmt, zval ** copies_param, size_t * data_size) in mysqlnd_stmt_execute_calculate_param_values_size() argument 738 *data_size += 8; in mysqlnd_stmt_execute_calculate_param_values_size() 759 *data_size += 4 + is_longlong; in mysqlnd_stmt_execute_calculate_param_values_size() 768 (*data_size)++; in mysqlnd_stmt_execute_calculate_param_values_size() 773 *data_size += 8; /* max 8 bytes for size */ in mysqlnd_stmt_execute_calculate_param_values_size() 787 *data_size += Z_STRLEN_P(the_var); in mysqlnd_stmt_execute_calculate_param_values_size() 876 size_t data_size = 0; in mysqlnd_stmt_execute_store_params() local 923 if (FAIL == mysqlnd_stmt_execute_calculate_param_values_size(stmt, &copies, &data_size)) { in mysqlnd_stmt_execute_store_params() 928 …FAIL == mysqlnd_stmt_execute_check_n_enlarge_buffer(buf, p, buf_len, provided_buffer, data_size)) { in mysqlnd_stmt_execute_store_params()
|
/php-src/Zend/ |
H A D | zend_alloc.h | 317 …I zend_mm_heap *zend_mm_startup_ex(const zend_mm_handlers *handlers, void *data, size_t data_size);
|
H A D | zend_alloc.c | 3205 …PI zend_mm_heap *zend_mm_startup_ex(const zend_mm_handlers *handlers, void *data, size_t data_size) argument 3257 …storage = _zend_mm_alloc(heap, sizeof(zend_mm_storage) + data_size ZEND_FILE_LINE_CC ZEND_FILE_LIN… 3268 memcpy(storage->data, data, data_size);
|
/php-src/ext/hash/ |
H A D | hash.c | 492 …s, void *context, const unsigned char *key, const unsigned char *data, const zend_long data_size) { in php_hash_hmac_round() argument 495 ops->hash_update(context, data, data_size); in php_hash_hmac_round()
|
Completed in 41 milliseconds