Home | History | Annotate | Download | only in src

Lines Matching defs:fp

292   // On EABI ARM targets this is required for fp correctness in the
483 FILE* fp = fopen("/proc/self/maps", "r");
484 if (fp == NULL) return;
496 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break;
497 if (fscanf(fp, " %c%c%c%c", &attr_r, &attr_w, &attr_x, &attr_p) != 4) break;
504 c = getc(fp);
510 ungetc(c, fp); // Push the '/' back into the stream to be read below.
513 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
529 c = getc(fp);
535 fclose(fp);
1055 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
1059 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
1065 sample->fp = reinterpret_cast<Address>(mcontext.gregs[R11]);
1069 sample->fp = reinterpret_cast<Address>(mcontext.arm_fp);
1074 sample->fp = reinterpret_cast<Address>(mcontext.gregs[30]);