Lines Matching refs:maskbitslog2
1190 uint32_t maskbitslog2 = getGNUHashMaskbitslog2(hashed_sym_cnt); in emitGNUHashTab() local
1191 uint32_t maskbits = 1u << maskbitslog2; in emitGNUHashTab()
1197 maskwords = 1 << (maskbitslog2 - shift1); in emitGNUHashTab()
1198 shift2 = maskbitslog2; in emitGNUHashTab()
2615 uint32_t maskbitslog2 = 1; in getGNUHashMaskbitslog2() local
2617 ++maskbitslog2; in getGNUHashMaskbitslog2()
2619 if (maskbitslog2 < 3) in getGNUHashMaskbitslog2()
2620 maskbitslog2 = 5; in getGNUHashMaskbitslog2()
2621 else if (((1U << (maskbitslog2 - 2)) & pNumOfSymbols) != 0) in getGNUHashMaskbitslog2()
2622 maskbitslog2 += 3; in getGNUHashMaskbitslog2()
2624 maskbitslog2 += 2; in getGNUHashMaskbitslog2()
2626 if (config().targets().bitclass() == 64 && maskbitslog2 == 5) in getGNUHashMaskbitslog2()
2627 maskbitslog2 = 6; in getGNUHashMaskbitslog2()
2629 return maskbitslog2; in getGNUHashMaskbitslog2()