Lines Matching refs:fScalar
659 script = SkParse::FindScalar(script, &operand.fScalar); in innerScript()
1160 int index = indexType == kScalar ? SkScalarFloorToInt(indexOperand.fScalar) : in logicalOp()
1308 operand1.fScalar = IntToScalar(operand1.fS32); in processOp()
1312 operand2.fScalar = IntToScalar(operand2.fS32); in processOp()
1319 … const char* result = SkParse::FindScalar(operand1.fString->c_str(), &operand1.fScalar); in processOp()
1327 operand1.fS32 = SkScalarFloorToInt(operand1.fScalar); in processOp()
1334 const char* result = SkParse::FindScalar(operand2.fString->c_str(), &operand2.fScalar); in processOp()
1342 operand2.fS32 = SkScalarFloorToInt(operand2.fScalar); in processOp()
1355 operand2.fScalar += operand1.fScalar; in processOp()
1387 if (operand2.fScalar == 0) in processOp()
1388 …operand2.fScalar = operand1.fScalar == 0 ? SK_ScalarNaN : operand1.fScalar > 0 ? SK_ScalarMax : -S… in processOp()
1390 operand2.fScalar = operand1.fScalar / operand2.fScalar; in processOp()
1396 operand2.fS32 = operand1.fScalar == operand2.fScalar; in processOp()
1407 operand2.fS32 = operand1.fScalar >= operand2.fScalar; in processOp()
1427 operand2.fScalar = -operand2.fScalar; in processOp()
1433 operand2.fScalar = SkScalarMod(operand1.fScalar, operand2.fScalar); in processOp()
1439 operand2.fScalar = SkScalarMul(operand1.fScalar, operand2.fScalar); in processOp()
1451 operand2.fScalar = operand1.fScalar - operand2.fScalar; in processOp()
1506 operand.fS32 = SkScalarFloorToInt(operand.fScalar); in ConvertTo()
1518 operand.fScalar = SK_ScalarNaN; in ConvertTo()
1520 operand.fScalar = SkSign32(operand.fS32) * SK_ScalarMax; in ConvertTo()
1522 operand.fScalar = SkIntToScalar(operand.fS32); in ConvertTo()
1528 … success = SkParse::FindScalar(operand.fString->c_str(), &operand.fScalar) != nullptr; in ConvertTo()
1544 strPtr->appendScalar(operand.fScalar); in ConvertTo()
1633 string->appendScalar(value.fOperand.fScalar); in ValueToString()
1879 error = SkScalarAbs(value.fOperand.fScalar - scriptTests[index].fScalarAnswer); in UnitTest()