Home
last modified time | relevance | path

Searched refs:start_idx (Results 1 – 25 of 80) sorted by relevance

1234

/external/mesa3d/src/compiler/nir/
Dnir_lower_vec_to_movs.c57 insert_mov(nir_alu_instr *vec, unsigned start_idx, nir_shader *shader) in insert_mov() argument
59 assert(start_idx < nir_op_infos[vec->op].num_inputs); in insert_mov()
62 nir_alu_src_copy(&mov->src[0], &vec->src[start_idx], mov); in insert_mov()
65 mov->dest.write_mask = (1u << start_idx); in insert_mov()
66 mov->src[0].swizzle[start_idx] = vec->src[start_idx].swizzle[0]; in insert_mov()
67 mov->src[0].negate = vec->src[start_idx].negate; in insert_mov()
68 mov->src[0].abs = vec->src[start_idx].abs; in insert_mov()
70 for (unsigned i = start_idx + 1; i < 4; i++) { in insert_mov()
74 if (nir_srcs_equal(vec->src[i].src, vec->src[start_idx].src) && in insert_mov()
75 vec->src[i].negate == vec->src[start_idx].negate && in insert_mov()
[all …]
/external/pdfium/xfa/fde/
Dcfde_texteditengine_unittest.cpp296 size_t start_idx; in TEST_F() local
298 std::tie(start_idx, count) = engine()->GetSelection(); in TEST_F()
299 EXPECT_EQ(0U, start_idx); in TEST_F()
503 size_t start_idx; in TEST_F() local
506 std::tie(start_idx, count) = engine()->BoundsForWordAt(100); in TEST_F()
507 EXPECT_EQ(0U, start_idx); in TEST_F()
509 engine()->SetSelection(start_idx, count); in TEST_F()
514 std::tie(start_idx, count) = engine()->BoundsForWordAt(0); in TEST_F()
515 EXPECT_EQ(0U, start_idx); in TEST_F()
517 engine()->SetSelection(start_idx, count); in TEST_F()
[all …]
Dcfde_texteditengine.cpp28 size_t start_idx, in InsertOperation() argument
30 : engine_(engine), start_idx_(start_idx), added_text_(added_text) {} in InsertOperation()
53 size_t start_idx, in DeleteOperation() argument
55 : engine_(engine), start_idx_(start_idx), removed_text_(removed_text) {} in DeleteOperation()
78 size_t start_idx, in ReplaceOperation() argument
81 : insert_op_(engine, start_idx, added_text), in ReplaceOperation()
82 delete_op_(engine, start_idx, removed_text) {} in ReplaceOperation()
756 selection_.start_idx = 0; in SelectAll()
762 selection_.start_idx = 0; in ClearSelection()
766 void CFDE_TextEditEngine::SetSelection(size_t start_idx, size_t count) { in SetSelection() argument
[all …]
Dcfde_texteditengine.h100 size_t start_idx,
150 void SetSelection(size_t start_idx, size_t count);
155 return {selection_.start_idx, selection_.count}; in GetSelection()
170 std::pair<int32_t, CFX_RectF> GetCharacterInfo(int32_t start_idx);
171 std::vector<CFX_RectF> GetCharacterRectsInRange(int32_t start_idx,
201 size_t start_idx; member
/external/llvm-project/lldb/source/Commands/
DCommandObjectSession.cpp145 std::pair<bool, uint64_t> start_idx( in DoExecute() local
156 if (start_idx.first && start_idx.second == UINT64_MAX) { in DoExecute()
158 start_idx.second = history.GetSize() - count.second; in DoExecute()
161 start_idx.second = stop_idx.second; in DoExecute()
164 start_idx.second = 0; in DoExecute()
168 if (!start_idx.first && !stop_idx.first && !count.first) { in DoExecute()
169 start_idx.second = 0; in DoExecute()
171 } else if (start_idx.first) { in DoExecute()
173 stop_idx.second = start_idx.second + count.second - 1; in DoExecute()
180 start_idx.second = stop_idx.second - count.second + 1; in DoExecute()
[all …]
/external/rust/crates/gdbstub/src/protocol/common/
Dhex.rs102 pub fn encode_hex_buf(buf: &mut [u8], start_idx: usize) -> Result<&mut [u8], EncodeHexBufError> { in encode_hex_buf()
105 let len = buf.len() - start_idx; in encode_hex_buf()
113 let byte = buf[start_idx + i / 2]; in encode_hex_buf()
141 let start_idx = buf.len() - payload.len(); in encode_hex_simple() localVariable
144 buf[start_idx..].copy_from_slice(&payload); in encode_hex_simple()
145 let out = encode_hex_buf(&mut buf, start_idx).unwrap(); in encode_hex_simple()
158 let start_idx = buf.len() - c.len(); in encode_hex_in_chunks() localVariable
160 let data_buf = &mut buf[start_idx..]; in encode_hex_in_chunks()
162 out.extend_from_slice(encode_hex_buf(&mut buf, start_idx).unwrap()); in encode_hex_in_chunks()
/external/arm-trusted-firmware/common/
Druntime_svc.c93 uint8_t index, start_idx, end_idx; in runtime_svc_init() local
145 start_idx = (uint8_t)get_unique_oen(service->start_oen, in runtime_svc_init()
149 assert(start_idx <= end_idx); in runtime_svc_init()
151 for (; start_idx <= end_idx; start_idx++) in runtime_svc_init()
152 rt_svc_descs_indices[start_idx] = index; in runtime_svc_init()
/external/llvm-project/lldb/source/API/
DSBCompileUnit.cpp86 uint32_t SBCompileUnit::FindLineEntryIndex(uint32_t start_idx, uint32_t line, in FindLineEntryIndex() argument
89 (uint32_t, uint32_t, lldb::SBFileSpec *), start_idx, in FindLineEntryIndex()
93 return FindLineEntryIndex(start_idx, line, inline_file_spec, exact); in FindLineEntryIndex()
96 uint32_t SBCompileUnit::FindLineEntryIndex(uint32_t start_idx, uint32_t line, in FindLineEntryIndex() argument
101 start_idx, line, inline_file_spec, exact); in FindLineEntryIndex()
112 start_idx, line, inline_file_spec ? inline_file_spec->get() : nullptr, in FindLineEntryIndex()
166 uint32_t SBCompileUnit::FindSupportFileIndex(uint32_t start_idx, in FindSupportFileIndex() argument
170 (uint32_t, const lldb::SBFileSpec &, bool), start_idx, in FindSupportFileIndex()
175 return support_files.FindFileIndex(start_idx, sb_file.ref(), full); in FindSupportFileIndex()
/external/libchrome/base/test/
Dtest_child_process.cc30 int start_idx = 1; in main() local
34 start_idx = 3; in main()
37 for (int i = start_idx; i < argc; ++i) { in main()
/external/ltp/testcases/kernel/sched/eas/
Dsugov_latency.c80 int start_idx; in parse_results() local
103 start_idx = i; in parse_results()
118 for (i = start_idx; i < sleep_idx; i++) in parse_results()
180 increase_latency_usec -= trace[start_idx].ts.sec * USEC_PER_SEC + in parse_results()
181 trace[start_idx].ts.usec; in parse_results()
/external/freetype/src/psaux/
Dpsstack.c249 CF2_Int start_idx, idx, i; in cf2_stack_roll() local
297 start_idx = -1; in cf2_stack_roll()
304 if ( start_idx == idx ) in cf2_stack_roll()
306 start_idx++; in cf2_stack_roll()
307 idx = start_idx; in cf2_stack_roll()
/external/llvm-project/lldb/bindings/interface/
DSBCompileUnit.i71 FindLineEntryIndex (uint32_t start_idx,
76 FindLineEntryIndex (uint32_t start_idx,
88 FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full);
/external/llvm-project/lldb/include/lldb/API/
DSBCompileUnit.h37 uint32_t FindLineEntryIndex(uint32_t start_idx, uint32_t line,
40 uint32_t FindLineEntryIndex(uint32_t start_idx, uint32_t line,
48 uint32_t FindSupportFileIndex(uint32_t start_idx, const SBFileSpec &sb_file,
/external/rust/crates/rusqlite/src/vtab/
Dseries.rs75 let mut start_idx = None; in best_index() localVariable
89 start_idx = Some(i); in best_index()
105 if let Some(start_idx) = start_idx { in best_index()
107 let mut constraint_usage = info.constraint_usage(start_idx); in best_index()
/external/libopus/silk/
Ddecode_core.c46 opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType; in silk_decode_core() local
143 start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2; in silk_decode_core()
144 celt_assert( start_idx > 0 ); in silk_decode_core()
150 …silk_LPC_analysis_filter( &sLTP[ start_idx ], &psDec->outBuf[ start_idx + k * psDec->subfr_length … in silk_decode_core()
151 A_Q12, psDec->ltp_mem_length - start_idx, psDec->LPC_order, arch ); in silk_decode_core()
DNSQ.c95 opus_int k, lag, start_idx, LSF_interpolation_flag; in silk_NSQ_c() local
145 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2; in silk_NSQ_c()
146 celt_assert( start_idx > 0 ); in silk_NSQ_c()
148 … silk_LPC_analysis_filter( &sLTP[ start_idx ], &NSQ->xq[ start_idx + k * psEncC->subfr_length ], in silk_NSQ_c()
149 … A_Q12, psEncC->ltp_mem_length - start_idx, psEncC->predictLPCOrder, psEncC->arch ); in silk_NSQ_c()
/external/grpc-grpc/src/core/lib/channel/
Dchannelz_registry.cc87 size_t start_idx = start_channel_id == 0 ? 0 : start_channel_id - 1; in InternalGetTopChannels() local
88 for (size_t i = start_idx; i < entities_.size(); ++i) { in InternalGetTopChannels()
123 size_t start_idx = start_server_id == 0 ? 0 : start_server_id - 1; in InternalGetServers() local
124 for (size_t i = start_idx; i < entities_.size(); ++i) { in InternalGetServers()
/external/libxaac/decoder/
Dixheaacd_lpp_tran.c566 WORD32 start_idx, WORD32 stop_idx, in ixheaacd_filter1_lp() argument
709 WORD32 *p_sub_signal_xlow = sub_sig_x + low_band + ((start_idx) << 6); in ixheaacd_filter1_lp()
711 sub_sig_x + high_band + ((start_idx + 2) << 6); in ixheaacd_filter1_lp()
712 WORD32 len = stop_idx - start_idx - 1; in ixheaacd_filter1_lp()
743 WORD32 start_idx, WORD32 stop_idx, in ixheaacd_low_pow_hf_generator() argument
774 p_qmf_real = &qmf_real[start_idx][actual_stop_band]; in ixheaacd_low_pow_hf_generator()
775 num = (len - start_idx - 1); in ixheaacd_low_pow_hf_generator()
811 start_idx, stop_idx, max_qmf_subband, start_patch, in ixheaacd_low_pow_hf_generator()
851 WORD32 start_idx, WORD32 stop_idx, in ixheaacd_hf_generator() argument
878 start_idx = (start_idx * factor); in ixheaacd_hf_generator()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dfix_storage_class.cpp279 uint32_t start_idx = 0; in WalkAccessChainType() local
283 start_idx = 1; in WalkAccessChainType()
287 start_idx = 2; in WalkAccessChainType()
298 for (uint32_t i = start_idx; i < inst->NumInOperands(); ++i) { in WalkAccessChainType()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfix_storage_class.cpp279 uint32_t start_idx = 0; in WalkAccessChainType() local
283 start_idx = 1; in WalkAccessChainType()
287 start_idx = 2; in WalkAccessChainType()
298 for (uint32_t i = start_idx; i < inst->NumInOperands(); ++i) { in WalkAccessChainType()
/external/llvm-project/lldb/include/lldb/Symbol/
DSymtab.h56 Visibility symbol_visibility, uint32_t &start_idx);
65 uint32_t start_idx = 0,
69 std::vector<uint32_t> &indexes, uint32_t start_idx = 0,
75 uint32_t start_idx = 0,
/external/llvm-project/lldb/test/API/tools/lldb-vscode/variables/
DTestVSCode_variables.py15 def make_buffer_verify_dict(start_idx, count, offset=0): argument
17 for i in range(start_idx, start_idx + count):
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dfix_storage_class.cpp289 uint32_t start_idx = 0; in WalkAccessChainType() local
293 start_idx = 1; in WalkAccessChainType()
297 start_idx = 2; in WalkAccessChainType()
308 for (uint32_t i = start_idx; i < inst->NumInOperands(); ++i) { in WalkAccessChainType()
/external/llvm-project/lldb/source/Core/
DFileSpecList.cpp61 size_t FileSpecList::FindFileIndex(size_t start_idx, const FileSpec &file_spec, in FindFileIndex() argument
69 for (size_t idx = start_idx; idx < num_files; ++idx) { in FindFileIndex()
/external/perfetto/src/trace_processor/containers/
Dbit_vector_iterators.cc86 void SetBitsIterator::ReadSetBitBatch(uint32_t start_idx) { in ReadSetBitBatch() argument
90 for (uint32_t i = start_idx; i < size(); ++i) { in ReadSetBitBatch()

1234