Home
last modified time | relevance | path

Searched refs:shiftcount (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
DAsmWriter.cpp765 int shiftcount=12; in WriteConstantInternal() local
767 for (int j=0; j<width; j+=4, shiftcount-=4) { in WriteConstantInternal()
768 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal()
773 if (shiftcount == 0 && j+4 < width) { in WriteConstantInternal()
775 shiftcount = 64; in WriteConstantInternal()
777 shiftcount = width-j-4; in WriteConstantInternal()
791 int shiftcount=60; in WriteConstantInternal() local
793 for (int j=0; j<width; j+=4, shiftcount-=4) { in WriteConstantInternal()
794 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal()
799 if (shiftcount == 0 && j+4 < width) { in WriteConstantInternal()
[all …]
/external/bison/
DChangeLog-201220122 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.