Searched refs:fp_count_ (Results 1 – 1 of 1) sorted by relevance
125 : gp_count_(gpc), gp_regs_(gp), fp_count_(fpc), fp_regs_(fp) {} in LinkageAllocator()132 return extra_float_reg >= 0 || fp_offset_ < fp_count_; in CanAllocateFP()134 return extra_double_reg >= 0 || fp_offset_ < fp_count_; in CanAllocateFP()136 return ((fp_offset_ + 1) & ~1) + 1 < fp_count_; in CanAllocateFP()142 return fp_offset_ < fp_count_; in CanAllocateFP()176 DCHECK_LT(fp_offset_, fp_count_); in NextFpReg()183 DCHECK_LT(((fp_offset_ + 1) & ~1) + 1, fp_count_); in NextFpReg()203 DCHECK_LT(fp_offset_, fp_count_); in NextFpReg()239 const int fp_count_; variable