Home | History | Annotate | Download | only in IR

Lines Matching refs:SrcBitSize

297     unsigned SrcBitSize =
301 if (ByteStart*8 >= SrcBitSize)
306 if (ByteStart == 0 && ByteSize*8 == SrcBitSize)
311 if ((SrcBitSize&7) == 0 && (ByteStart+ByteSize)*8 <= SrcBitSize)
316 if ((ByteStart+ByteSize)*8 < SrcBitSize) {
317 assert((SrcBitSize&7) && "Shouldn't get byte sized case here");