Home
last modified time | relevance | path

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

/external/mesa3d/src/util/
Dsoftfloat.c240 _mesa_short_shift_left_m(uint8_t size_words, const uint32_t *a, uint8_t dist, uint32_t *m_out) in _mesa_short_shift_left_m() argument
247 index = index_word_hi(size_words); in _mesa_short_shift_left_m()
248 last_index = index_word_lo(size_words); in _mesa_short_shift_left_m()
272 _mesa_shift_left_m(uint8_t size_words, const uint32_t *a, uint32_t dist, uint32_t *m_out) in _mesa_shift_left_m() argument
279 if (word_dist < size_words) { in _mesa_shift_left_m()
280 a += index_multiword_lo_but(size_words, word_dist); in _mesa_shift_left_m()
283 _mesa_short_shift_left_m(size_words - word_dist, a, inner_dist, in _mesa_shift_left_m()
284 m_out + index_multiword_hi_but(size_words, word_dist)); in _mesa_shift_left_m()
288 uint32_t *dest = m_out + index_word_hi(size_words); in _mesa_shift_left_m()
289 a += index_word_hi(size_words - word_dist); in _mesa_shift_left_m()
[all …]
/external/pigweed/pw_thread_freertos/public/pw_thread_freertos/
Doptions.h66 constexpr Options set_stack_size(size_t size_words) { in set_stack_size() argument
67 PW_DASSERT(size_words >= config::kMinimumStackSizeWords); in set_stack_size()
68 stack_size_words_ = size_words; in set_stack_size()