Lines Matching refs:maskbitslog2
1245 uint32_t maskbitslog2 = getGNUHashMaskbitslog2(hashed_sym_cnt); in emitGNUHashTab() local
1246 uint32_t maskbits = 1u << maskbitslog2; in emitGNUHashTab()
1252 maskwords = 1 << (maskbitslog2 - shift1); in emitGNUHashTab()
1253 shift2 = maskbitslog2; in emitGNUHashTab()
2726 uint32_t maskbitslog2 = 1; in getGNUHashMaskbitslog2() local
2728 ++maskbitslog2; in getGNUHashMaskbitslog2()
2730 if (maskbitslog2 < 3) in getGNUHashMaskbitslog2()
2731 maskbitslog2 = 5; in getGNUHashMaskbitslog2()
2732 else if (((1U << (maskbitslog2 - 2)) & pNumOfSymbols) != 0) in getGNUHashMaskbitslog2()
2733 maskbitslog2 += 3; in getGNUHashMaskbitslog2()
2735 maskbitslog2 += 2; in getGNUHashMaskbitslog2()
2737 if (config().targets().bitclass() == 64 && maskbitslog2 == 5) in getGNUHashMaskbitslog2()
2738 maskbitslog2 = 6; in getGNUHashMaskbitslog2()
2740 return maskbitslog2; in getGNUHashMaskbitslog2()