/external/llvm-project/lldb/tools/debugserver/source/ |
D | StdStringExtractor.cpp | 25 StdStringExtractor::StdStringExtractor() : m_packet(), m_index(0) {} in StdStringExtractor() 28 : m_packet(), m_index(0) { in StdStringExtractor() 37 if (m_index < m_packet.size()) { in GetChar() 38 char ch = m_packet[m_index]; in GetChar() 39 ++m_index; in GetChar() 42 m_index = UINT64_MAX; in GetChar() 57 const int hi_nibble = xdigit_to_sint(m_packet[m_index]); in DecodeHexU8() 58 const int lo_nibble = xdigit_to_sint(m_packet[m_index + 1]); in DecodeHexU8() 62 m_index += 2; in DecodeHexU8() 78 if (set_eof_on_fail || m_index >= m_packet.size()) in GetHexU8Ex() [all …]
|
D | StdStringExtractor.h | 28 bool IsGood() const { return m_index != UINT64_MAX; } in IsGood() 30 uint64_t GetFilePos() const { return m_index; } in GetFilePos() 32 void SetFilePos(uint32_t idx) { m_index = idx; } in SetFilePos() 36 m_index = 0; in Clear() 46 if (m_index < m_packet.size()) in GetBytesLeft() 47 return m_packet.size() - m_index; in GetBytesLeft() 91 if (m_index < m_packet.size()) in Peek() 92 return m_packet.c_str() + m_index; in Peek() 99 uint64_t m_index; // When extracting data from a packet, this index variable
|
D | JSON.cpp | 234 const uint64_t start_index = m_index; in GetToken() 344 ++m_index; // Skip this character in GetToken() 354 ++m_index; // Skip this character in GetToken() 366 exp_index = m_index; in GetToken() 367 ++m_index; // Skip this character in GetToken() 374 if (exp_index == m_index - 1) { in GetToken() 375 ++m_index; // Skip the exponent sign character in GetToken() 390 if (m_index > start_index) { in GetToken() 391 value = m_packet.substr(start_index, m_index - start_index); in GetToken()
|
/external/llvm-project/lldb/source/Utility/ |
D | StringExtractor.cpp | 29 StringExtractor::StringExtractor() : m_packet(), m_index(0) {} in StringExtractor() 32 : m_packet(), m_index(0) { in StringExtractor() 37 : m_packet(), m_index(0) { in StringExtractor() 46 if (m_index < m_packet.size()) { in GetChar() 47 char ch = m_packet[m_index]; in GetChar() 48 ++m_index; in GetChar() 51 m_index = UINT64_MAX; in GetChar() 65 const int hi_nibble = xdigit_to_sint(m_packet[m_index]); in DecodeHexU8() 66 const int lo_nibble = xdigit_to_sint(m_packet[m_index + 1]); in DecodeHexU8() 70 m_index += 2; in DecodeHexU8() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | BoolStack.java | 38 private int m_index; field in BoolStack 59 m_index = -1; in BoolStack() 69 return m_index + 1; in size() 78 m_index = -1; in clear() 91 if (m_index == m_allocatedSize - 1) in push() 94 return (m_values[++m_index] = val); in push() 106 return m_values[m_index--]; in pop() 119 m_index--; in popAndTop() 121 return (m_index >= 0) ? m_values[m_index] : false; in popAndTop() 132 m_values[m_index] = b; in setTop() [all …]
|
/external/XNNPACK/test/ |
D | gemm-microkernel-tester.h | 248 for (size_t m_index = 0; m_index < m(); m_index++) { variable 251 acc[m_index * n() + n_index] += 252 (int32_t(a[m_index * a_stride() + k_index]) - int32_t(a_zero_point())) * 255 acc[m_index * n() + n_index] += bias[n_index]; 288 for (size_t m_index = 0; m_index < m(); m_index++) { variable 290 …c_ref[m_index * n() + n_index] = xnn_qu8_requantize_q31(acc[m_index * n() + n_index], scalar_requa… 346 for (size_t m_index = 0; m_index < mr(); m_index++) { variable 347 im2col[ks_index * mr() + m_index] = a.data() + a_stride() * m_index - a_offset(); 358 for (size_t m_index = m(); m_index < mr(); m_index++) { variable 359 im2col[ks_index * mr() + m_index] = junk.data(); [all …]
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | StringExtractor.h | 30 m_index = 0; in Reset() 35 bool IsGood() const { return m_index != UINT64_MAX; } in IsGood() 37 uint64_t GetFilePos() const { return m_index; } in GetFilePos() 39 void SetFilePos(uint32_t idx) { m_index = idx; } in SetFilePos() 43 m_index = 0; in Clear() 53 if (m_index < m_packet.size()) in GetBytesLeft() 54 return m_packet.size() - m_index; in GetBytesLeft() 101 if (m_index < m_packet.size()) in Peek() 102 return m_packet.c_str() + m_index; in Peek() 108 m_index = UINT64_MAX; in fail() [all …]
|
/external/eigen/Eigen/src/Core/ |
D | Diagonal.h | 73 …ine Diagonal(MatrixType& matrix, Index a_index = DiagIndex) : m_matrix(matrix), m_index(a_index) {} 80 … return m_index.value()<0 ? numext::mini<Index>(m_matrix.cols(),m_matrix.rows()+m_index.value()) 81 … : numext::mini<Index>(m_matrix.rows(),m_matrix.cols()-m_index.value()); 158 return m_index.value(); 163 const internal::variable_if_dynamicindex<Index, DiagIndex> m_index; 168 …EN_STRONG_INLINE Index absDiagIndex() const { return m_index.value()>0 ? m_index.value() : -m_inde… 170 EIGEN_STRONG_INLINE Index rowOffset() const { return m_index.value()>0 ? 0 : -m_index.value(); } 172 EIGEN_STRONG_INLINE Index colOffset() const { return m_index.value()>0 ? m_index.value() : 0; }
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instruction_export.cpp | 256 m_index(index) in MemRingOutIntruction() 258 add_remappable_src_value(&m_index); in MemRingOutIntruction() 290 equal &= (*m_index == *oth.m_index); in is_equal_to() 302 os << " @" << *m_index; in do_print() 310 if (!m_index) in replace_values_child() 314 if (*c == *m_index) in replace_values_child() 315 m_index = new_value; in replace_values_child() 322 if (!m_index) in remap_registers_child() 325 assert(m_index->type() == Value::gpr); in remap_registers_child() 326 auto new_index = map[m_index->sel()]; in remap_registers_child() [all …]
|
D | sfn_value.cpp | 206 m_index = sel; in UniformValue() 212 m_index(sel), in UniformValue() 222 return m_index < 512 ? m_index + bank_base[m_kcache_bank] : m_index; in sel() 239 if (m_index < 512) in do_print() 240 os << "KC" << m_kcache_bank << "[" << m_index; in do_print() 242 os << "KC[" << *m_addr << "][" << m_index; in do_print() 244 os << "KCx[" << m_index; in do_print()
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3commontoken.inl | 12 m_index = 0; 26 m_index = 0; 40 m_index = 0; 55 m_index = ctoken.m_index; 69 m_index = ctoken.m_index; 80 return (m_index < ctoken.m_index); 92 (m_index == ctoken.m_index) && 106 return m_index; 112 m_index = index; 233 return m_index; [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
D | SymbolFileNativePDB.cpp | 266 if (!m_index) { in CalculateAbilities() 285 m_index = std::move(*expected_index); in CalculateAbilities() 287 if (!m_index) in CalculateAbilities() 294 if (m_index->dbi().isStripped()) in CalculateAbilities() 304 m_index->SetLoadAddress(m_obj_load_address); in InitializeObject() 305 m_index->ParseSectionContribs(); in InitializeObject() 316 m_ast = std::make_unique<PdbAstBuilder>(*m_objfile_sp, *m_index, *clang); in InitializeObject() 321 const DbiModuleList &modules = m_index->dbi().modules(); in CalculateNumCompileUnits() 336 CompilandIndexItem *cii = m_index->compilands().GetCompiland(block_id.modi); in CreateBlock() 369 m_index->compilands().GetCompiland(func_id.modi); in CreateFunction() [all …]
|
D | PdbAstBuilder.cpp | 206 : m_index(index), m_clang(clang) { in PdbAstBuilder() 272 LazyRandomTypeCollection &types = m_index.tpi().typeCollection(); in BuildParentMap() 342 CVType field_list = m_index.tpi().getType(tag.asTag().FieldList); in BuildParentMap() 343 ProcessTpiStream process(m_index, *ti, tag, m_parent_types); in BuildParentMap() 435 CVSymbol cvs = m_index.ReadSymbolRecord(id); in GetOrCreateSymbolForId() 515 std::vector<TypeIndex> types = m_index.tpi().findRecordsByName(scope_name); in CreateDeclInfoForUndecoratedName() 538 FindPublicSym(addr, m_index.symrecords(), m_index.publics()); in GetParentDeclContextForSymbol() 556 std::vector<TypeIndex> matches = m_index.tpi().findRecordsByName(qname); in GetParentDeclContextForSymbol() 582 FindSymbolScope(m_index, uid.asCompilandSym()); in GetParentDeclContext() 586 CVSymbol sym = m_index.ReadSymbolRecord(uid.asCompilandSym()); in GetParentDeclContext() [all …]
|
D | UdtRecordCompleter.cpp | 37 m_ast_builder(ast_builder), m_index(index) { in UdtRecordCompleter() 38 CVType cvt = m_index.tpi().getType(m_id.index); in UdtRecordCompleter() 61 CVType udt_cvt = m_index.tpi().getType(ti); in AddBaseClassForTypeIndex() 143 m_index.globals().findRecordsByName(qual_name, m_index.symrecords()); in visitKnownMember() 216 CVType cvt = m_index.tpi().getType(ti); in visitKnownMember() 254 CVType method_list_type = m_index.tpi().getType(method_list_idx); in visitKnownMember()
|
D | CompileUnitIndex.cpp | 122 const DbiModuleList &modules = m_index.dbi().modules(); in GetOrCreateCompiland() 126 m_index.pdb().createIndexedStream(stream); in GetOrCreateCompiland() 144 ParseExtendedInfo(m_index, *cci); in GetOrCreateCompiland() 147 PDBStringTable &strings = cantFail(m_index.pdb().getStringTable()); in GetOrCreateCompiland() 205 LazyRandomTypeCollection &types = m_index.ipi().typeCollection(); in GetMainSourceFile()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | ThreadSpec.h | 45 void SetIndex(uint32_t index) { m_index = index; } in SetIndex() 55 uint32_t GetIndex() const { return m_index; } in GetIndex() 73 if (m_index == UINT32_MAX || index == UINT32_MAX) in IndexMatches() 76 return index == m_index; in IndexMatches() 123 uint32_t m_index; variable
|
/external/pdfium/core/fxge/dib/ |
D | cfx_cmyk_to_srgb.cpp | 1673 int m_index = (fix_m + 4096) >> 13; in AdobeCMYK_to_sRGB1() local 1676 const int pos = c_index * 9 * 9 * 9 + m_index * 9 * 9 + y_index * 9 + k_index; in AdobeCMYK_to_sRGB1() 1684 if (m1_index == m_index) in AdobeCMYK_to_sRGB1() 1699 const int m1_pos = pos + (m1_index - m_index) * 9 * 9; in AdobeCMYK_to_sRGB1() 1700 const int m_rate = (fix_m - (m_index << 13)) * (m_index - m1_index); in AdobeCMYK_to_sRGB1()
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
D | ConstantCollection.java | 214 final int result = m_index; 248 m_prev_index = m_index; 249 m_index = m_next_index; 251 if (m_index > 0) 255 final CONSTANT_info entry = (CONSTANT_info) m_constants.get (m_index - 1); 262 m_index = m_next_index = -1; 268 private int m_index, m_prev_index, m_next_index;
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Variable.java | 58 protected int m_index; field in Variable 68 m_index = index; in setIndex() 78 return m_index; in getIndex() 132 m_index = i; in fixupVariables() 136 m_index = i-globalsSize; in fixupVariables() 214 result = xctxt.getVarStack().getGlobalVariable(xctxt, m_index, destructiveOK); in execute() 216 result = xctxt.getVarStack().getLocalVariable(xctxt, m_index, destructiveOK); in execute()
|
/external/llvm-project/lldb/source/Target/ |
D | ThreadSpec.cpp | 21 : m_index(UINT32_MAX), m_tid(LLDB_INVALID_THREAD_ID), m_name(), in ThreadSpec() 58 if (m_index != UINT32_MAX) in SerializeToStructuredData() 59 data_dict_sp->AddIntegerItem(GetKey(OptionNames::ThreadIndex), m_index); in SerializeToStructuredData() 87 if (m_index == UINT32_MAX) in IndexMatches() 129 return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || in HasSpecification()
|
/external/testng/src/main/java/org/testng/internal/ |
D | Tarjan.java | 16 int m_index = 0; field in Tarjan 28 m_indices.put(v, m_index); in run() 29 m_lowlinks.put(v, m_index); in run() 30 m_index++; in run()
|
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
D | UnionPattern.java | 146 int m_index; field in UnionPattern.UnionPathPartOwner 150 m_index = index; in UnionPathPartOwner() 158 return m_patterns[m_index]; in getExpression() 168 m_patterns[m_index] = (StepPattern)exp; in setExpression()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemVariable.java | 60 protected int m_index; field in ElemVariable 77 m_index = index; in setIndex() 87 return m_index; in getIndex() 248 transformer.getXPathContext().getVarStack().setLocalVariable(m_index, var); in execute() 349 m_index = cstate.addVariableName(m_qname) - cstate.getGlobalsSize(); in compose()
|
/external/deqp/framework/common/ |
D | tcuVector.hpp | 50 int m_index[Size]; member in tcu::VecAccess 58 m_index[0] = x; in VecAccess() 59 m_index[1] = y; in VecAccess() 67 m_index[0] = x; in VecAccess() 68 m_index[1] = y; in VecAccess() 69 m_index[2] = z; in VecAccess() 77 m_index[0] = x; in VecAccess() 78 m_index[1] = y; in VecAccess() 79 m_index[2] = z; in VecAccess() 80 m_index[3] = w; in VecAccess() [all …]
|
/external/testng/src/main/java/org/testng/xml/ |
D | XmlInclude.java | 18 private int m_index; field in XmlInclude 38 m_index = index; in XmlInclude() 58 return m_index; in getIndex() 86 result = prime * result + m_index; in hashCode()
|