Home
last modified time | relevance | path

Searched refs:col (Results 1 – 25 of 37) sorted by path

12

/PHP-7.4/Zend/tests/
H A Dbug32674.phpt48 $col = new collection();
51 foreach($col as $co) {
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic15449 #>>>>&480 ulelong x - col offset 0x%8.8x
H A Dmagic私はガラスを食べられます15449 #>>>>&480 ulelong x - col offset 0x%8.8x
/PHP-7.4/ext/gd/
H A Dgd.c3030 int col; in PHP_FUNCTION() local
3046 col = index; in PHP_FUNCTION()
3048 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
3112 int col; in PHP_FUNCTION() local
3128 col = color; in PHP_FUNCTION()
3130 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
3147 int col; in PHP_FUNCTION() local
3158 col = index; in PHP_FUNCTION()
3160 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
3525 col = COL; in php_imagepolygon()
[all …]
/PHP-7.4/ext/gd/libgd/
H A Dgd.c1001 static void gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col) in gdImageHLine() argument
1014 gdImageSetPixel(im, x1, y, col); in gdImageHLine()
1020 static void gdImageVLine(gdImagePtr im, int x, int y1, int y2, int col) in gdImageVLine() argument
1024 gdImageFilledRectangle(im, x - thickhalf, y1, x + im->thick - thickhalf - 1, y2, col); in gdImageVLine()
1033 gdImageSetPixel(im, x, y1, col); in gdImageVLine()
1236 void gdImageAALine (gdImagePtr im, int x1, int y1, int x2, int y2, int col) in gdImageAALine() argument
1244 gdImageLine(im, x1, y1, x2, y2, col); in gdImageAALine()
1274 gdImageSetAAPixelColor(im, x, y, col, (frac >> 8) & 0xFF); in gdImageAALine()
1276 gdImageSetAAPixelColor(im, x, y + 1, col, (~frac >> 8) & 0xFF); in gdImageAALine()
1302 gdImageSetAAPixelColor(im, x, y, col, (frac >> 8) & 0xFF); in gdImageAALine()
[all …]
H A Dgd_topal.c322 JDIMENSION col; in prescan_quantize() local
329 for (col = width; col > 0; col--) in prescan_quantize()
1144 JDIMENSION col; in pass2_no_dither() local
1152 for (col = width; col > 0; col--) in pass2_no_dither()
1201 JDIMENSION col; in pass2_fs_dither() local
1238 for (col = width; col > 0; col--) in pass2_fs_dither()
H A Dgd_wbmp.c147 int col, row, pos; in gdImageCreateFromWBMPCtx() local
166 for (col = 0; col < wbmp->width; col++) { in gdImageCreateFromWBMPCtx()
168 gdImageSetPixel(im, col, row, white); in gdImageCreateFromWBMPCtx()
170 gdImageSetPixel(im, col, row, black); in gdImageCreateFromWBMPCtx()
H A Dgdft.c630 int x, y, row, col, pc, pcr; local
649 for (col = 0; col < bitmap.width; col++, pc++) {
658 … level = ((bitmap.buffer[(col>>3)+pcr]) & (1<<(~col&0x07))) ? gdAlphaTransparent : gdAlphaOpaque;
673 x = pen_x + col;
717 for (col = 0; col < bitmap.width; col++, pc++) {
728 tc_key.pixel = ((bitmap.buffer[(col>>3)+pcr]) & (1<<(~col&0x07))) ? NUMCOLORS : 0;
733 x = pen_x + col;
H A Dwbmp.c153 int row, col, byte, pel, pos; in readwbmp() local
211 for (col = 0; col < wbmp->width;) in readwbmp()
217 if (col++ < wbmp->width) in readwbmp()
253 int row, col; in writewbmp() local
272 for (col = 0; col < wbmp->width; col++) in writewbmp()
274 octet |= ((wbmp->bitmap[row * wbmp->width + col] == 1) ? WBMP_WHITE : WBMP_BLACK) << --bitpos; in writewbmp()
312 int row, col; in printwbmp() local
315 for (col = 0; col < wbmp->width; col++) in printwbmp()
317 if (wbmp->bitmap[wbmp->width * row + col] == WBMP_BLACK) in printwbmp()
/PHP-7.4/ext/gd/tests/
H A Dbug24155.phpt23 $col = imagecolorat($im2, 20, 20);
25 echo "$col\n";
H A Dbug27582_1.phpt20 $col = imagecolorat($im2, 5, 5);
21 $color = imagecolorsforindex($im2, $col);
H A Dbug51263.phpt17 $col = imagecolorallocate($img, 255, 255, 255);
18 imagettftext($img, 8, 90, 10, 60, $col, $ttf, "foo bar qux");
H A Dpngcomp.phpt24 $col = imagecolorat($im2, 8,8);
25 if ($col == 0xffffff) {
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt23 $create .= "col" . $i . " INT, ";
24 $columns .= "col" . $i . ", ";
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_result.c213 int64_t col; in MYSQLND_METHOD() local
216 for (col = field_count - 1; col >= 0; --col) { in MYSQLND_METHOD()
217 zval_ptr_dtor_nogc(&(current_row[col])); in MYSQLND_METHOD()
/PHP-7.4/ext/odbc/
H A Dphp_odbc.c3582 char *cat = NULL, *schema = NULL, *proc = NULL, *col = NULL; in PHP_FUNCTION() local
3591 &proc, &proc_len, &col, &col_len) == FAILURE) { in PHP_FUNCTION()
3618 col, SAFE_SQL_NTS(col) ); in PHP_FUNCTION()
/PHP-7.4/ext/opcache/tests/
H A Dbug75255.phpt12 for ($col = 0; $col < $numCols; $col++) {
/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c197 int col; in pdo_stmt_describe_columns() local
201 for (col = 0; col < stmt->column_count; col++) { in pdo_stmt_describe_columns()
202 if (!stmt->methods->describer(stmt, col)) { in pdo_stmt_describe_columns()
233 stmt->columns[col].name)) != NULL) { in pdo_stmt_describe_columns()
234 param->paramno = col; in pdo_stmt_describe_columns()
533 struct pdo_column_data *col; in fetch_value() local
546 col = &stmt->columns[colno]; in fetch_value()
547 type = PDO_PARAM_TYPE(col->param_type); in fetch_value()
1792 struct pdo_column_data *col; in PHP_METHOD() local
1816 col = &stmt->columns[colno]; in PHP_METHOD()
[all …]
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_stmt.c225 struct pdo_column_data *col; in pdo_dblib_stmt_describe() local
236 col = &stmt->columns[colno]; in pdo_dblib_stmt_describe()
240 col->name = zend_string_init(fname, strlen(fname), 0); in pdo_dblib_stmt_describe()
247 col->name = zend_string_init(buf, len, 0); in pdo_dblib_stmt_describe()
249 col->name = zend_string_init("computed", strlen("computed"), 0); in pdo_dblib_stmt_describe()
255 col->maxlen = dbcollen(H->link, colno+1); in pdo_dblib_stmt_describe()
256 col->param_type = PDO_PARAM_ZVAL; in pdo_dblib_stmt_describe()
/PHP-7.4/ext/pdo_firebird/
H A Dfirebird_statement.c211 struct pdo_column_data *col = &stmt->columns[colno]; in firebird_stmt_describe() local
219 col->precision = -var->sqlscale; in firebird_stmt_describe()
220 col->maxlen = var->sqllen; in firebird_stmt_describe()
221 col->name = zend_string_alloc(colname_len, 0); in firebird_stmt_describe()
222 cp = ZSTR_VAL(col->name); in firebird_stmt_describe()
232 col->param_type = PDO_PARAM_STR; in firebird_stmt_describe()
240 col->param_type = PDO_PARAM_INT; in firebird_stmt_describe()
244 col->param_type = PDO_PARAM_BOOL; in firebird_stmt_describe()
248 col->param_type = PDO_PARAM_STR; in firebird_stmt_describe()
/PHP-7.4/ext/pdo_oci/
H A Doci_statement.c504 pdo_oci_column *col = (pdo_oci_column*)octxp; in oci_define_callback() local
506 switch (col->dtype) { in oci_define_callback()
510 *bufpp = col->data; in oci_define_callback()
511 *alenpp = &col->datalen; in oci_define_callback()
512 *indpp = (dvoid *)&col->indicator; in oci_define_callback()
531 struct pdo_column_data *col = &stmt->columns[colno]; in oci_stmt_describe() local
553 col->precision = precis; in oci_stmt_describe()
554 col->maxlen = data_size; in oci_stmt_describe()
570 col->param_type = PDO_PARAM_STR; in oci_stmt_describe()
575 col->param_type = PDO_PARAM_LOB; in oci_stmt_describe()
[all …]
/PHP-7.4/ext/pdo_oci/tests/
H A Dbug57702.phpt44 do_insert($db, 1, "row 1 col 1", "row 1 col 2");
45 do_insert($db, 2, "row 2 col 1", "row 2 col 2");
151 string(11) "row 1 col 1"
152 string(11) "row 1 col 2"
153 string(11) "row 2 col 1"
154 string(11) "row 2 col 2"
157 string(11) "row 1 col 1"
158 string(11) "row 1 col 2"
159 string(11) "row 2 col 1"
160 string(11) "row 2 col 2"
[all …]
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_stmt.c570 struct pdo_column_data *col = &stmt->columns[colno]; in odbc_stmt_describe() local
617 col->maxlen = S->cols[colno].datalen = colsize; in odbc_stmt_describe()
618 col->name = zend_string_init(S->cols[colno].colname, colnamelen, 0); in odbc_stmt_describe()
622 col->param_type = PDO_PARAM_STR; in odbc_stmt_describe()
/PHP-7.4/ext/standard/tests/array/
H A Darray_combine_variation5.phpt55 /*7*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
56 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
128 ["col or"]=>
129 string(6) "col or"
141 ["col\tor"]=>
142 string(7) "col\tor"
H A Darray_diff_variation8.phpt50 /*5*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "\tHello"),
51 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => '\tHello'),
142 string(6) "col or"
161 string(7) "col\tor"

Completed in 186 milliseconds

12