Home
last modified time | relevance | path

Searched refs:size_words (Results 1 – 4 of 4) 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.h75 constexpr Options& set_stack_size(size_t size_words) { in set_stack_size() argument
76 PW_DASSERT(size_words >= config::kMinimumStackSizeWords); in set_stack_size()
77 stack_size_words_ = size_words; in set_stack_size()
/external/perfetto/src/trace_processor/importers/fuchsia/
Dfuchsia_parser_unittest.cc431 uint64_t size_words = ((perfetto_bytes.size() + 7) / 8 + 2) << 4; in TEST_F() local
435 blob_name_ref | size_words | record_type; in TEST_F()
/external/pigweed/pw_thread_freertos/
Ddocs.rst148 .. cpp:function:: set_stack_size(size_t size_words)
155 Precondition: size_words must be >= ``configMINIMAL_STACK_SIZE``