Home
last modified time | relevance | path

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

/PHP-5.4/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.4/Zend/
H A Dzend_execute.c1001 switch (dim->type) { in zend_fetch_dimension_address_inner()
1014 hval = Z_HASH_P(dim); in zend_fetch_dimension_address_inner()
1054 hval = Z_LVAL_P(dim); in zend_fetch_dimension_address_inner()
1100 if (dim == NULL) { in zend_fetch_dimension_address()
1144 if (dim == NULL) { in zend_fetch_dimension_address()
1175 tmp = *dim; in zend_fetch_dimension_address()
1178 dim = &tmp; in zend_fetch_dimension_address()
1196 zval *orig = dim; in zend_fetch_dimension_address()
1298 dim = &tmp; in zend_fetch_dimension_address_read()
1305 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.h12389 zval *dim = opline->op2.zv; in zend_binary_assign_op_helper_SPEC_VAR_CONST() local
13352 zval *dim = opline->op2.zv; in ZEND_ASSIGN_DIM_SPEC_VAR_CONST_HANDLER() local
18678 zval *dim = NULL; in zend_binary_assign_op_helper_SPEC_VAR_UNUSED() local
19081 zval *dim = NULL; in ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_HANDLER() local
20745 zval *dim = _get_zval_ptr_cv_BP_VAR_R(EX_CVs(), opline->op2.var TSRMLS_CC); in ZEND_ASSIGN_DIM_SPEC_VAR_CV_HANDLER() local
21725 zval *dim = opline->op2.zv; in zend_binary_assign_op_helper_SPEC_UNUSED_CONST() local
25295 zval *dim = NULL; in zend_binary_assign_op_helper_SPEC_UNUSED_UNUSED() local
28219 zval *dim = opline->op2.zv; in zend_binary_assign_op_helper_SPEC_CV_CONST() local
29177 zval *dim = opline->op2.zv; in ZEND_ASSIGN_DIM_SPEC_CV_CONST_HANDLER() local
34020 zval *dim = NULL; in zend_binary_assign_op_helper_SPEC_CV_UNUSED() local
[all …]
H A Dzend_compile.h442 void fetch_array_dim(znode *result, const znode *parent, const znode *dim TSRMLS_DC);
H A Dzend_vm_def.h465 zval *dim = GET_OP2_ZVAL_PTR(BP_VAR_R);
467 …zend_fetch_dimension_address(&EX_T((opline+1)->op2.var), container, dim, OP2_TYPE, BP_VAR_RW TSRML…
1661 zval *dim = GET_OP2_ZVAL_PTR(BP_VAR_R);
1664 …zend_fetch_dimension_address(&EX_T((opline+1)->op2.var), object_ptr, dim, OP2_TYPE, BP_VAR_W TSRML…
H A Dzend_compile.c800 void fetch_array_dim(znode *result, const znode *parent, const znode *dim TSRMLS_DC) /* {{{ */ in fetch_array_dim()
822 SET_NODE(opline.op2, dim); in fetch_array_dim()
/PHP-5.4/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.4/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 126 milliseconds