Home
last modified time | relevance | path

Searched refs:sourceValue (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/mlir/lib/Transforms/
DBufferDeallocation.cpp258 Value sourceValue = in introduceBlockArgCopy() local
262 Value alloc = introduceBufferCopy(sourceValue, terminator); in introduceBlockArgCopy()
368 Value sourceValue = terminator->getOperand(operandIndex); in introduceCopiesForRegionSuccessors() local
370 Value alloc = introduceBufferCopy(sourceValue, terminator); in introduceCopiesForRegionSuccessors()
380 Value introduceBufferCopy(Value sourceValue, Operation *terminator) { in introduceBufferCopy() argument
389 if (copiedValues.contains(sourceValue)) in introduceBufferCopy()
390 return sourceValue; in introduceBufferCopy()
392 auto memRefType = sourceValue.getType().cast<MemRefType>(); in introduceBufferCopy()
402 terminator->getLoc(), sourceValue, shapeElement.index())); in introduceBufferCopy()
412 builder.create<linalg::CopyOp>(terminator->getLoc(), sourceValue, alloc); in introduceBufferCopy()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestUnits.java1012 final Rational sourceValue = Rational.of(test[0]); in TestSpecialCases() local
1016 … final Rational conversion = converter.convert(sourceValue, sourceUnit, targetUnit, SHOW_DATA); in TestSpecialCases()
1017 …if (!assertEquals(count++ + ") " + sourceValue + " " + sourceUnit + " ⟹ " + targetUnit, expectedVa… in TestSpecialCases()
1018 converter.convert(sourceValue, sourceUnit, targetUnit, SHOW_DATA); in TestSpecialCases()
2060 …String sourceValue = UnitPathType.unit.getTrans(cldrFile, "long", shortUnit, sourcePlural.value, s… in TestDerivedCase() local
2068 , value, sourceValue); in TestDerivedCase()
/external/cldr/tools/java/org/unicode/cldr/util/
DUnitConverter.java1318 …public Rational convert(Rational sourceValue, String sourceUnit, final String targetUnit, boolean … in convert() argument
1320 … System.out.println(showRational("\nconvert:\t", sourceValue, sourceUnit) + " ⟹ " + targetUnit); in convert()
1330 Rational intermediateResult = sourceConversionInfo.convert(sourceValue); in convert()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp4224 std::unique_ptr<CFXJSE_Value> sourceValue = GetSimpleValue(pThis, args, 0); in Stuff() local
4227 if (!sourceValue->IsNull() && !startValue->IsNull() && in Stuff()
4229 bsSource = ValueToUTF8String(sourceValue.get()); in Stuff()