Home | History | Annotate | Download | only in platform

Lines Matching defs:fp

67   // what FP ABI used.
68 // GCC versions 4.4 and below don't support hard-fp.
69 // GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
92 #error "Your version of GCC does not report the FP ABI compiled for." \
150 FILE* fp = fopen("/proc/self/maps", "r");
151 if (fp == NULL) return result;
162 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break;
163 if (fscanf(fp, " %c%c%c%c", &attr_r, &attr_w, &attr_x, &attr_p) != 4) break;
170 c = getc(fp);
177 ungetc(c, fp);
180 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
196 c = getc(fp);
202 fclose(fp);