/PHP-8.3/ext/standard/ |
H A D | iptc.c | 177 unsigned int marker, done = 0; in PHP_FUNCTION() local 232 marker = php_iptc_next_marker(fp, spool, poi?&poi:0); in PHP_FUNCTION() 234 if (marker == M_EOI) { /* EOF */ in PHP_FUNCTION() 236 } else if (marker != M_APP13) { in PHP_FUNCTION() 237 php_iptc_put1(fp, spool, (unsigned char)marker, poi?&poi:0); in PHP_FUNCTION() 240 switch (marker) { in PHP_FUNCTION()
|
H A D | image.c | 350 int a=0, marker; in php_next_marker() local 356 while ((marker = php_stream_getc(stream)) != 0xff) { in php_next_marker() 357 if (marker == EOF) { in php_next_marker() 368 if ((marker = php_stream_getc(stream)) == EOF) in php_next_marker() 373 } while (marker == 0xff); in php_next_marker() 378 return (unsigned int)marker; in php_next_marker() 412 static int php_read_APP(php_stream * stream, unsigned int marker, zval *info) in php_read_APP() argument 432 snprintf(markername, sizeof(markername), "APP%d", marker - M_APP0); in php_read_APP() 449 unsigned int marker = M_PSEUDO; in php_handle_jpeg() local 453 marker = php_next_marker(stream, marker, ff_read); in php_handle_jpeg() [all …]
|
/PHP-8.3/sapi/phpdbg/ |
H A D | phpdbg_lexer.h | 28 unsigned char *marker; member
|
H A D | phpdbg_lexer.l | 16 #define YYMARKER LEX(marker)
|
/PHP-8.3/ext/gd/libgd/ |
H A D | gd_jpeg.c | 443 jpeg_saved_marker_ptr marker; in gdImageCreateFromJpegCtxEx() local 449 marker = cinfo.marker_list; in gdImageCreateFromJpegCtxEx() 450 while (marker) { in gdImageCreateFromJpegCtxEx() 451 …if ((marker->marker == (JPEG_APP0 + 14)) && (marker->data_length >= 12) && (!strncmp((const char *… in gdImageCreateFromJpegCtxEx() 455 marker = marker->next; in gdImageCreateFromJpegCtxEx()
|
/PHP-8.3/Zend/tests/ |
H A D | flexible-heredoc-error3.phpt | 2 Flexible heredoc syntax error 3: mixing spaces and tabs in ending marker
|
H A D | flexible-heredoc-error5.phpt | 2 Flexible heredoc syntax error 5: mixing spaces and tabs in ending marker for 0 length body
|
H A D | flexible-nowdoc-error1.phpt | 2 Flexible nowdoc syntax 1: different indentation for body (spaces) ending marker (tabs)
|
H A D | flexible-nowdoc-error3.phpt | 2 Flexible nowdoc syntax error 3: mixing spaces and tabs in ending marker
|
H A D | flexible-nowdoc-error5.phpt | 2 Flexible nowdoc syntax error 5: mixing spaces and tabs in ending marker for 0 length body
|
H A D | flexible-heredoc-error1.phpt | 2 Flexible heredoc syntax 1: different indentation for body (spaces) ending marker (tabs)
|
/PHP-8.3/ext/json/ |
H A D | php_json_scanner.h | 29 php_json_ctype *marker; /* marker position for backtracking */ member
|
H A D | json_scanner.re | 26 #define YYMARKER s->marker
|
/PHP-8.3/ext/standard/tests/image/ |
H A D | bug13213.phpt | 8 Warning: getimagesize(): Corrupt JPEG data: 2 extraneous bytes before marker in %s%ebug13213.php on…
|
H A D | bug72278.phpt | 10 Warning: getimagesize(): Corrupt JPEG data: 3 extraneous bytes before marker in %s%ebug72278.php on…
|
/PHP-8.3/ext/exif/tests/ |
H A D | bug79282.phpt | 12 Warning: exif_read_data(): Missing TIFF alignment marker in %s on line %d
|
/PHP-8.3/ext/mbstring/tests/ |
H A D | mb_strimwidth.phpt | 59 // (It will still output the trim marker, pushing the width beyond the stipulated 'maximum') 63 // (Likewise, it will still output the trim marker) 72 // Since the output will not reach the END of the string, the trim marker 88 // Trim marker will be added 91 // With max width of 100, trim marker will not be added 98 // Since width of trim marker is 3, this will only get a single char from string 171 …die("Output should have just been trim marker. string=" . $str . " result=" . $result . " from=" .… 187 die("Expected trim marker"); 206 // Try invalid marker 211 // it was wider than requested width, if the trim marker string was wider than
|
H A D | iso8859_encodings.phpt | 24 // Test illegal character marker which can't be represented in target encoding
|
H A D | mb_str_split_error_conditions.phpt | 36 // The last string emitted by mb_str_split will include '?' as an error marker,
|
H A D | mb_substr_count.phpt | 66 // marker, if the string ended in an illegal state)
|
H A D | utf7imap_encoding.phpt | 46 echo "Non-ASCII characters convert to illegal char marker... yes!\n"; 238 Non-ASCII characters convert to illegal char marker... yes!
|
H A D | mb_convert_variables.phpt | 147 // Make sure both that the correct invalid encoding marker is used,
|
H A D | mb_decode_numericentity.phpt | 124 // Originally, the new implementation of mb_decode_numericentity used -1 as a marker indicating
|
/PHP-8.3/sapi/cli/tests/ |
H A D | bug80092.phpt | 30 …rnings if opcache loads twice or duplicate modules are loaded by searching for the preloaded marker
|
/PHP-8.3/ext/exif/ |
H A D | exif.c | 2720 static char * exif_get_markername(int marker) in exif_get_markername() argument 2722 switch(marker) { in exif_get_markername() 3809 if (marker!=0xFF) { in exif_scan_JPEG_header() 3810 marker = 0xff; in exif_scan_JPEG_header() 3816 } while (marker == 0xff); in exif_scan_JPEG_header() 3826 ZEND_ASSERT(marker != 0xff); in exif_scan_JPEG_header() 3865 switch(marker) { in exif_scan_JPEG_header() 3936 last_marker = marker; in exif_scan_JPEG_header() 3950 int n, marker; in exif_scan_thumbnail() local 3981 marker = c; in exif_scan_thumbnail() [all …]
|