• Home
  • Raw
  • Download

Lines Matching refs:operand1

1263     SkOperand operand1 = operand2; // !!! not really needed, suppresses warning  in processOp()  local
1266 fOperandStack.pop(&operand1); in processOp()
1269 SkTSwap(operand1, operand2); in processOp()
1277 val.fOperand = operand1; in processOp()
1282 operand1 = val.fOperand; in processOp()
1299 convertToString(operand1, type1 == kInt ? SkType_Int : SkType_Float); in processOp()
1308 operand1.fScalar = IntToScalar(operand1.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()
1352 operand2.fS32 += operand1.fS32; in processOp()
1355 operand2.fScalar += operand1.fScalar; in processOp()
1358 if (fTrackString.find(operand1.fString) < 0) { in processOp()
1359 operand1.fString = new SkString(*operand1.fString); in processOp()
1360 track(operand1.fString); in processOp()
1362 operand1.fString->append(*operand2.fString); in processOp()
1363 operand2 = operand1; in processOp()
1366 operand2.fS32 &= operand1.fS32; in processOp()
1372 operand2.fS32 |= operand1.fS32; in processOp()
1376 … operand2.fS32 = operand1.fS32 == 0 ? SK_NaN32 : operand1.fS32 > 0 ? SK_MaxS32 : -SK_MaxS32; in processOp()
1380 operand2.fS32 = operand1.fS32 / operand2.fS32; in processOp()
1381 if (original * operand2.fS32 == operand1.fS32) 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()
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()
1430 operand2.fS32 = operand1.fS32 % operand2.fS32; in processOp()
1433 operand2.fScalar = SkScalarMod(operand1.fScalar, operand2.fScalar); in processOp()
1436 operand2.fS32 *= operand1.fS32; in processOp()
1439 operand2.fScalar = SkScalarMul(operand1.fScalar, operand2.fScalar); 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()
1451 operand2.fScalar = operand1.fScalar - operand2.fScalar; in processOp()
1454 operand2.fS32 ^= operand1.fS32; in processOp()