Home
last modified time | relevance | path

Searched refs:vectorLength (Results 1 – 9 of 9) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderFConvertTests.cpp326 info.vectorLength = vectorLength_; in calculate()
341 size_t vectorLength; member
350 std::vector<deUint8> packFloats (const std::vector<T>& values, size_t vectorLength) in packFloats() argument
352 BufferSizeInfo sizeInfo = BufferSizeInfo::calculate<T>(values.size(), vectorLength); in packFloats()
358 for (size_t j = 0; j < vectorLength; ++j) in packFloats()
359 vectorPtr[j] = values[i*vectorLength + j]; in packFloats()
368 std::vector<T> unpackFloats (const std::vector<deUint8>& memory, size_t vectorLength, size_t expect… in unpackFloats() argument
370 DE_ASSERT(vectorLength >= kMinVectorLength && vectorLength <= kMaxVectorLength); in unpackFloats()
372 const size_t effectiveLength = kEffectiveLength[vectorLength]; in unpackFloats()
380 const size_t numStoredValues = numStoredVectors * vectorLength; in unpackFloats()
[all …]
/external/llvm-project/mlir/lib/Dialect/OpenACC/IR/
DOpenACC.cpp201 OptionalParseResult async, numGangs, numWorkers, vectorLength; in parseParallelOp() local
228 vectorLength = parseOptionalOperandAndType( in parseParallelOp()
230 if (vectorLength.hasValue() && failed(*vectorLength)) in parseParallelOp()
330 static_cast<int32_t>(vectorLength.hasValue() ? 1 : 0), in parseParallelOp()
377 if (Value vectorLength = op.vectorLength()) in print() local
379 << vectorLength << ": " << vectorLength.getType() << ")"; in print()
589 if (Value vectorLength = op.vectorLength()) in print() local
590 printer << "(" << vectorLength << ": " << vectorLength.getType() << ")"; in print()
/external/fonttools/Tests/misc/
DarrayTools_test.py3 vectorLength, asInt16, normRect, scaleRect, offsetRect, insetRect,
44 assert vectorLength((1, 1)) == math.sqrt(2)
/external/llvm-project/mlir/test/lib/Transforms/
DTestSparsification.cpp31 Option<int32_t> vectorLength{ member
93 vectorLength, typeOption(ptrType), in runOnFunction()
/external/llvm-project/flang/lib/Lower/
DOpenACC.cpp140 mlir::Value vectorLength; in genACC() local
188 vectorLength = fir::getBase(converter.genExprValue( in genACC()
226 addOperand(operands, operandSegments, vectorLength); in genACC()
268 mlir::Value vectorLength; in genACCParallelOp() local
328 vectorLength = fir::getBase(converter.genExprValue( in genACCParallelOp()
406 addOperand(operands, operandSegments, vectorLength); in genACCParallelOp()
/external/fonttools/Lib/fontTools/misc/
DarrayTools.py91 def vectorLength(vector): function
/external/llvm-project/mlir/include/mlir/Dialect/Linalg/Transforms/
DTransforms.h845 : parallelizationStrategy(p), vectorizationStrategy(v), vectorLength(vl), in SparsificationOptions()
853 unsigned vectorLength; member
/external/autotest/client/deps/webgl_mpd/src/resources/
DJ3DIMath.js837 scale[0] = row0.vectorLength();
845 scale[1] = row1.vectorLength();
856 scale[2] = row2.vectorLength();
1016 J3DIVector3.prototype.vectorLength = function() method in J3DIVector3
/external/llvm-project/mlir/include/mlir/Dialect/OpenACC/
DOpenACCOps.td102 Optional<IntOrIndex>:$vectorLength,
347 Optional<IntOrIndex>:$vectorLength,