Home
last modified time | relevance | path

Searched refs:dest_idx (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
Dnir_from_ssa.c728 int dest_idx = -1; in resolve_parallel_copy() local
737 dest_idx = i; in resolve_parallel_copy()
740 if (dest_idx < 0) { in resolve_parallel_copy()
741 dest_idx = num_vals++; in resolve_parallel_copy()
742 values[dest_idx] = dest_src; in resolve_parallel_copy()
746 pred[dest_idx] = src_idx; in resolve_parallel_copy()
748 to_do[++to_do_idx] = dest_idx; in resolve_parallel_copy()
/third_party/lwip/src/core/ipv6/
Dnd6.c291 s16_t dest_idx; in nd6_input() local
851 dest_idx = nd6_find_destination_cache_entry(&destination_address); in nd6_input()
852 if (dest_idx < 0) { in nd6_input()
863 ip6_addr_copy(destination_cache[dest_idx].next_hop_addr, target_address); in nd6_input()
919 dest_idx = nd6_find_destination_cache_entry(&destination_address); in nd6_input()
920 if (dest_idx < 0) { in nd6_input()
928 destination_cache[dest_idx].pmtu = (u16_t)LWIP_MIN(pmtu, 0xFFFF); in nd6_input()
/third_party/ffmpeg/libavcodec/
Dlibvpxenc.c391 int dest_idx = 0; in vp8_ts_parse_int_array() local
395 while (token && dest_idx < max_entries) { in vp8_ts_parse_int_array()
396 dest[dest_idx++] = strtoul(token, NULL, 10); in vp8_ts_parse_int_array()
404 int dest_idx = 0; in vp8_ts_parse_int64_array() local
408 while (token && dest_idx < max_entries) { in vp8_ts_parse_int64_array()
409 dest[dest_idx++] = strtoull(token, NULL, 10); in vp8_ts_parse_int64_array()
/third_party/mesa3d/src/compiler/spirv/
Dspirv_to_nir.c3865 unsigned dest_idx = 0; in vtn_vector_construct() local
3868 vtn_assert(dest_idx + src->num_components <= num_components); in vtn_vector_construct()
3870 vec->src[dest_idx].src = nir_src_for_ssa(src); in vtn_vector_construct()
3871 vec->src[dest_idx].swizzle[0] = j; in vtn_vector_construct()
3872 dest_idx++; in vtn_vector_construct()
3881 vtn_assert(dest_idx == num_components); in vtn_vector_construct()