Home | History | Annotate | Download | only in AST

Lines Matching defs:CharByteWidth

771   int CharByteWidth = 0;
775 CharByteWidth = target.getCharWidth();
778 CharByteWidth = target.getWCharWidth();
781 CharByteWidth = target.getChar16Width();
784 CharByteWidth = target.getChar32Width();
787 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
788 CharByteWidth /= 8;
789 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
791 return CharByteWidth;
825 SL->CharByteWidth = 0;
931 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
932 assert((Str.size()%CharByteWidth == 0)
933 && "size of data must be multiple of CharByteWidth");
934 Length = Str.size()/CharByteWidth;
936 switch(CharByteWidth) {
956 assert(false && "unsupported CharByteWidth");