Home
last modified time | relevance | path

Searched refs:to_fill (Results 1 – 3 of 3) sorted by relevance

/external/arm-trusted-firmware/services/std_svc/trng/
Dtrng_entropy_pool.c79 const int to_fill = ((nbits + BITS_PER_WORD - 1) / BITS_PER_WORD); in trng_pack_entropy() local
82 for (word_i = 0; word_i < to_fill; word_i++) { in trng_pack_entropy()
131 out[to_fill - 1] &= mask; in trng_pack_entropy()
/external/usrsctp/usrsctplib/
Duser_recv_thread.c287 int to_fill = MAXLEN_MBUF_CHAIN; in recv_function_raw() local
302 for (i = 0; i < to_fill; i++) { in recv_function_raw()
316 to_fill = 0; in recv_function_raw()
355 (to_fill)++; in recv_function_raw()
361 (to_fill)++; in recv_function_raw()
367 (to_fill)++; in recv_function_raw()
466 int to_fill = MAXLEN_MBUF_CHAIN; in recv_function_raw6() local
479 for (i = 0; i < to_fill; i++) { in recv_function_raw6()
493 to_fill = 0; in recv_function_raw6()
547 (to_fill)++; in recv_function_raw6()
[all …]
/external/tensorflow/tensorflow/core/kernels/image/
Dnon_max_suppression_op.cu.cc246 __global__ void Iota(const int num_elements, const T offset, T* to_fill) { in Iota() argument
248 to_fill[idx] = static_cast<T>(idx) + offset; in Iota()