Home | History | Annotate | Download | only in Analysis

Lines Matching full:eltsize

339       uint64_t EltSize = DL.getTypeAllocSize(CS->getOperand(Index)->getType());
341 if (ByteOffset < EltSize &&
370 uint64_t EltSize = DL.getTypeAllocSize(EltTy);
371 uint64_t Index = ByteOffset / EltSize;
372 uint64_t Offset = ByteOffset - Index * EltSize;
384 uint64_t BytesWritten = EltSize - Offset;
385 assert(BytesWritten <= EltSize && "Not indexing into this element?");