| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | UppercaseLiteralSuffixCheck.cpp | 143 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 D | trydecode-emission2.td | 34 // 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 D | trydecode-emission3.td | 38 // 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 D | trydecode-emission.td | 37 // 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 D | VarLenDecoder.td | 49 // 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 D | DebugCounter.h | 87 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 D | CodeGen.h | 80 Skip = 1U << 0, enumerator
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | MemberwiseConstructor.cpp | 80 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 D | memcmp_implementations.h | 69 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 D | AMDGPUInsertDelayAlu.cpp | 298 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 D | MLxExpansionPass.cpp | 331 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 D | DebugCounter.cpp | 111 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 D | Visitors.h | 35 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 D | MLInlineAdvisor.cpp | 283 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 D | MultiplexConsumer.cpp | 360 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 D | algorithm_test.cpp | 371 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 D | LegacyPassManagerTest.cpp | 360 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 D | lld-tests.yml | 25 # Skip intermediate builds: always.
|
| H A D | clang-tests.yml | 25 # Skip intermediate builds: always.
|
| H A D | libclc-tests.yml | 27 # Skip intermediate builds: always.
|
| H A D | lldb-tests.yml | 27 # Skip intermediate builds: always.
|
| /llvm-project-15.0.7/llvm/test/Transforms/NewGVN/ |
| H A D | verify-memoryphi.ll | 1 ; Skip dead MemoryPhis when performing memory congruency verification
|
| /llvm-project-15.0.7/libc/cmake/modules/ |
| H A D | LLVMLibCTargetNameUtils.cmake | 16 # Skip over the first '.' character.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/ |
| H A D | inlineasm-output-template.ll | 3 ; Skip past the functype directives, which interfere with the CHECK-LABEL
|
| H A D | irreducible-cfg.ll | 240 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
|