Lines Matching refs:fS32

75             index = operand[1].fS32;  in executeTokens()
127 memcpy(&operand[registerLoad].fS32, opCode, sizeof(int32_t)); in executeTokens()
168 if (operand[0].fS32 == 0) in executeTokens()
179 if (operand[0].fS32 != 0) in executeTokens()
193 strPtr->appendS32(operand[op - SkScriptEngine2::kIntToString].fS32); in executeTokens()
200 …perand[0].fScalar = SkScriptEngine2::IntToScalar(operand[op - SkScriptEngine2::kIntToScalar].fS32); in executeTokens()
203 if (SkParse::FindS32(operand[0].fString->c_str(), &operand[0].fS32) == nullptr) in executeTokens()
213 operand[0].fS32 = SkScalarFloorToInt(operand[0].fScalar); in executeTokens()
217 operand[0].fS32 += operand[1].fS32; in executeTokens()
230 operand[0].fS32 &= operand[1].fS32; in executeTokens()
233 operand[0].fS32 = ~operand[0].fS32; in executeTokens()
236 operand[0].fS32 |= operand[1].fS32; in executeTokens()
239 SkASSERT(operand[1].fS32 != 0); in executeTokens()
240 if (operand[1].fS32 == 0) in executeTokens()
241 operand[0].fS32 = operand[0].fS32 == 0 ? SK_NaN32 : in executeTokens()
242 operand[0].fS32 > 0 ? SK_MaxS32 : -SK_MaxS32; in executeTokens()
244 if (operand[1].fS32 != 0) // throw error on divide by zero? in executeTokens()
245 operand[0].fS32 /= operand[1].fS32; in executeTokens()
255 operand[0].fS32 = operand[0].fS32 == operand[1].fS32; in executeTokens()
258 operand[0].fS32 = operand[0].fScalar == operand[1].fScalar; in executeTokens()
261 operand[0].fS32 = *operand[0].fString == *operand[1].fString; in executeTokens()
264 operand[0].fS32 = operand[0].fS32 >= operand[1].fS32; in executeTokens()
267 operand[0].fS32 = operand[0].fScalar >= operand[1].fScalar; in executeTokens()
270 operand[0].fS32 = strcmp(operand[0].fString->c_str(), operand[1].fString->c_str()) >= 0; in executeTokens()
273 operand[0].fS32 = !! operand[0].fS32; in executeTokens()
276 operand[0].fS32 = ! operand[0].fS32; in executeTokens()
279 operand[0].fS32 = -operand[0].fS32; in executeTokens()
285 operand[0].fS32 %= operand[1].fS32; in executeTokens()
291 operand[0].fS32 *= operand[1].fS32; in executeTokens()
297 operand[0].fS32 <<= operand[1].fS32; in executeTokens()
300 operand[0].fS32 >>= operand[1].fS32; in executeTokens()
303 operand[0].fS32 -= operand[1].fS32; in executeTokens()
309 operand[0].fS32 ^= operand[1].fS32; in executeTokens()