Home | History | Annotate | Download | only in AST

Lines Matching refs:CharByteWidth

736   int CharByteWidth = 0;
740 CharByteWidth = target.getCharWidth();
743 CharByteWidth = target.getWCharWidth();
746 CharByteWidth = target.getChar16Width();
749 CharByteWidth = target.getChar32Width();
752 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
753 CharByteWidth /= 8;
754 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
756 return CharByteWidth;
786 SL->CharByteWidth = 0;
892 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
893 assert((Str.size()%CharByteWidth == 0)
894 && "size of data must be multiple of CharByteWidth");
895 Length = Str.size()/CharByteWidth;
897 switch(CharByteWidth) {
917 assert(false && "unsupported CharByteWidth");