Home
last modified time | relevance | path

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

123456

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMIRFormatter.cpp59 uint64_t Skip = ((Imm >> 4) & 0x7); in printSDelayAluImm() local
77 if (Skip == Same && Id1 == None) in printSDelayAluImm()
82 if (Skip == 0) in printSDelayAluImm()
84 else if (Skip == 1) in printSDelayAluImm()
87 OS << "SKIP_" << Skip - 1; in printSDelayAluImm()
126 int64_t Skip = 0; in parseSDelayAluImmMnemonic() local
146 Skip = 0; in parseSDelayAluImmMnemonic()
148 Skip = 1; in parseSDelayAluImmMnemonic()
150 if (Src.consumeInteger(10, Skip)) { in parseSDelayAluImmMnemonic()
153 Skip += 1; in parseSDelayAluImmMnemonic()
[all …]
H A DAMDGPUInsertDelayAlu.cpp320 unsigned Skip = 0; in emitDelayAlu() local
325 ++Skip; in emitDelayAlu()
327 if (Skip < 6) { in emitDelayAlu()
332 LastImm |= Imm << 7 | Skip << 4; in emitDelayAlu()
/freebsd/lib/libsecureboot/tests/
H A Dtvo.c35 extern char *Skip;
40 char *Skip; variable
56 Skip = NULL; in main()
75 Skip = optarg; in main()
130 prefix, Skip, cp, NULL); in main()
144 prefix, Skip, cp, NULL); in main()
153 prefix, Skip, cp, NULL); in main()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DIntegerLiteralSeparatorFixer.cpp92 for (bool Skip = false; !Lex.LexFromRawLexer(Tok);) { in process() local
100 Skip = true; in process()
102 Skip = false; in process()
105 if (Skip || Tok.isNot(tok::numeric_constant) || Text[0] == '.' || in process()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h502 bool Skip = First->FileNotFound(FileName); in EmbedFileNotFound() local
505 Skip |= Second->FileNotFound(FileName); in EmbedFileNotFound()
506 return Skip; in EmbedFileNotFound()
517 bool Skip = First->FileNotFound(FileName); in FileNotFound() local
520 Skip |= Second->FileNotFound(FileName); in FileNotFound()
521 return Skip; in FileNotFound()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp703 uint32_t Skip = 0; in finalizeBlockRelax() local
714 Skip = E->getAddend() - Remove; in finalizeBlockRelax()
716 for (; J + 4 <= Skip; J += 4) in finalizeBlockRelax()
718 if (J != Skip) { in finalizeBlockRelax()
719 assert(J + 2 == Skip); in finalizeBlockRelax()
725 Skip = 2; in finalizeBlockRelax()
729 Skip = 4; in finalizeBlockRelax()
734 Dest += Skip; in finalizeBlockRelax()
735 Offset = E->getOffset() + Skip + Remove; in finalizeBlockRelax()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DProfileList.cpp95 return Skip; in getDefault()
110 return Skip; in inSection()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRetainPtrCtorAdoptChecker.cpp180 if (Result == IsOwnedResult::Owned || Result == IsOwnedResult::Skip) { in checkAdoptCall()
327 if (Result == IsOwnedResult::Skip) in visitConstructExpr()
480 enum class IsOwnedResult { Unknown, Skip, Owned, NotOwned }; enumerator
563 return IsOwnedResult::Skip; // Wait for instantiation. in isOwned()
565 return IsOwnedResult::Skip; // Wait for instantiation. in isOwned()
/freebsd/contrib/bmake/unit-tests/
H A Dvarname-dot-make-meta-ignore_patterns.exp7 Skip .MAKE.META.IGNORE_PATTERNS - check-ignore is out of date
H A Dvarname-dot-make-meta-ignore_filter.exp7 Skip .MAKE.META.IGNORE_FILTER - check-ignore is out of date
H A Dvarname-dot-make-meta-ignore_paths.exp7 Skip .MAKE.META.IGNORE_PATHS - check-ignore is out of date
H A Dmeta-ignore.inc27 DESC.three= Skip .MAKE.META.${TEST} - check-ignore is out of date
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DMultiplexConsumer.cpp401 bool Skip = true; in shouldSkipFunctionBody() local
403 Skip = Skip && Consumer->shouldSkipFunctionBody(D); in shouldSkipFunctionBody()
404 return Skip; in shouldSkipFunctionBody()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMLInlineAdvisor.cpp355 if (auto Skip = getSkipAdviceIfUnreachableCallsite(CB)) in getAdviceImpl() local
356 return Skip; in getAdviceImpl()
496 if (auto Skip = getSkipAdviceIfUnreachableCallsite(CB)) in getMandatoryAdvice() local
497 return Skip; in getMandatoryAdvice()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DProfileList.h35 Skip, enumerator
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallFrameOptimization.cpp110 enum InstClassification { Convert, Skip, Exit }; enumerator
349 return Skip; in classifyInstruction()
409 for (InstClassification Classification = Skip; Classification != Exit; ++I) { in collectCallInfo()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h142 uint64_t Skip = 0);
586 uint64_t Skip = 0) const {
588 PointerSize, Count, Skip);
601 uint64_t Skip = 0) const {
603 PointerSize, Count, Skip);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndexDiscovery.cpp257 uint32_t Skip = Pad & 0x0F; in handleFieldList() local
258 Content = Content.drop_front(Skip); in handleFieldList()
259 Offset += Skip; in handleFieldList()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCodeGen.h128 Skip = 1U << 0, enumerator
/freebsd/tools/build/
H A Dcheck-links.sh24 -U: Skip looking for unresolved symbols.
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A DOpts.td21 def no_params : FF<"no-params", "Skip function parameters and return types">;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp478 bool Skip = (Hints_MRI->first != 0); in getRegAllocationHints() local
480 if (Skip) { in getRegAllocationHints()
481 Skip = false; in getRegAllocationHints()
/freebsd/tools/test/stress2/misc/
H A Dtemp.sh158 if (loop != 0) /* Skip warmup */
/freebsd/lib/libsecureboot/
H A Dverify_file.c47 extern char *Skip;
49 # define MANIFEST_SKIP Skip

123456