/external/clang/lib/StaticAnalyzer/Checkers/ |
D | PaddingChecker.cpp | 263 CharUnits NextOffset = NewOffset.alignTo(Fields[0].Align); in calculateOptimalPad() local 264 NewPad += NextOffset - NewOffset; in calculateOptimalPad() 265 NewOffset = NextOffset; in calculateOptimalPad()
|
/external/llvm/tools/llvm-config/ |
D | llvm-config.cpp | 242 const size_t NextOffset = DyLibComponentsStr.find(';', Offset); in GetAllDyLibComponents() local 243 DyLibComponents.push_back(DyLibComponentsStr.substr(Offset, NextOffset)); in GetAllDyLibComponents() 244 if (NextOffset == std::string::npos) { in GetAllDyLibComponents() 247 Offset = NextOffset + 1; in GetAllDyLibComponents()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-config/ |
D | llvm-config.cpp | 245 const size_t NextOffset = DyLibComponentsStr.find(';', Offset); in GetAllDyLibComponents() local 246 DyLibComponents.push_back(DyLibComponentsStr.substr(Offset, NextOffset-Offset)); in GetAllDyLibComponents() 247 if (NextOffset == std::string::npos) { in GetAllDyLibComponents() 250 Offset = NextOffset + 1; in GetAllDyLibComponents()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/Symbolize/ |
D | SymbolizableObjectFile.cpp | 127 uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; in addCoffExportSymbols() local 129 uint64_t SymbolSize = NextOffset - Export.Offset; in addCoffExportSymbols()
|
/external/llvm/lib/DebugInfo/Symbolize/ |
D | SymbolizableObjectFile.cpp | 110 uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; in addCoffExportSymbols() local 112 uint64_t SymbolSize = NextOffset - Export.Offset; in addCoffExportSymbols()
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 65 static size_t NextOffset(size_t* offset) { in NextOffset() function in v8::internal::compiler::X64OperandConverter 85 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 90 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 91 int32_t disp = InputInt32(NextOffset(offset)); in MemoryOperand() 98 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 99 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() 108 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 109 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() 111 int32_t disp = InputInt32(NextOffset(offset)); in MemoryOperand() 115 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() [all …]
|
/external/v8/src/compiler/ia32/ |
D | code-generator-ia32.cc | 91 static size_t NextOffset(size_t* offset) { in NextOffset() function in v8::internal::compiler::IA32OperandConverter 111 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 116 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 117 Constant ctant = ToConstant(instr_->InputAt(NextOffset(offset))); in MemoryOperand() 124 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 125 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() 134 Register base = InputRegister(NextOffset(offset)); in MemoryOperand() 135 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() 137 Constant ctant = ToConstant(instr_->InputAt(NextOffset(offset))); in MemoryOperand() 144 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() [all …]
|
/external/clang/lib/Basic/ |
D | SourceManager.cpp | 1558 unsigned NextOffset; in getFileIDSize() local 1560 NextOffset = getNextLocalOffset(); in getFileIDSize() 1562 NextOffset = MaxLoadedOffset; in getFileIDSize() 1564 NextOffset = getSLocEntry(FileID::get(ID+1)).getOffset(); in getFileIDSize() 1566 return NextOffset - Entry.getOffset() - 1; in getFileIDSize()
|
/external/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 781 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection() local 782 NextOffset = alignTo(NextOffset, 4); in printCodeViewSymbolSection() 783 if (NextOffset > SectionContents.size()) in printCodeViewSymbolSection() 785 Data = SectionContents.drop_front(NextOffset); in printCodeViewSymbolSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 989 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection() local 990 NextOffset = alignTo(NextOffset, 4); in printCodeViewSymbolSection() 991 if (NextOffset > SectionContents.size()) in printCodeViewSymbolSection() 993 Data = SectionContents.drop_front(NextOffset); in printCodeViewSymbolSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 1407 uint32_t NextOffset = (Idx + 1 < U.getNumDIEs()) in cloneDIE() local 1415 SmallString<40> DIECopy(Data.getData().substr(Offset, NextOffset - Offset)); in cloneDIE()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 2739 uint32_t NextOffset = in cloneDIE() local 2748 SmallString<40> DIECopy(Data.getData().substr(Offset, NextOffset - Offset)); in cloneDIE()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 2027 unsigned NextOffset = SourceMgr.getNextLocalOffset(); in WriteSourceManagerBlock() local 2029 NextOffset = SourceMgr.getLocalSLocEntry(I + 1).getOffset(); in WriteSourceManagerBlock() 2030 Record.push_back(NextOffset - SLoc->getOffset() - 1); in WriteSourceManagerBlock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 4850 signed NextOffset = FirstOffset.getImm() + 4; in expandLoadStoreDMacro() local 4851 MCOperand SecondOffset = MCOperand::createImm(NextOffset); in expandLoadStoreDMacro() 4853 if (!isInt<16>(FirstOffset.getImm()) || !isInt<16>(NextOffset)) in expandLoadStoreDMacro()
|