Home
last modified time | relevance | path

Searched refs:resultIdx (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/io/
Dufmt_cmn.cpp171 int32_t count, resultIdx, incVal, offset; in ufmt_utop() local
203 resultIdx = (int32_t)(sizeof(void*) - 1); in ufmt_utop()
206 resultIdx = 0; in ufmt_utop()
219 result.bytes[resultIdx] = byte; in ufmt_utop()
220 resultIdx += incVal; in ufmt_utop()
/external/llvm-project/mlir/include/mlir/Interfaces/
DVectorInterfaces.td189 Provide a zip function to coiterate on 2 running indices: `resultIdx` and
197 for (int64_t resultIdx = 0,
200 resultIdx < eResult;
201 ++resultIdx, ++indicesIdx)
202 fun(resultIdx, indicesIdx);
/external/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp533 size_t resultIdx = 0; in writeBinaryExpression() local
540 result[resultIdx++] = sum; in writeBinaryExpression()
542 SkASSERT(resultIdx == result.slots()); in writeBinaryExpression()
642 size_t resultIdx = 0; in writeAggregationConstructor() local
646 result[resultIdx++] = tmp[tmpSlot]; in writeAggregationConstructor()
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorTransforms.cpp2133 xferOp.zipResultAndIndexing([&](int64_t resultIdx, int64_t indicesIdx) { in createScopedInBoundsCond() argument
2137 if (!xferOp.isMaskedDim(resultIdx)) in createScopedInBoundsCond()
2139 int64_t vectorSize = xferOp.getVectorType().getDimSize(resultIdx); in createScopedInBoundsCond()
2224 xferOp.zipResultAndIndexing([&](int64_t resultIdx, int64_t indicesIdx) { in createScopedSubViewIntersection() argument
2227 Value dimAlloc = std_dim(alloc, resultIdx); in createScopedSubViewIntersection()
DVectorOps.cpp2097 static bool isInBounds(TransferOp op, int64_t resultIdx, int64_t indicesIdx) { in isInBounds() argument
2108 int64_t vectorSize = op.getVectorType().getDimSize(resultIdx); in isInBounds()
2121 op.zipResultAndIndexing([&](int64_t resultIdx, int64_t indicesIdx) { in foldTransferMaskAttribute() argument
2123 if (!op.isMaskedDim(resultIdx)) { in foldTransferMaskAttribute()
2129 auto inBounds = isInBounds(op, resultIdx, indicesIdx); in foldTransferMaskAttribute()