Searched refs:dest_idx (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_from_ssa.c | 734 int dest_idx = -1; in resolve_parallel_copy() local 743 dest_idx = i; in resolve_parallel_copy() 746 if (dest_idx < 0) { in resolve_parallel_copy() 747 dest_idx = num_vals++; in resolve_parallel_copy() 748 values[dest_idx] = dest_src; in resolve_parallel_copy() 752 pred[dest_idx] = src_idx; in resolve_parallel_copy() 754 to_do[++to_do_idx] = dest_idx; in resolve_parallel_copy()
|
/third_party/libexif/libexif/huawei/ |
H A D | exif-mnote-data-huawei.c | 481 exif_mnote_data_huawei_get_entry_by_index_data (ExifMnoteDataHuawei *n, int *idx, const int dest_idx) in exif_mnote_data_huawei_get_entry_by_index_data() argument 487 if (*idx == dest_idx) { in exif_mnote_data_huawei_get_entry_by_index_data() 495 entry = exif_mnote_data_huawei_get_entry_by_index_data((ExifMnoteDataHuawei *)md, idx, dest_idx); in exif_mnote_data_huawei_get_entry_by_index_data() 503 exif_mnote_data_huawei_get_entry_by_index (ExifMnoteDataHuawei *n, const int dest_idx) in exif_mnote_data_huawei_get_entry_by_index() argument 506 return exif_mnote_data_huawei_get_entry_by_index_data(n, &i, dest_idx); in exif_mnote_data_huawei_get_entry_by_index()
|
H A D | exif-mnote-data-huawei.h | 77 MnoteHuaweiEntry* exif_mnote_data_huawei_get_entry_by_index (ExifMnoteDataHuawei *n, const int dest_idx);
|
/third_party/lwip/src/core/ipv6/ |
H A D | nd6.c | 291 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/ |
H A D | libvpxenc.c | 454 int dest_idx = 0; in vp8_ts_parse_int_array() local 458 while (token && dest_idx < max_entries) { in vp8_ts_parse_int_array() 459 dest[dest_idx++] = strtoul(token, NULL, 10); in vp8_ts_parse_int_array() 467 int dest_idx = 0; in vp8_ts_parse_int64_array() local 471 while (token && dest_idx < max_entries) { in vp8_ts_parse_int64_array() 472 dest[dest_idx++] = strtoull(token, NULL, 10); in vp8_ts_parse_int64_array()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | spirv_to_nir.c | 3937 unsigned dest_idx = 0; in vtn_vector_construct() local 3940 vtn_assert(dest_idx + src->num_components <= num_components); in vtn_vector_construct() 3942 vec->src[dest_idx].src = nir_src_for_ssa(src); in vtn_vector_construct() 3943 vec->src[dest_idx].swizzle[0] = j; in vtn_vector_construct() 3944 dest_idx++; in vtn_vector_construct() 3953 vtn_assert(dest_idx == num_components); in vtn_vector_construct()
|
Completed in 16 milliseconds