Home | History | Annotate | Download | only in animator

Lines Matching refs:fScalar

659                 script = SkParse::FindScalar(script, &operand.fScalar);
1160 int index = indexType == kScalar ? SkScalarFloor(indexOperand.fScalar) :
1308 operand1.fScalar = IntToScalar(operand1.fS32);
1312 operand2.fScalar = IntToScalar(operand2.fS32);
1319 const char* result = SkParse::FindScalar(operand1.fString->c_str(), &operand1.fScalar);
1327 operand1.fS32 = SkScalarFloor(operand1.fScalar);
1334 const char* result = SkParse::FindScalar(operand2.fString->c_str(), &operand2.fScalar);
1342 operand2.fS32 = SkScalarFloor(operand2.fScalar);
1355 operand2.fScalar += operand1.fScalar;
1387 if (operand2.fScalar == 0)
1388 operand2.fScalar = operand1.fScalar == 0 ? SK_ScalarNaN : operand1.fScalar > 0 ? SK_ScalarMax : -SK_ScalarMax;
1390 operand2.fScalar = SkScalarDiv(operand1.fScalar, operand2.fScalar);
1396 operand2.fS32 = operand1.fScalar == operand2.fScalar;
1407 operand2.fS32 = operand1.fScalar >= operand2.fScalar;
1427 operand2.fScalar = -operand2.fScalar;
1433 operand2.fScalar = SkScalarMod(operand1.fScalar, operand2.fScalar);
1439 operand2.fScalar = SkScalarMul(operand1.fScalar, operand2.fScalar);
1451 operand2.fScalar = operand1.fScalar - operand2.fScalar;
1506 operand.fS32 = SkScalarFloor(operand.fScalar);
1518 operand.fScalar = SK_ScalarNaN;
1520 operand.fScalar = SkSign32(operand.fS32) * SK_ScalarMax;
1522 operand.fScalar = SkIntToScalar(operand.fS32);
1528 success = SkParse::FindScalar(operand.fString->c_str(), &operand.fScalar) != NULL;
1544 strPtr->appendScalar(operand.fScalar);
1633 string->appendScalar(value.fOperand.fScalar);
1896 error = SkScalarAbs(value.fOperand.fScalar - scriptTests[index].fScalarAnswer);