Searched refs:shift_amount (Results 1 – 3 of 3) sorted by relevance
309 Int shift_amount; in tns_decode_coef() local443 shift_amount = 0; in tns_decode_coef()448 shift_amount++; in tns_decode_coef()461 shift_amount--; in tns_decode_coef()468 if (shift_amount >= 0) in tns_decode_coef()473 *(pLPC++) = *(pA++) << (16 - shift_amount); in tns_decode_coef()478 q_lpc -= shift_amount; in tns_decode_coef()487 shift_amount = q_lpc - 15; in tns_decode_coef()492 *(pLPC++) >>= shift_amount; in tns_decode_coef()495 q_lpc -= shift_amount; in tns_decode_coef()
546 void lshift32(RegisterID shift_amount, RegisterID dest) in lshift32() argument550 if (shift_amount != X86::ecx) { in lshift32()551 swap(shift_amount, X86::ecx); in lshift32()554 if (dest == shift_amount) in lshift32()558 m_assembler.shll_CLr(shift_amount); in lshift32()563 swap(shift_amount, X86::ecx); in lshift32()640 void rshiftPtr(RegisterID shift_amount, RegisterID dest) in rshiftPtr() argument645 if (shift_amount != X86::ecx) { in rshiftPtr()646 swap(shift_amount, X86::ecx); in rshiftPtr()649 if (dest == shift_amount) in rshiftPtr()[all …]
528 static const int shift_amount[2] = { 3, 7 }; // For divides by 8 or 128 variable535 return static_cast<int>((s + add_amount[i]) >> shift_amount[i]); in ClassIndex()