/third_party/lwip/src/apps/snmp/ |
H A D | snmp_traps.c | 108 * @param dst_idx index in 0 .. SNMP_TRAP_DESTINATIONS-1 112 snmp_trap_dst_enable(u8_t dst_idx, u8_t enable) in snmp_trap_dst_enable() argument 115 if (dst_idx < SNMP_TRAP_DESTINATIONS) { in snmp_trap_dst_enable() 116 trap_dst[dst_idx].enable = enable; in snmp_trap_dst_enable() 123 * @param dst_idx index in 0 .. SNMP_TRAP_DESTINATIONS-1 127 snmp_trap_dst_ip_set(u8_t dst_idx, const ip_addr_t *dst) in snmp_trap_dst_ip_set() argument 130 if (dst_idx < SNMP_TRAP_DESTINATIONS) { in snmp_trap_dst_ip_set() 131 ip_addr_set(&trap_dst[dst_idx].dip, dst); in snmp_trap_dst_ip_set()
|
/third_party/lwip/src/include/lwip/apps/ |
H A D | snmp.h | 82 void snmp_trap_dst_enable(u8_t dst_idx, u8_t enable); 83 void snmp_trap_dst_ip_set(u8_t dst_idx, const ip_addr_t *dst);
|
/third_party/ffmpeg/libavcodec/ |
H A D | vc1_block.c | 1302 int dst_idx, off; in vc1_decode_p_mb() local 1348 dst_idx = 0; in vc1_decode_p_mb() 1351 dst_idx += i >> 2; in vc1_decode_p_mb() 1375 s->dest[dst_idx] + off, (i & 4) ? s->uvlinesize : s->linesize, in vc1_decode_p_mb() 1431 dst_idx = 0; in vc1_decode_p_mb() 1455 dst_idx += i >> 2; in vc1_decode_p_mb() 1478 first_block, s->dest[dst_idx] + off, in vc1_decode_p_mb() 1533 int dst_idx, off; in vc1_decode_p_mb_intfr() local 1598 dst_idx = 0; in vc1_decode_p_mb_intfr() 1603 dst_idx in vc1_decode_p_mb_intfr() 1743 int dst_idx, off; vc1_decode_p_mb_intfi() local 1866 int dst_idx, off; vc1_decode_b_mb() local 2023 int dst_idx, off; vc1_decode_b_mb_intfi() local 2192 int dst_idx, off; vc1_decode_b_mb_intfr() local [all...] |
H A D | atrac9dec.c | 776 const int dst_idx = s->block_config->plane_map[block_idx][i]; in atrac9_decode_block() local 779 float *dst = (float *)(frame->extended_data[dst_idx] + offset); in atrac9_decode_block()
|
/third_party/lwip/src/core/ipv6/ |
H A D | nd6.c | 2050 s16_t dst_idx; local 2071 dst_idx = nd6_find_destination_cache_entry(ip6addr); 2072 if (dst_idx >= 0) { 2074 LWIP_ASSERT("type overflow", (size_t)dst_idx < NETIF_ADDR_IDX_MAX); 2075 nd6_cached_destination_index = (netif_addr_idx_t)dst_idx; 2078 dst_idx = nd6_new_destination_cache_entry(); 2079 if (dst_idx >= 0) { 2081 LWIP_ASSERT("type overflow", (size_t)dst_idx < NETIF_ADDR_IDX_MAX); 2082 nd6_cached_destination_index = (netif_addr_idx_t)dst_idx; 2441 s16_t dst_idx; local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_info.c | 336 tgsi_opcode_infer_dst_type(enum tgsi_opcode opcode, uint dst_idx) in tgsi_opcode_infer_dst_type() argument 338 if (dst_idx == 1 && opcode == TGSI_OPCODE_DFRACEXP) in tgsi_opcode_infer_dst_type()
|
H A D | tgsi_info.h | 117 tgsi_opcode_infer_dst_type(enum tgsi_opcode opcode, uint dst_idx);
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_format_convert.h | 195 unsigned dst_idx = 0; in nir_format_bitcast_uvec_unmasked() local 200 dst_chan[dst_idx] = shifted; in nir_format_bitcast_uvec_unmasked() 202 dst_chan[dst_idx] = nir_ior(b, dst_chan[dst_idx], shifted); in nir_format_bitcast_uvec_unmasked() 207 dst_idx++; in nir_format_bitcast_uvec_unmasked()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_ra_validate.c | 395 unsigned dst_idx = ~0; in chase_definition() local 398 dst_idx = i; in chase_definition() 402 assert(dst_idx != ~0); in chase_definition() 404 struct ir3_register *new_def = instr->srcs[dst_idx]->def; in chase_definition()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_compiler_util.h | 82 unsigned int dst_idx,
|
H A D | radeon_compiler_util.c | 324 unsigned int dst_idx, in rc_src_reads_dst_mask() 327 if (src_file != dst_file || src_idx != dst_idx) { in rc_src_reads_dst_mask() 319 rc_src_reads_dst_mask( rc_register_file src_file, unsigned int src_idx, unsigned int src_swz, rc_register_file dst_file, unsigned int dst_idx, unsigned int dst_mask) rc_src_reads_dst_mask() argument
|
/third_party/ffmpeg/libswresample/ |
H A D | swresample_internal.h | 78 typedef int (* invert_initial_buffer_func)(struct ResampleContext *c, AudioData *dst, const AudioData *src, int src_size, int *dst_idx, int *dst_count);
|
/third_party/ffmpeg/libavutil/ |
H A D | tx_template.c | 701 int src_idx, dst_idx; in ff_tx_fft_sr_inplace() local 706 dst_idx = map[src_idx]; in ff_tx_fft_sr_inplace() 708 FFSWAP(TXComplex, tmp, dst[dst_idx]); in ff_tx_fft_sr_inplace() 709 dst_idx = map[dst_idx]; in ff_tx_fft_sr_inplace() 710 } while (dst_idx != src_idx); /* Can be > as well, but was less predictable */ in ff_tx_fft_sr_inplace() 711 dst[dst_idx] = tmp; in ff_tx_fft_sr_inplace()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_descriptor_set.c | 1338 unsigned dst_idx = copyset->dstArrayElement + j; in radv_update_descriptor_sets_impl() local 1341 dst_idx += dst_binding_layout->dynamic_offset_offset; in radv_update_descriptor_sets_impl() 1344 dst_range = dst_set->header.dynamic_descriptors + dst_idx; in radv_update_descriptor_sets_impl()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_descriptor_set.c | 1832 uint32_t dst_idx = in dzn_descriptor_set_copy() local 1835 memcpy(&dst_set->dynamic_buffers[dst_idx], in dzn_descriptor_set_copy()
|
/third_party/vixl/src/aarch64/ |
H A D | logic-aarch64.cc | 1613 int dst_idx = 0; in splice() local 1620 result[dst_idx++] = src1.Uint(vform, i); in splice() 1624 VIXL_ASSERT(dst_idx <= lane_count); in splice() 1625 for (int i = dst_idx; i < lane_count; i++) { in splice() 1626 result[i] = src2.Uint(vform, i - dst_idx); in splice()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 7638 int dst_idx = src_idx; 7647 dst_idx = i; 7657 if (dst_idx != src_idx) 7658 TabBarQueueReorder(tab_bar, src_tab, dst_idx - src_idx);
|