Lines Matching refs:EleCount
467 uint32_t EleCount = cast<FixedVectorType>(ArgType)->getNumElements(); in lowerPrintfForGpu() local
469 uint32_t TotalSize = EleCount * EleSize; in lowerPrintfForGpu()
470 if (EleCount == 3) { in lowerPrintfForGpu()
480 EleCount = TotalSize / 64; in lowerPrintfForGpu()
484 if (EleCount >= 8) { in lowerPrintfForGpu()
485 EleCount = TotalSize / 64; in lowerPrintfForGpu()
487 } else if (EleCount >= 3) { in lowerPrintfForGpu()
488 EleCount = 1; in lowerPrintfForGpu()
491 EleCount = 1; in lowerPrintfForGpu()
496 if (EleCount >= 3) { in lowerPrintfForGpu()
497 EleCount = TotalSize / 64; in lowerPrintfForGpu()
500 EleCount = 1; in lowerPrintfForGpu()
505 if (EleCount > 1) { in lowerPrintfForGpu()
506 IType = FixedVectorType::get(IType, EleCount); in lowerPrintfForGpu()