Searched refs:CurPos (Results 1 – 9 of 9) sorted by relevance
/external/google-fruit/extras/scripts/ |
D | filter_gcc_error.sh | 3 export CurPos=0 7 OPENING_TOKEN="${TOKENS[$CurPos]}" 9 CurPos=$[$CurPos + 1] 17 if ! [[ "${TOKENS[$CurPos]}" =~ \> ]] && ! [[ "${TOKENS[$CurPos]}" =~ \) ]] 21 if [[ "${TOKENS[$CurPos]}" =~ \< ]] || [[ "${TOKENS[$CurPos]}" =~ \( ]] 24 echo -n "${TOKENS[$CurPos]}" 25 CurPos=$[$CurPos + 1] 32 CurPos=$[$CurPos + 1] 41 CurPos=$[$CurPos + 1] 52 CurPos=$[$CurPos + 1] [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfExpression.cpp | 134 unsigned CurPos = 0; in addMachineReg() local 161 if (Offset > CurPos) in addMachineReg() 163 {-1, Offset - CurPos, "no DWARF register encoding"}); in addMachineReg() 169 CurPos = Offset + Size; in addMachineReg() 172 if (CurPos == 0) in addMachineReg() 175 if (CurPos < RegSize) in addMachineReg() 176 DwarfRegs.push_back({-1, RegSize - CurPos, "no DWARF register encoding"}); in addMachineReg()
|
D | AsmPrinter.cpp | 751 MCSymbol *CurPos = OutContext.createTempSymbol(); in EmitFunctionHeader() local 752 OutStreamer->EmitLabel(CurPos); in EmitFunctionHeader() 754 MCSymbolRefExpr::create(CurPos, OutContext)); in EmitFunctionHeader()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfExpression.cpp | 131 unsigned CurPos = PieceOffsetInBits; in AddMachineRegPiece() local 153 AddOpPiece(Size, Offset == CurPos ? 0 : Offset); in AddMachineRegPiece() 154 CurPos = Offset + Size; in AddMachineRegPiece() 161 return CurPos > PieceOffsetInBits; in AddMachineRegPiece()
|
D | AsmPrinter.cpp | 590 MCSymbol *CurPos = OutContext.createTempSymbol(); in EmitFunctionHeader() local 591 OutStreamer->EmitLabel(CurPos); in EmitFunctionHeader() 593 MCSymbolRefExpr::create(CurPos, OutContext)); in EmitFunctionHeader()
|
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfExpression.cpp | 135 unsigned CurPos = 0; in addMachineReg() local 162 if (Offset > CurPos) in addMachineReg() 164 -1, Offset - CurPos, "no DWARF register encoding")); in addMachineReg() 173 CurPos = Offset + Size; in addMachineReg() 176 if (CurPos == 0) in addMachineReg() 179 if (CurPos < RegSize) in addMachineReg() 181 -1, RegSize - CurPos, "no DWARF register encoding")); in addMachineReg()
|
D | AsmPrinter.cpp | 780 MCSymbol *CurPos = OutContext.createTempSymbol(); in emitFunctionHeader() local 781 OutStreamer->emitLabel(CurPos); in emitFunctionHeader() 783 MCSymbolRefExpr::create(CurPos, OutContext)); in emitFunctionHeader()
|
/external/llvm-project/llvm/include/llvm/Bitstream/ |
D | BitstreamWriter.h | 156 uint64_t CurPos = FS->tell(); in BackpatchWord() local 194 FS->seek(CurPos); in BackpatchWord()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 1281 for (const char *CurPos = EndPos - (ColNo - 1); CurPos != EndPos; in getVisualIndentation() local 1282 ++CurPos) { in getVisualIndentation() 1283 if (*CurPos == '\t') in getVisualIndentation()
|