Lines Matching refs:vectorSize
29 static void convertToRsType(const string& name, string* dataType, char* vectorSize) { in convertToRsType() argument
35 *vectorSize = lastChar; in convertToRsType()
37 *vectorSize = '1'; in convertToRsType()
109 char vectorSize,
113 char vectorSize,
319 char vectorSize; in writeJavaInputAllocationDefinition() local
320 convertToRsType(param.rsType, &dataType, &vectorSize); in writeJavaInputAllocationDefinition()
326 writeJavaRandomCompatibleFloatAllocation(dataType, seed, vectorSize, in writeJavaInputAllocationDefinition()
330 writeJavaRandomCompatibleIntegerAllocation(dataType, seed, vectorSize, in writeJavaInputAllocationDefinition()
336 << vectorSize << ", " << seed << ", " << param.minValue << ", " << param.maxValue in writeJavaInputAllocationDefinition()
342 *mJava << "createRandomAllocation(mRS, Element.DataType." << dataType << ", " << vectorSize in writeJavaInputAllocationDefinition()
349 const string& dataType, const string& seed, char vectorSize, in writeJavaRandomCompatibleFloatAllocation() argument
352 << "(mRS, Element.DataType." << dataType << ", " << vectorSize << ", " << seed << ", "; in writeJavaRandomCompatibleFloatAllocation()
381 const string& dataType, const string& seed, char vectorSize, in writeJavaRandomCompatibleIntegerAllocation() argument
384 << "(mRS, Element.DataType." << dataType << ", " << vectorSize << ", " << seed << ", "; in writeJavaRandomCompatibleIntegerAllocation()
402 char vectorSize; in writeJavaOutputAllocationDefinition() local
403 convertToRsType(param.rsType, &dataType, &vectorSize); in writeJavaOutputAllocationDefinition()
405 << "getElement(mRS, Element.DataType." << dataType << ", " << vectorSize in writeJavaOutputAllocationDefinition()
413 string vectorSize = "1"; in writeJavaVerifyScalarMethod() local
416 if (p->mVectorSize != "1" && p->mVectorSize != vectorSize) { in writeJavaVerifyScalarMethod()
417 if (vectorSize == "1") { in writeJavaVerifyScalarMethod()
418 vectorSize = p->mVectorSize; in writeJavaVerifyScalarMethod()
420 cerr << "Error. Had vector " << vectorSize << " and " << p->mVectorSize << "\n"; in writeJavaVerifyScalarMethod()
430 mJava->indent() << "for (int j = 0; j < " << vectorSize << " ; j++)"; in writeJavaVerifyScalarMethod()