Home
last modified time | relevance | path

Searched refs:Skip (Results 1 – 25 of 115) sorted by relevance

12345

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DUppercaseLiteralSuffixCheck.cpp143 size_t Skip = 0; in shouldReplaceLiteralSuffix() local
150 Skip = LiteralSourceText.find_first_of(LiteralType::SkipFirst); in shouldReplaceLiteralSuffix()
152 if (Skip == StringRef::npos) in shouldReplaceLiteralSuffix()
153 Skip = 0; in shouldReplaceLiteralSuffix()
159 Skip = LiteralSourceText.find_first_of(LiteralType::Suffixes, /*From=*/Skip); in shouldReplaceLiteralSuffix()
163 if (Skip == StringRef::npos) in shouldReplaceLiteralSuffix()
167 Range->setBegin(Range->getBegin().getLocWithOffset(Skip)); in shouldReplaceLiteralSuffix()
169 ReplacementDsc.OldSuffix = LiteralSourceText.drop_front(Skip); in shouldReplaceLiteralSuffix()
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dtrydecode-emission2.td34 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 44
36 // CHECK-NEXT: /* 11 */ MCD::OPC_FilterValue, 0, 28, 0, 0, // Skip to: 44
37 // CHECK-NEXT: /* 16 */ MCD::OPC_CheckField, 0, 2, 3, 7, 0, 0, // Skip to: 30
39 // CHECK-NEXT: /* 30 */ MCD::OPC_CheckField, 3, 2, 0, 7, 0, 0, // Skip to: 44
H A Dtrydecode-emission3.td38 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 26
39 // CHECK-NEXT: /* 8 */ MCD::OPC_CheckField, 2, 2, 0, 7, 0, 0, // Skip to: 22
H A Dtrydecode-emission.td37 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 26
38 // CHECK-NEXT: /* 8 */ MCD::OPC_CheckField, 2, 2, 0, 7, 0, 0, // Skip to: 22
H A DVarLenDecoder.td49 // CHECK-NEXT: MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 12
51 // CHECK-NEXT: MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 21
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DDebugCounter.h87 if (CounterInfo.Skip < 0) in shouldExecute()
89 if (CounterInfo.Skip >= CounterInfo.Count) in shouldExecute()
93 return CounterInfo.StopAfter + CounterInfo.Skip >= CounterInfo.Count; in shouldExecute()
171 int64_t Skip = 0; member
H A DCodeGen.h80 Skip = 1U << 0, enumerator
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DMemberwiseConstructor.cpp80 case Skip: in prepare()
124 Skip, // Do not initialize this field, but allow the tweak anyway. enumerator
131 return Skip; in considerField()
182 return Skip; in considerClassValue()
215 return Skip; in considerClassValue()
/llvm-project-15.0.7/libc/src/string/memory_utils/
H A Dmemcmp_implementations.h69 if (!equals<Skip<16>::Then<_16>>(lhs, rhs)) // [32, 32] in inline_memcmp()
70 return three_way_compare<Skip<16>::Then<_16>>(lhs, rhs); in inline_memcmp()
74 return three_way_compare<Skip<32>::Then<Loop<_16>>>(lhs, rhs, count); in inline_memcmp()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUInsertDelayAlu.cpp298 unsigned Skip = 0; in emitDelayAlu() local
303 ++Skip; in emitDelayAlu()
305 if (Skip < 6) { in emitDelayAlu()
310 LastImm |= Imm << 7 | Skip << 4; in emitDelayAlu()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DMLxExpansionPass.cpp331 unsigned Skip = 0; in ExpandFPMLxInstructions() local
342 Skip = 0; in ExpandFPMLxInstructions()
348 if (++Skip == 2) in ExpandFPMLxInstructions()
352 Skip = 0; in ExpandFPMLxInstructions()
/llvm-project-15.0.7/llvm/lib/Support/
H A DDebugCounter.cpp111 Counter.Skip = CounterVal; in push_back()
142 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip in print()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DVisitors.h35 enum ResultEnum { Interrupt, Advance, Skip } result; enumerator
52 static WalkResult skip() { return {Skip}; } in skip()
58 bool wasSkipped() const { return result == Skip; } in wasSkipped()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DMLInlineAdvisor.cpp283 if (auto Skip = getSkipAdviceIfUnreachableCallsite(CB)) in getAdviceImpl() local
284 return Skip; in getAdviceImpl()
396 if (auto Skip = getSkipAdviceIfUnreachableCallsite(CB)) in getMandatoryAdvice() local
397 return Skip; in getMandatoryAdvice()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DMultiplexConsumer.cpp360 bool Skip = true; in shouldSkipFunctionBody() local
362 Skip = Skip && Consumer->shouldSkipFunctionBody(D); in shouldSkipFunctionBody()
363 return Skip; in shouldSkipFunctionBody()
/llvm-project-15.0.7/libc/test/src/string/memory_utils/
H A Dalgorithm_test.cpp371 Skip<11>::Then<SizedOp<TestBackend, 1>>::set(dst(), ubyte{42}); in TEST_F()
379 Skip<11>::Then<SizedOp<TestBackend, 1>>::isDifferent(buf1(), buf2()); in TEST_F()
388 Skip<11>::Then<SizedOp<TestBackend, 1>>::threeWayCmp(buf1(), buf2()); in TEST_F()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DLegacyPassManagerTest.cpp360 bool Skip; member
361 CustomOptPassGate(bool Skip) : Skip(Skip) { } in CustomOptPassGate()
364 return !Skip; in shouldRunPass()
/llvm-project-15.0.7/.github/workflows/
H A Dlld-tests.yml25 # Skip intermediate builds: always.
H A Dclang-tests.yml25 # Skip intermediate builds: always.
H A Dlibclc-tests.yml27 # Skip intermediate builds: always.
H A Dlldb-tests.yml27 # Skip intermediate builds: always.
/llvm-project-15.0.7/llvm/test/Transforms/NewGVN/
H A Dverify-memoryphi.ll1 ; Skip dead MemoryPhis when performing memory congruency verification
/llvm-project-15.0.7/libc/cmake/modules/
H A DLLVMLibCTargetNameUtils.cmake16 # Skip over the first '.' character.
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Dinlineasm-output-template.ll3 ; Skip past the functype directives, which interfere with the CHECK-LABEL
H A Dirreducible-cfg.ll240 br i1 %cmp118, label %Skip, label %do.cond
245 for.cond: ; preds = %Skip, %psh
249 br i1 undef, label %Skip, label %do.body45
254 Skip: ; preds = %for.body39, %do.body

12345