| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | SanitizerMetadata.cpp | 49 llvm::GlobalVariable::SanitizerMetadata Meta; in reportGlobal() local 51 Meta = GV->getSanitizerMetadata(); in reportGlobal() 53 Meta.NoAddress |= NoSanitizeAttrSet.hasOneOf(SanitizerKind::Address); in reportGlobal() 54 Meta.NoAddress |= CGM.isInNoSanitizeList( in reportGlobal() 57 Meta.NoHWAddress |= NoSanitizeAttrSet.hasOneOf(SanitizerKind::HWAddress); in reportGlobal() 58 Meta.NoHWAddress |= CGM.isInNoSanitizeList( in reportGlobal() 61 Meta.Memtag |= in reportGlobal() 63 Meta.Memtag &= !NoSanitizeAttrSet.hasOneOf(SanitizerKind::MemTag); in reportGlobal() 64 Meta.Memtag &= !CGM.isInNoSanitizeList( in reportGlobal() 67 Meta.IsDynInit = IsDynInit && !Meta.NoAddress && in reportGlobal() [all …]
|
| H A D | CGVTables.cpp | 1009 llvm::GlobalValue::SanitizerMetadata Meta; in RemoveHwasanMetadata() local 1011 Meta = GV->getSanitizerMetadata(); in RemoveHwasanMetadata() 1012 Meta.NoHWAddress = true; in RemoveHwasanMetadata() 1013 GV->setSanitizerMetadata(Meta); in RemoveHwasanMetadata()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/ |
| H A D | guarded_pool_allocator.cpp | 137 const AllocationMetadata &Meta = Metadata[i]; in iterate() local 138 if (Meta.Addr && !Meta.IsDeallocated && Meta.Addr >= Start && in iterate() 139 Meta.Addr < Start + Size) in iterate() 140 Cb(Meta.Addr, Meta.RequestedSize, Arg); in iterate() 242 AllocationMetadata *Meta = addrToMetadata(SlotStart); in allocate() local 263 Meta->RecordAllocation(UserPtr, Size); in allocate() 266 Meta->AllocationTrace.RecordBacktrace(Backtrace); in allocate() 333 AllocationMetadata *Meta = addrToMetadata(UPtr); in deallocate() local 337 if (Meta->HasCrashed) in deallocate() 340 if (Meta->Addr != UPtr) { in deallocate() [all …]
|
| H A D | crash_handler.cpp | 100 const AllocationMetadata *Meta = addrToMetadata(State, Metadata, ErrorPtr); in __gwp_asan_get_metadata() local 101 if (Meta->Addr == 0) in __gwp_asan_get_metadata() 104 return Meta; in __gwp_asan_get_metadata()
|
| /freebsd/contrib/tcsh/ |
| H A D | eight-bit.me | 34 Meta-<non-control-character> bindings would be undone in these cases. 116 self-insert-command, I lost the ability to use the Meta key to call the 129 Meta ~Ctrl<Key>d: string(0x1b) string(d) 136 :Meta ~Ctrl<Key>d: string(0x1b) string(d) \\n\\ 137 :Meta ~Ctrl<Key>D: string(0x1b) string(D) \\n\\ 138 :Meta ~Ctrl<Key>e: string(0x1b) string(e) \\n\\ 139 :Meta ~Ctrl<Key>E: string(0x1b) string(E) \\n\\ 140 :Meta ~Ctrl<Key>v: string(0x1b) string(v) \\n\\ 141 :Meta ~Ctrl<Key>V: string(0x1b) string(V)
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | MemProf.h | 72 enum class Meta : uint64_t { enum 80 using MemProfSchema = llvm::SmallVector<Meta, static_cast<int>(Meta::Size)>; 95 for (const Meta Id : IncomingSchema) in PortableMemInfoBlock() 113 for (const Meta Id : IncomingSchema) { in deserialize() 116 case Meta::Name: { \ in deserialize() 136 for (const Meta Id : Schema) { in serialize() 139 case Meta::Name: { \ in serialize() 167 std::bitset<llvm::to_underlying(Meta::Size)> getSchema() const { in getSchema() 174 assert(Schema[llvm::to_underlying(Meta::Name)]); \ 183 assert(Schema[llvm::to_underlying(Meta::Name)]); \ [all …]
|
| H A D | MemProfYAML.h | 146 MIB.Schema.set(llvm::to_underlying(memprof::Meta::Name)); \ 157 if (Schema.test(llvm::to_underlying(memprof::Meta::Name))) { \
|
| /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | img,meta-intc.txt | 1 * Meta External Trigger Controller Binding 4 representation of a Meta external trigger controller. 44 * Meta external trigger block 64 // Compatible with Meta hardware trigger block. 71 * An interrupt generating device that is wired to a Meta external
|
| H A D | img,pdc-intc.txt | 64 // Compatible with Meta hardware trigger block.
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | MemProf.cpp | 13 #define MIBEntryDef(NameTag, Name, Type) List.push_back(Meta::Name); in getFullSchema() 20 return {Meta::AllocCount, Meta::TotalSize, Meta::TotalLifetime, in getHotColdSchema() 21 Meta::TotalLifetimeAccessDensity}; in getHotColdSchema() 366 if (NumSchemaIds > static_cast<uint64_t>(Meta::Size)) { in readMemProfSchema() 375 if (Tag >= static_cast<uint64_t>(Meta::Size)) { in readMemProfSchema() 379 Result.push_back(static_cast<Meta>(Tag)); in readMemProfSchema()
|
| /freebsd/sys/contrib/zstd/ |
| H A D | SECURITY.md | 3 …Security issues in this open source project can be safely reported via the Meta Bug Bounty program: 7 Meta's security team will triage your report and determine whether or not is it eligible for a boun…
|
| H A D | LICENSE | 5 Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved. 17 * Neither the name Facebook, nor Meta, nor the names of its contributors may
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Globals.cpp | 251 void GlobalValue::setSanitizerMetadata(SanitizerMetadata Meta) { in setSanitizerMetadata() argument 252 getContext().pImpl->GlobalValueSanitizerMetadata[this] = Meta; in setSanitizerMetadata() 264 SanitizerMetadata Meta; in setNoSanitizeMetadata() local 265 Meta.NoAddress = true; in setNoSanitizeMetadata() 266 Meta.NoHWAddress = true; in setNoSanitizeMetadata() 267 setSanitizerMetadata(Meta); in setNoSanitizeMetadata()
|
| /freebsd/sys/contrib/openzfs/ |
| H A D | META | 1 Meta: 1
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | ebml | 4 # ebml: file(1) magic for various Extensible Binary Meta Language
|
| /freebsd/sys/contrib/device-tree/src/arm64/amlogic/ |
| H A D | meson-gxbb-vega-s95-meta.dts | 12 model = "Tronsmart Vega S95 Meta";
|
| /freebsd/sys/contrib/zstd/lib/ |
| H A D | libzstd.pc.in | 2 # Copyright (c) Meta Platforms, Inc. and affiliates.
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Program.h | 199 void *operator new(size_t Meta, PoolAllocTy &Alloc, size_t Data) { in new() argument 200 return Alloc.Allocate(Meta + Data, alignof(void *)); in new()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCInstrDesc.h | 154 Meta, enumerator 274 bool isMetaInstruction() const { return Flags & (1ULL << MCID::Meta); } in isMetaInstruction()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| H A D | Z3CrosscheckVisitor.h | 83 Z3Decision interpretQueryResult(const Z3CrosscheckVisitor::Z3Result &Meta);
|
| /freebsd/contrib/arm-optimized-routines/math/tools/ |
| H A D | remez.jl | 1221 eval(Meta.parse(preliminary_command)) 1224 lo = BigFloat(eval(Meta.parse(argwords[1]))) 1225 hi = BigFloat(eval(Meta.parse(argwords[2]))) 1228 f = eval(Meta.parse("x -> " * argwords[5])) 1246 w = eval(Meta.parse("(x,y) -> " * argwords[6]))
|
| /freebsd/contrib/tcsh/nls/german/ |
| H A D | set4 | 43 41 hat Meta-Taste
|
| H A D | set7 | 6 4 \tEs hat %s Meta-Taste\n
|
| /freebsd/packages/zstd/ |
| H A D | zstd.ucl | 23 by Meta Platforms, Inc. and standardised by the IETF in RFC 8478. Zstd is
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineOperand.h | 949 static MachineOperand CreateMetadata(const MDNode *Meta) { in CreateMetadata() argument 951 Op.Contents.MD = Meta; in CreateMetadata()
|