Searched refs:fline (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd.c | 1542 int fline; local 1551 fline = (c - f->offset) * f->h * f->w; 1554 if (f->data[fline + cy * f->w + cx]) { 1568 int fline; local 1577 fline = (c - f->offset) * f->h * f->w; 1580 if (f->data[fline + cy * f->w + cx]) {
|
| H A D | xbm.c | 35 char fline[MAX_XBM_LINE_SIZE]; local 51 while (fgets(fline, MAX_XBM_LINE_SIZE, fd)) { 52 fline[MAX_XBM_LINE_SIZE-1] = '\0'; 53 if (strlen(fline) == MAX_XBM_LINE_SIZE-1) { 56 if (sscanf(fline, "#define %s %d", iname, &value) == 2) { 70 if ( sscanf(fline, "static unsigned char %s = {", iname) == 1 71 || sscanf(fline, "static char %s = {", iname) == 1) 74 } else if (sscanf(fline, "static unsigned short %s = {", iname) == 1 75 || sscanf(fline, "static short %s = {", iname) == 1)
|
| /PHP_5_3/ext/dba/libinifile/ |
| H A D | inifile.c | 169 char *fline; local 173 while ((fline = php_stream_gets(dba->fp, NULL, 0)) != NULL) { 174 if (fline) { 175 if (fline[0] == '[') { 179 pos = strchr(fline+1, ']'); 183 ln->key.group = etrim(fline+1); 186 efree(fline); 189 efree(fline); 193 pos = strchr(fline, '='); 203 ln->key.name = etrim(fline); [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | image.c | 1012 char *fline; local 1024 while ((fline=php_stream_gets(stream, NULL, 0)) != NULL) { 1025 iname = estrdup(fline); /* simple way to get necessary buffer of required size */ 1026 if (sscanf(fline, "#define %s %d", iname, &value) == 2) { 1048 efree(fline); 1051 if (fline) { 1052 efree(fline);
|
| /PHP_5_3/ext/gd/ |
| H A D | gd.c | 3570 int cx, cy, px, py, fline; local 3578 fline = (c - f->offset) * f->h * f->w; 3581 if (f->data[fline + cy * f->w + cx]) {
|
Completed in 39 milliseconds