Lines Matching refs:EleCount
468 uint32_t EleCount = cast<FixedVectorType>(ArgType)->getNumElements(); in lowerPrintfForGpu() local
470 uint32_t TotalSize = EleCount * EleSize; in lowerPrintfForGpu()
471 if (EleCount == 3) { in lowerPrintfForGpu()
481 EleCount = TotalSize / 64; in lowerPrintfForGpu()
485 if (EleCount >= 8) { in lowerPrintfForGpu()
486 EleCount = TotalSize / 64; in lowerPrintfForGpu()
488 } else if (EleCount >= 3) { in lowerPrintfForGpu()
489 EleCount = 1; in lowerPrintfForGpu()
492 EleCount = 1; in lowerPrintfForGpu()
497 if (EleCount >= 3) { in lowerPrintfForGpu()
498 EleCount = TotalSize / 64; in lowerPrintfForGpu()
501 EleCount = 1; in lowerPrintfForGpu()
506 if (EleCount > 1) { in lowerPrintfForGpu()
507 IType = FixedVectorType::get(IType, EleCount); in lowerPrintfForGpu()