OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Disable
(Results
1 - 25
of
73
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXStoredDiagnostic.cpp
52
CXString CXStoredDiagnostic::getDiagnosticOption(CXString *
Disable
) const {
56
if (
Disable
)
57
*
Disable
= cxstring::createDup((Twine("-Wno-") + Option).str());
62
if (
Disable
)
63
*
Disable
= cxstring::createRef("-ferror-limit=0");
CIndexDiagnostic.h
71
virtual CXString getDiagnosticOption(CXString *
Disable
) const = 0;
132
CXString getDiagnosticOption(CXString *
Disable
) const override;
CXLoadedDiagnostic.h
40
CXString getDiagnosticOption(CXString *
Disable
) const override;
CIndexDiagnostic.cpp
60
CXString getDiagnosticOption(CXString *
Disable
) const override {
61
if (
Disable
)
62
*
Disable
= cxstring::createEmpty();
384
CXString clang_getDiagnosticOption(CXDiagnostic Diag, CXString *
Disable
) {
385
if (
Disable
)
386
*
Disable
= cxstring::createEmpty();
389
return D->getDiagnosticOption(
Disable
);
CXLoadedDiagnostic.cpp
109
CXString CXLoadedDiagnostic::getDiagnosticOption(CXString *
Disable
) const {
114
if (
Disable
)
115
*
Disable
= cxstring::createDup((Twine("-Wno-") + DiagOption).str());
/src/usr.bin/make/unit-tests/
opt-debug.mk
10
#
Disable
all debug logging again.
/src/sys/arch/mips/mips/
cache_tx39_subr.S
57
mtc0 zero, MIPS_COP_0_STATUS #
Disable
interrupts.
60
#
Disable
the I-cache.
104
mtc0 zero, MIPS_COP_0_STATUS #
Disable
interrupts.
107
#
Disable
the I-cache.
cache_r3k_subr.S
73
mtc0 a0, MIPS_COP_0_STATUS #
disable
interrupts,
151
mtc0 zero, MIPS_COP_0_STATUS #
Disable
interrupts.
193
mtc0 zero, MIPS_COP_0_STATUS #
Disable
interrupts.
/src/sys/arch/mipsco/mipsco/
locore_machdep.S
45
mtc0 zero, MIPS_COP_0_STATUS #
Disable
interrupts
/src/external/apache2/llvm/dist/llvm/lib/Support/
WithColor.cpp
74
DisableColors ? ColorMode::
Disable
: ColorMode::Auto)
84
DisableColors ? ColorMode::
Disable
: ColorMode::Auto)
94
DisableColors ? ColorMode::
Disable
: ColorMode::Auto)
104
DisableColors ? ColorMode::
Disable
: ColorMode::Auto)
113
case ColorMode::
Disable
:
CrashRecoveryContext.cpp
147
void CrashRecoveryContext::
Disable
() {
206
CrashRecoveryContext::
Disable
();
283
CrashRecoveryContext::
Disable
();
303
// Because the Enable and
Disable
calls are static, it means that
341
// simply
disable
crash recovery and raise the signal again.
360
//
Disable
crash recovery and raise the signal again. The assumption here is
364
// This call of
Disable
isn't thread safe, but it doesn't actually matter.
365
CrashRecoveryContext::
Disable
();
/src/sys/arch/acorn32/doc/
bootoptions
50
nocache
Disable
all processor caches
51
nowritebuf
Disable
processor write buffer
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmInfo.cpp
24
enum DefaultOnOff { Default, Enable,
Disable
};
28
cl::desc("
Disable
emission of the extended flags in .loc directives."),
30
clEnumVal(Enable, "Enabled"), clEnumVal(
Disable
, "Disabled")),
37
"
Disable
the usage of LEB128 directives, and generate .byte instead."),
/src/external/bsd/nsd/dist/simdzone/
configure.ac
42
AC_ARG_ENABLE(westmere, AS_HELP_STRING([--
disable
-westmere],[
Disable
Westmere (SSE4.2) kernel]))
48
AC_ARG_ENABLE(haswell, AS_HELP_STRING([--
disable
-haswell],[
Disable
Haswell (AVX2) kernel]))
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGLoopInfo.cpp
51
MDNode::get(Ctx, {MDString::get(Ctx, "llvm.loop.pipeline.
disable
"),
86
if (Attrs.UnrollEnable == LoopAttributes::
Disable
)
95
// createFullUnrollMetadata will already have added llvm.loop.unroll.
disable
107
MDNode::get(Ctx, MDString::get(Ctx, "llvm.loop.unroll.
disable
")));
125
// Setting unroll.full or unroll.
disable
148
if (Attrs.UnrollAndJamEnable == LoopAttributes::
Disable
)
159
Ctx, MDString::get(Ctx, "llvm.loop.unroll_and_jam.
disable
")));
169
MDNode::get(Ctx, MDString::get(Ctx, "llvm.loop.unroll_and_jam.
disable
")));
216
if (Attrs.VectorizeEnable == LoopAttributes::
Disable
)
307
(Attrs.VectorizeScalable == LoopAttributes::
Disable
&
[
all
...]
CGLoopInfo.h
44
enum LVEnableState { Unspecified, Enable,
Disable
, Full };
49
/// Value for llvm.loop.unroll.* metadata (enable,
disable
, or full).
52
/// Value for llvm.loop.unroll_and_jam.* metadata (enable,
disable
, or full).
76
/// Value for llvm.loop.pipeline.
disable
metadata.
237
Enable ? LoopAttributes::Enable : LoopAttributes::
Disable
;
243
Enable ? LoopAttributes::Enable : LoopAttributes::
Disable
;
/src/sys/arch/arm/arm/
cpufunc_asm_pj4b.S
46
#define MV_FMC0_LFDIS (1 << 7) /*
Disable
DC Speculative linefill */
74
@
Disable
static branch prediction
75
orr r0, r0, #(1 << 5) @ STREX backoff
disable
81
orr r0, r0, #(1 << 25) @ Intervention Interleave
disable
83
orr r0, r0, #(1 << 29) @
Disable
MO device R/W
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetPassConfig.h
174
void setDisableVerify(bool
Disable
) { setOpt(DisableVerify,
Disable
); }
196
/// Allow the target to
disable
a specific standard pass by default.
/src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h
117
* Setting to -1
disable
the pruning (default). Setting to 0 will force
127
std::string Path; // Path to the cache, empty to
disable
.
136
/// negative value to
disable
pruning. A value of 0 will force pruning to
229
///
Disable
CodeGen, only run the stages till codegen and stop. The output
231
void disableCodeGen(bool
Disable
) { DisableCodeGen =
Disable
; }
233
/// Perform CodeGen only:
disable
all other stages.
330
/// Flag to enable/
disable
CodeGen. When set to true, the process stops after
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
WithColor.h
47
///
Disable
colors.
48
Disable
,
61
/// @param Mode Enable,
disable
or compute whether to use colors.
70
/// @param Mode Enable,
disable
or compute whether to use colors.
CrashRecoveryContext.h
64
///
Disable
crash recovery.
65
static void
Disable
();
/src/external/gpl3/gdb/dist/sim/testsuite/bfin/
cec-no-snen-reti.S
20
#
Disable
self nesting
/src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
cec-no-snen-reti.S
20
#
Disable
self nesting
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAttr.cpp
103
SetHints(LoopHintAttr::Unroll, LoopHintAttr::
Disable
);
111
SetHints(LoopHintAttr::UnrollAndJam, LoopHintAttr::
Disable
);
159
if (StateLoc->Ident->isStr("
disable
"))
160
State = LoopHintAttr::
Disable
;
324
// Enable|
Disable
|AssumeSafety hint. For example, vectorize(enable).
343
CategoryState.StateAttr->getState() == LoopHintAttr::
Disable
)) {
344
//
Disable
hints are not compatible with numeric hints of the same
/src/external/apache2/llvm/dist/llvm/include/llvm/Target/
TargetOptions.h
108
Disable
, //
Disable
the abort.
110
DisableWithDiag //
Disable
the abort but emit a diagnostic on failure.
229
///
Disable
the integrated assembler.
Completed in 43 milliseconds
1
2
3
Indexes created Sat Feb 28 05:31:39 UTC 2026