Home | History | Annotate | Download | only in fpe

Lines Matching defs:offset

75 fpu_const(struct fpn *fp, uint32_t offset)
84 if (offset == 0) {
86 } else if (0xb <= offset && offset <= 0xe) {
87 r = &constrom[offset - 0xb + 1];
88 } else if (0x30 <= offset && offset <= 0x3f) {
89 r = &constrom[offset - 0x30 + 6];
91 /* return 0.0 for anything else (incl. valid offset 0xf) */
103 int dstreg, offset;
107 offset = insn->is_word1 & 0x7F;
110 (void)fpu_const(&fe->fe_f3, offset);