Home | History | Annotate | Download | only in AST

Lines Matching defs:CharByteWidth

582   int CharByteWidth = 0;
586 CharByteWidth = target.getCharWidth();
589 CharByteWidth = target.getWCharWidth();
592 CharByteWidth = target.getChar16Width();
595 CharByteWidth = target.getChar32Width();
598 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
599 CharByteWidth /= 8;
600 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
602 return CharByteWidth;
632 SL->CharByteWidth = 0;
645 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
646 assert((Str.size()%CharByteWidth == 0)
647 && "size of data must be multiple of CharByteWidth");
648 Length = Str.size()/CharByteWidth;
650 switch(CharByteWidth) {
670 assert(false && "unsupported CharByteWidth");