Home
last modified time | relevance | path

Searched refs:dim (Results 1 – 8 of 8) sorted by relevance

/PHP-5.5/ext/standard/
H A Dimage.c111 if (php_stream_read(stream, dim, sizeof(dim)) != sizeof(dim)) in php_handle_gif()
134 if (php_stream_read(stream, dim, sizeof(dim)) != sizeof(dim)) in php_handle_psd()
138 …ight = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned int)dim[2]… in php_handle_psd()
139 …dth = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int)dim[6]… in php_handle_psd()
156 if (php_stream_read(stream, dim, sizeof(dim)) != sizeof(dim)) in php_handle_bmp()
159 …ize = (((unsigned int)dim[ 3]) << 24) + (((unsigned int)dim[ 2]) << 16) + (((unsigned int)dim[ 1… in php_handle_bmp()
167 …h = (((unsigned int)dim[ 7]) << 24) + (((unsigned int)dim[ 6]) << 16) + (((unsigned int)dim[ 5… in php_handle_bmp()
312 if((php_stream_read(stream, dim, sizeof(dim))) < sizeof(dim)) in php_handle_png()
316 …>width = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned int)dim[2]… in php_handle_png()
317 …>height = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int)dim[6]… in php_handle_png()
[all …]
/PHP-5.5/Zend/
H A Dzend_execute.c1000 switch (dim->type) { in zend_fetch_dimension_address_inner()
1013 hval = Z_HASH_P(dim); in zend_fetch_dimension_address_inner()
1053 hval = Z_LVAL_P(dim); in zend_fetch_dimension_address_inner()
1099 if (dim == NULL) { in zend_fetch_dimension_address()
1143 if (dim == NULL) { in zend_fetch_dimension_address()
1174 tmp = *dim; in zend_fetch_dimension_address()
1177 dim = &tmp; in zend_fetch_dimension_address()
1195 zval *orig = dim; in zend_fetch_dimension_address()
1297 dim = &tmp; in zend_fetch_dimension_address_read()
1304 if (Z_LVAL_P(dim) < 0 || Z_STRLEN_P(container) <= Z_LVAL_P(dim)) { in zend_fetch_dimension_address_read()
[all …]
H A Dzend_vm_execute.h14246 zval *dim = opline->op2.zv; in zend_binary_assign_op_helper_SPEC_VAR_CONST() local
15211 zval *dim = opline->op2.zv; in ZEND_ASSIGN_DIM_SPEC_VAR_CONST_HANDLER() local
21070 zval *dim = NULL; in zend_binary_assign_op_helper_SPEC_VAR_UNUSED() local
21473 zval *dim = NULL; in ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_HANDLER() local
23305 zval *dim = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var TSRMLS_CC); in ZEND_ASSIGN_DIM_SPEC_VAR_CV_HANDLER() local
24463 zval *dim = opline->op2.zv; in zend_binary_assign_op_helper_SPEC_UNUSED_CONST() local
28538 zval *dim = NULL; in zend_binary_assign_op_helper_SPEC_UNUSED_UNUSED() local
31780 zval *dim = opline->op2.zv; in zend_binary_assign_op_helper_SPEC_CV_CONST() local
32740 zval *dim = opline->op2.zv; in ZEND_ASSIGN_DIM_SPEC_CV_CONST_HANDLER() local
38098 zval *dim = NULL; in zend_binary_assign_op_helper_SPEC_CV_UNUSED() local
[all …]
H A Dzend_compile.h463 void fetch_array_dim(znode *result, const znode *parent, const znode *dim TSRMLS_DC);
H A Dzend_vm_def.h467 zval *dim = GET_OP2_ZVAL_PTR(BP_VAR_R);
469 …zend_fetch_dimension_address(&EX_T((opline+1)->op2.var), container, dim, OP2_TYPE, BP_VAR_RW TSRML…
1665 zval *dim = GET_OP2_ZVAL_PTR(BP_VAR_R);
1668 …zend_fetch_dimension_address(&EX_T((opline+1)->op2.var), object_ptr, dim, OP2_TYPE, BP_VAR_W TSRML…
H A Dzend_compile.c803 void fetch_array_dim(znode *result, const znode *parent, const znode *dim TSRMLS_DC) /* {{{ */ in fetch_array_dim()
825 SET_NODE(opline.op2, dim); in fetch_array_dim()
/PHP-5.5/ext/standard/tests/strings/
H A Dparse_str_basic3.phpt72 echo "\nTest string with 2-dim array with numeric keys\n";
77 echo "\nTest string with 2-dim array with null keys\n";
82 echo "\nTest string with 2-dim array with non-numeric keys\n";
87 echo "\nTest string with 3-dim array with numeric keys\n";
202 Test string with 2-dim array with numeric keys
217 Test string with 2-dim array with null keys
235 Test string with 2-dim array with non-numeric keys
253 Test string with 3-dim array with numeric keys
/PHP-5.5/ext/interbase/
H A Dibase_query.c221 unsigned short dim; in _php_ibase_alloc_array() local
302 for (dim = 0; dim < ar_desc->array_desc_dimensions; dim++) { in _php_ibase_alloc_array()
303 ar_size *= 1 + ar_desc->array_desc_bounds[dim].array_bound_upper in _php_ibase_alloc_array()
304 -ar_desc->array_desc_bounds[dim].array_bound_lower; in _php_ibase_alloc_array()
434 ibase_array *array, int dim TSRMLS_DC) in _php_ibase_bind_array()
437 int u_bound = array->ar_desc.array_desc_bounds[dim].array_bound_upper, in _php_ibase_bind_array()
438 l_bound = array->ar_desc.array_desc_bounds[dim].array_bound_lower, in _php_ibase_bind_array()
443 if (dim < array->ar_desc.array_desc_dimensions) { in _php_ibase_bind_array()
1426 ibase_array *ib_array, int dim, int flag TSRMLS_DC) in _php_ibase_arr_zval() argument
1432 u_bound = ib_array->ar_desc.array_desc_bounds[dim].array_bound_upper, in _php_ibase_arr_zval()
[all …]

Completed in 164 milliseconds