Home
last modified time | relevance | path

Searched refs:dropFront (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Utils/
H A DIndexingUtils.cpp34 unsigned dropFront, in getI64SubArray() argument
36 assert(arrayAttr.size() > dropFront + dropBack && "Out of bounds"); in getI64SubArray()
39 res.reserve(arrayAttr.size() - dropFront - dropBack); in getI64SubArray()
40 for (auto it = range.begin() + dropFront, eit = range.end() - dropBack; in getI64SubArray()
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DStringView.h58 StringView dropFront(size_t N = 1) const {
88 *this = dropFront(1); in consumeFront()
95 *this = dropFront(S.size()); in consumeFront()
H A DItaniumDemangle.h1570 SV = SV.dropFront(sizeof("basic_") - 1); in getBaseName()
1825 OB += Offset.dropFront(); in printLeft()
2251 OB << "-" << Integer.dropFront(1); in printLeft()
2276 OB += Value.dropFront(1); in printLeft()
2619 Res = Res.dropFront(sizeof("operator") - 1); in getSymbol()
3686 StringView ProtoSourceName = Qual.dropFront(std::strlen("objcproto")); in parseQualifiedType()
/llvm-project-15.0.7/libcxxabi/src/demangle/
H A DStringView.h58 StringView dropFront(size_t N = 1) const {
88 *this = dropFront(1); in consumeFront()
95 *this = dropFront(S.size()); in consumeFront()
H A DItaniumDemangle.h1570 SV = SV.dropFront(sizeof("basic_") - 1); in getBaseName()
1825 OB += Offset.dropFront(); in printLeft()
2251 OB << "-" << Integer.dropFront(1); in printLeft()
2276 OB += Value.dropFront(1); in printLeft()
2619 Res = Res.dropFront(sizeof("operator") - 1); in getSymbol()
3686 StringView ProtoSourceName = Qual.dropFront(std::strlen("objcproto")); in parseQualifiedType()
/llvm-project-15.0.7/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp171 Candidate = Candidate.dropFront(); in startsWithLocalScopePattern()
175 Candidate = Candidate.dropFront(); in startsWithLocalScopePattern()
486 MangledName = MangledName.dropFront(); in demangleFunctionIdentifierCode()
902 MangledName = MangledName.dropFront(1); in demangleNumber()
965 MangledName = MangledName.dropFront(); in demangleBackRefName()
1039 MangledName = MangledName.dropFront(); in demangleCharLiteral()
1053 MangledName = MangledName.dropFront(2); in demangleCharLiteral()
1060 MangledName = MangledName.dropFront(); in demangleCharLiteral()
1070 MangledName = MangledName.dropFront(); in demangleCharLiteral()
1080 MangledName = MangledName.dropFront(); in demangleCharLiteral()
[all …]
H A DRustDemangle.cpp209 StringView Suffix = Mangled.dropFront(Dot); in demangle()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Utils/
H A DIndexingUtils.h48 unsigned dropFront = 0,
/llvm-project-15.0.7/mlir/include/mlir/ExecutionEngine/
H A DCRunnerUtils.h117 void dropFront(int64_t arr[N], int64_t *res) {
160 dropFront<N>(sizes, res.sizes);
161 dropFront<N>(strides, res.strides);
/llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/
H A DTargetRewrite.cpp200 int dropFront = 0; in convertCallOp() local
205 dropFront = 1; in convertCallOp()
230 llvm::zip(fnTy.getInputs().drop_front(dropFront), in convertCallOp()
231 callOp.getOperands().drop_front(dropFront)))) { in convertCallOp()
327 mlir::TypeRange{newInTys}.drop_front(dropFront), newResTys)); in convertCallOp()