Lines Matching refs:vfp_count
521 int vfp_count = 0;
526 PreparePrintfArgument(reg1, &core_count, &vfp_count, &printf_type);
527 PreparePrintfArgument(reg2, &core_count, &vfp_count, &printf_type);
528 PreparePrintfArgument(reg3, &core_count, &vfp_count, &printf_type);
529 PreparePrintfArgument(reg4, &core_count, &vfp_count, &printf_type);
647 int* vfp_count,
658 VIXL_ASSERT(*vfp_count < 4);
659 *printf_type |= 1 << (*core_count + *vfp_count - 1);
660 Vpop(Untyped32, SRegisterList(SRegister(*vfp_count * 2)));
661 Vcvt(F64, F32, DRegister(*vfp_count), SRegister(*vfp_count * 2));
662 *vfp_count += 1;
665 VIXL_ASSERT(*vfp_count < 4);
666 *printf_type |= 1 << (*core_count + *vfp_count - 1);
667 Vpop(Untyped64, DRegisterList(DRegister(*vfp_count)));
668 *vfp_count += 1;