Searched refs:uchar (Results 1 – 6 of 6) sorted by relevance
/PHP-5.6/ext/exif/ |
H A D | exif.c | 72 typedef unsigned char uchar; typedef 1074 return (((uchar *)value)[0] << 8) | ((uchar *)value)[1]; in php_jpg_get16() 1083 return (((uchar *)value)[0] << 8) | ((uchar *)value)[1]; in php_ifd_get16u() 1085 return (((uchar *)value)[1] << 8) | ((uchar *)value)[0]; in php_ifd_get16u() 1104 | (((uchar *)value)[1] << 16) in php_ifd_get32s() 1105 | (((uchar *)value)[2] << 8 ) in php_ifd_get32s() 1484 uchar *data; 3323 uchar *Data; in exif_scan_JPEG_header() 3392 Data[0] = (uchar)lh; in exif_scan_JPEG_header() 3393 Data[1] = (uchar)ll; in exif_scan_JPEG_header() [all …]
|
/PHP-5.6/ext/ereg/regex/ |
H A D | WHATSNEW | 29 now handled gracefully. "uchar" is no longer used as an internal type 58 BRE \$ bug is fixed. Most uses of "uchar" are gone; it's all chars now. 59 Char/uchar parameters are now written int/unsigned, to avoid possible
|
/PHP-5.6/ext/date/lib/ |
H A D | parse_iso_intervals.re | 66 typedef unsigned char uchar; 70 #define YYCTYPE uchar 95 uchar *lim, *str, *ptr, *cur, *tok, *pos; 249 uchar *cursor = s->cur;
|
H A D | parse_iso_intervals.c | 68 typedef unsigned char uchar; typedef 72 #define YYCTYPE uchar 97 uchar *lim, *str, *ptr, *cur, *tok, *pos; 251 uchar *cursor = s->cur; in scan()
|
H A D | parse_date.re | 99 /* Some compilers like AIX, defines uchar in sys/types.h */ 100 #undef uchar 101 typedef unsigned char uchar; 105 #define YYCTYPE uchar 157 uchar *lim, *str, *ptr, *cur, *tok, *pos; 313 uchar *fill(Scanner *s, uchar *cursor){ 325 uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar)); 819 uchar *cursor = s->cur;
|
H A D | parse_date.c | 102 #undef uchar 103 typedef unsigned char uchar; typedef 107 #define YYCTYPE uchar 159 uchar *lim, *str, *ptr, *cur, *tok, *pos; 315 uchar *fill(Scanner *s, uchar *cursor){ 327 uchar *buf = (uchar*) timelib_malloc(((s->lim - s->bot) + BSIZE)*sizeof(uchar)); 821 uchar *cursor = s->cur; in scan()
|
Completed in 45 milliseconds