Searched refs:shift_cnt (Results 1 – 1 of 1) sorted by relevance
166 int shift_cnt = 64 - CTZ(value + UINT64_C(1)); in TemplateLoadConst64() local169 if (shift_cnt < 32) { in TemplateLoadConst64()170 a->Dsrl(rd, rd, shift_cnt); in TemplateLoadConst64()172 a->Dsrl32(rd, rd, shift_cnt & 31); in TemplateLoadConst64()175 int shift_cnt = CTZ(value); in TemplateLoadConst64() local176 int64_t tmp = value >> shift_cnt; in TemplateLoadConst64()182 if (shift_cnt < 32) { in TemplateLoadConst64()183 a->Dsll(rd, rd, shift_cnt); in TemplateLoadConst64()185 a->Dsll32(rd, rd, shift_cnt & 31); in TemplateLoadConst64()192 if (shift_cnt < 32) { in TemplateLoadConst64()[all …]