Lines Matching refs:fS32

637             script = SkParse::FindHex(script, (uint32_t*)&operand.fS32);  in innerScript()
651 dotCheck = SkParse::FindS32(script, &operand.fS32); in innerScript()
766 operand.fS32 = 0; in innerScript()
829 operand.fS32 = 0; in innerScript()
890 int index = scriptValue.fOperand.fS32; in handleArrayIndexer()
1161 indexOperand.fS32; in logicalOp()
1193 suppress.fSuppress = ifValue.fOperand.fS32 == 0; in logicalOp()
1215 int32_t topInt = fOperandStack.top().fS32; in logicalOp()
1308 operand1.fScalar = IntToScalar(operand1.fS32); in processOp()
1312 operand2.fScalar = IntToScalar(operand2.fS32); in processOp()
1327 operand1.fS32 = SkScalarFloorToInt(operand1.fScalar); in processOp()
1342 operand2.fS32 = SkScalarFloorToInt(operand2.fScalar); in processOp()
1352 operand2.fS32 += operand1.fS32; in processOp()
1366 operand2.fS32 &= operand1.fS32; in processOp()
1369 operand2.fS32 = ~operand2.fS32; in processOp()
1372 operand2.fS32 |= operand1.fS32; in processOp()
1375 if (operand2.fS32 == 0) { in processOp()
1376 … operand2.fS32 = operand1.fS32 == 0 ? SK_NaN32 : operand1.fS32 > 0 ? SK_MaxS32 : -SK_MaxS32; in processOp()
1379 int32_t original = operand2.fS32; in processOp()
1380 operand2.fS32 = operand1.fS32 / operand2.fS32; in processOp()
1381 if (original * operand2.fS32 == operand1.fS32) in processOp()
1383 operand2.fS32 = original; in processOp()
1393 operand2.fS32 = operand1.fS32 == operand2.fS32; in processOp()
1396 operand2.fS32 = operand1.fScalar == operand2.fScalar; in processOp()
1400 operand2.fS32 = *operand1.fString == *operand2.fString; in processOp()
1404 operand2.fS32 = operand1.fS32 >= operand2.fS32; in processOp()
1407 operand2.fS32 = operand1.fScalar >= operand2.fScalar; in processOp()
1411 operand2.fS32 = strcmp(operand1.fString->c_str(), operand2.fString->c_str()) >= 0; in processOp()
1415 operand2.fS32 = !! operand2.fS32; // really, ToBool in processOp()
1418 operand2.fS32 = ! operand2.fS32; in processOp()
1424 operand2.fS32 = -operand2.fS32; in processOp()
1430 operand2.fS32 = operand1.fS32 % operand2.fS32; in processOp()
1436 operand2.fS32 *= operand1.fS32; in processOp()
1442 operand2.fS32 = operand1.fS32 << operand2.fS32; in processOp()
1445 operand2.fS32 = operand1.fS32 >> operand2.fS32; in processOp()
1448 operand2.fS32 = operand1.fS32 - operand2.fS32; in processOp()
1454 operand2.fS32 ^= operand1.fS32; in processOp()
1506 operand.fS32 = SkScalarFloorToInt(operand.fScalar); in ConvertTo()
1512 success = SkParse::FindS32(operand.fString->c_str(), &operand.fS32) != nullptr; in ConvertTo()
1517 if (operand.fS32 == SK_NaN32) in ConvertTo()
1519 else if (SkAbs32(operand.fS32) == SK_MaxS32) in ConvertTo()
1520 operand.fScalar = SkSign32(operand.fS32) * SK_ScalarMax; in ConvertTo()
1522 operand.fScalar = SkIntToScalar(operand.fS32); in ConvertTo()
1536 strPtr->appendS32(operand.fS32); in ConvertTo()
1629 string->appendS32(value.fOperand.fS32); in ValueToString()
1876 SkASSERT(value.fOperand.fS32 == scriptTests[index].fIntAnswer); in UnitTest()