Home
last modified time | relevance | path

Searched +full:odr +full:- +full:value (Results 1 – 25 of 95) sorted by relevance

1234

/freebsd/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,ad7191.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Alisa-Dariana Roman <alisa.roman@analog.com>
16 https://www.analog.com/media/en/technical-documentation/data-sheets/AD7191.pdf
23 - adi,ad7191
28 spi-cpol: true
30 spi-cpha: true
37 CMOS-compatible clock driving MCLK2 pin). Must be absent when CLKSEL pin
43 avdd-supply:
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A DOptions.td4 def NAME: Flag<["--"], name>, HelpText<help1>;
5 def no_ # NAME: Flag<["--"], "no-" # name>, HelpText<help2>;
8 def build_accelerator: Separate<["--", "-"], "build-accelerator">,
11 " =none - D
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticASTKinds.td1 //==--- DiagnosticASTKinds.td - libast diagnostics ------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
25 "value %0 is outside the range of representable values of type %1">;
29 def note_constexpr_lshift_of_negative : Note<"left shift of negative value %0">;
32 "%select{non-constexpr|undefined}0 %select{function|constructor}1 %2 cannot "
50 "static type %1 of operand is a non-public base class of dynamic type %2|"
53 "%3 is a non-public base class of dynamic type %2 of operand}0">;
58 "non-literal type %0 cannot be used in a constant expression">;
63 "address of non-static constexpr variable %0 may differ on each invocation "
[all …]
H A DTargetCXXABI.h1 //===--- TargetCXXABI.h - C++ ABI Target Configuration ----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
37 // Right now, this class is passed around as a cheap value type.
38 // If you add more members, especially non-POD members, please
61 return getSpellingMap().find(ABIKind)->second; in getSpelling()
82 // Check that the kind provided by the fc++-abi flag is supported on this
135 /// Is this ABI an MSVC-compatible ABI?
151 /// Many Itanium-style C++ ABIs require member functions to be aligned, so
[all …]
H A DSpecifiers.h1 //===--- Specifiers.h - Declaration and Type Specifiers ---------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
65 TST_bitint, // Bit-precise integer types.
67 TST_Float16, // C11 extension ISO/IEC TS 18661-3
83 TST_interface, // C++ (Microsoft-specific) __interface type
84 TST_typename, // Typedef, C++ class-name or enum name, etc.
85 TST_typeofType, // C23 (and GNU extension) typeof(type-name)
87 TST_typeof_unqualType, // C23 typeof_unqual(type-name)
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_globals.cpp1 //===-- asan_globals.cpp --------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
47 // Lazy-initialized and never deleted.
58 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal() argument
59 FastPoisonShadow(g->beg, g->size_with_redzone, value); in PoisonShadowForGlobal()
64 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, in PoisonRedZones()
77 if (addr <= g.beg - kMinimalDistanceFromAnotherGlobal) return false; in IsAddressNearGlobal()
84 bool symbolized = Symbolizer::GetOrInit()->SymbolizeData(g.beg, &info); in ReportGlobal()
[all …]
H A Dasan_flags.inc1 //===-- asan_flags.inc ------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
19 ASAN_FLAG(int, quarantine_size, -1,
21 ASAN_FLAG(int, quarantine_size_mb, -1,
22 "Size (in Mb) of quarantine used to detect use-after-free "
23 "errors. Lower value may reduce memory usage but increase the "
25 ASAN_FLAG(int, thread_local_quarantine_size_kb, -1,
27 "use-after-free errors. Lower value may reduce memory usage but "
[all …]
/freebsd/usr.bin/clang/llvm-dwarfutil/
H A Dllvm-dwarfutil.14 .nr rst2man-indent-level 0
7 \\$1 \\n[an-margin]
8 level \\n[rst2man-indent-level]
9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
10 -
11 \\n[rst2man-indent0]
12 \\n[rst2man-indent1]
13 \\n[rst2man-indent2]
18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
19 . nr rst2man-indent-level +1
[all …]
/freebsd/sys/dev/gpio/
H A Dqoriq_gpio.c1 /*-
57 return (sc->busdev); in qoriq_gpio_get_bus()
80 *caps = sc->sc_pins[pin].gp_caps; in qoriq_gpio_pin_getcaps()
96 name[GPIOMAXNAME-1] = '\0'; in qoriq_gpio_pin_getname()
109 if ((flags & sc->sc_pins[pin].gp_caps) != flags) { in qoriq_gpio_pin_configure()
114 reg = bus_read_4(sc->sc_mem, GPIO_GPDIR); in qoriq_gpio_pin_configure()
115 reg &= ~(1 << (31 - pin)); in qoriq_gpio_pin_configure()
116 bus_write_4(sc->sc_mem, GPIO_GPDIR, reg); in qoriq_gpio_pin_configure()
119 reg = bus_read_4(sc->sc_mem, GPIO_GPDIR); in qoriq_gpio_pin_configure()
120 reg |= (1 << (31 - pin)); in qoriq_gpio_pin_configure()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DGlobalValue.h1 //===-- llvm/GlobalValue.h - Class to represent a global value --*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 //===----------------------------------------------------------------------===//
24 #include "llvm/IR/Value.h"
45 // Objective-C functions which commonly have :'s in their names.
100 unsigned UnnamedAddrVal : 2; // This value's address is not significant
107 /// value of Function::isIntrinsic(), which may be true even if
132 Value *handleOperandChangeImpl(Value *From, Value *To);
153 // nobuiltin due to attributes at call-sites. To avoid applying IPO based in mayBeDerefined()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h1 //===- ScopeInfo.h - Information about a semantic context -------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
148 /// implementation, such as \c -dealloc, \c -finalize, or any method marked
178 /// Whether we found an immediate-escalating expression.
207 /// SwitchStack - This is the current set of active switch statements in the
212 /// block, if there is any chance of applying the named return value
251 /// Part of the implementation of -Wrepeated-use-of-weak.
257 /// :---------------: | :-----------------: | :------------------------------:
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h
H A DDWARFLinkerDeclContext.h
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerCompileUnit.h1 //===- DWARFLinkerCompileUnit.h ---------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
24 /// Mapped value in the address map is the offset to apply to the
29 // the value of relocation which should be applied. Currently,
54 return I->getDIEInteger().getValue(); in get()
70 /// ODR Declaration context.
94 /// Is ODR marking done?
191 /// \p Ctxt if it is non-null.
221 /// in the string table at \p Offset. \p Name must be an Objective-C
[all …]
/freebsd/contrib/llvm-project/lld/docs/MachO/
H A Dld64-vs-lld.rst2 ld64 vs LLD-MachO
6 and LLD-MachO.
11 the opposite. ld64's behavior hides ODR violations, so we have chosen not
13 the ``--dead-strip-duplicates`` flag. Usage of this flag is discouraged, and
17 ``-no_deduplicate`` Flag
19 - ld64: This turns off ICF (deduplication pass) in the linker.
20 - LLD: This turns off ICF and string merging in the linker.
33 - ld64:
38 - LLD: Duplicate symbols, regardless of which archives they are from, will
53 hermetic builds, enabled by setting any value for the ``ZERO_AR_DATE``
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1 //===- AddressSanitizer.cpp - memory error detector -----------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
16 //===----------------------------------------------------------------------===//
65 #include "llvm/IR/Value.h"
194 // Command-line flags.
197 "asan-kernel", cl::desc("Enable KernelAddressSanitizer instrumentation"),
201 "asan-recover",
202 cl::desc("Enable recovery mode (continue-after-error)."),
206 "asan-guard-against-version-mismatch",
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1 //===- LLVMContextImpl.h - The LLVMContextImpl opaque class -----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
39 #include "llvm/IR/Value.h"
101 : ETypes(ST->elements()), isPacked(ST->isPacked()) {}
110 bool operator!=(const KeyTy &that) const { return !this->operator==(that); }
150 : ReturnType(FT->getReturnType()), Params(FT->params()),
151 isVarArg(FT->isVarArg()) {}
162 bool operator!=(const KeyTy &that) const { return !this->operator==(that); }
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A D__config1 // -*- C++ -*-
2 //===------
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h1 //===- ASTReader.h - AST File Reader ----------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
208 /// Receives __COUNTER__ value.
210 unsigned Value) {} in ReadCounter() argument
225 /// each non-system input file of the AST File. If
281 void ReadCounter(const serialization::ModuleFile &M, unsigned Value) override;
314 void ReadCounter(const serialization::ModuleFile &M, unsigned Value) override;
340 /// The on-disk hash table(s) used for DeclContext name lookup.
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDANV.cpp1 //===----- CGCUDANV.cpp - Interface to NVIDIA CUDA Runtime ----------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
103 llvm::Constant *Value = in makeConstantArray() local
106 TheModule, Value->getType(), /*isConstant=*/true, in makeConstantArray()
107 llvm::GlobalValue::PrivateLinkage, Value, Name); in makeConstantArray()
109 GV->setSection(SectionName); in makeConstantArray()
112 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::None); in makeConstantArray()
115 GV->setAlignment(llvm::Align(Alignment)); in makeConstantArray()
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DSymbolTable.cpp1 //===- SymbolTable.cpp ----------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
28 return symVector[it->second]; in find()
38 sym = symVector[p.first->second]; in insert()
45 sym->isUsedInRegularObj |= !file || isa<ObjFile>(file); in insert()
70 auto insertIt = llvm::upper_bound(toIsec->symbols, toOff, in transplantSymbolsAtOffset()
72 return cast<Defined>(s)->value < off; in transplantSymbolsAtOffset()
74 llvm::erase_if(fromIsec->symbols, [&](Symbol *s) { in transplantSymbolsAtOffset()
76 if (d->value != fromOff) in transplantSymbolsAtOffset()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dbind.h1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
31 …: _If< _IsSame<_Tp, __remove_cvref_t<_Tp> >::value, false_type, is_bind_expression<__remove_cvref_…
35 inline constexpr bool is_bind_expression_v = is_bind_expression<_Tp>::value;
40 : _If< _IsSame<_Tp, __remove_cvref_t<_Tp> >::value,
46 inline constexpr int is_placeholder_v = is_placeholder<_Tp>::value;
55 // implementing them as `extern <implementation-defined>`. Libc++ implements them as
58 // avoid ODR violations, which is an ABI break.
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
73 // See if this is an auto-typed variable whose initializer we are parsing. in CanUseDecl()
79 if (FD->isDeleted()) in CanUseDecl()
84 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && in CanUseDecl()
96 if (TreatUnavailableAsInvalid && D->getAvailability() == AR_Unavailable && in CanUseDecl()
97 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) in CanUseDecl()
108 if (const auto *A = D->getAttr<UnusedAttr>()) { in DiagnoseUnusedOfDecl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp1 //===- ConstantMerge.cpp - Merge duplicate global constants ---------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
17 //===----------------------------------------------------------------------===//
48 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer()); in FindUsedValues()
50 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i) { in FindUsedValues()
51 Value *Operand = Inits->getOperand(i)->stripPointerCasts(); in FindUsedValues()
71 GV->getAllMetadata(MDs); in hasMetadataOtherThanDebugLoc()
81 From->getDebugInfo(MDs); in copyDebugLocMetadata()
83 To->addDebugInfo(MD); in copyDebugLocMetadata()
[all …]

1234