| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | MemProf.cpp | 25 const MemProfSchema &Schema) { in serializedSizeV2() argument 30 Size += PortableMemInfoBlock::serializedSize(Schema); in serializedSizeV2() 35 const MemProfSchema &Schema) { in serializedSizeV3() argument 40 Size += PortableMemInfoBlock::serializedSize(Schema); in serializedSizeV3() 44 size_t IndexedAllocationInfo::serializedSize(const MemProfSchema &Schema, in serializedSize() argument 48 return serializedSizeV2(*this, Schema); in serializedSize() 52 return serializedSizeV3(*this, Schema); in serializedSize() 58 const MemProfSchema &Schema) { in serializedSizeV2() argument 62 Result += N.serializedSize(Schema, Version2); in serializedSizeV2() 72 const MemProfSchema &Schema) { in serializedSizeV3() argument [all …]
|
| H A D | IndexedMemProfData.cpp | 26 const memprof::MemProfSchema &Schema) { in writeMemProfSchema() argument 27 OS.write(static_cast<uint64_t>(Schema.size())); in writeMemProfSchema() 28 for (const auto Id : Schema) in writeMemProfSchema() 37 memprof::MemProfSchema *Schema, memprof::IndexedVersion Version, in writeMemProfRecords() argument 40 memprof::RecordWriterTrait RecordWriter(Schema, Version, in writeMemProfRecords() 196 auto Schema = memprof::getHotColdSchema(); in writeMemProfV2() local 198 Schema = memprof::getFullSchema(); in writeMemProfV2() 199 writeMemProfSchema(OS, Schema); in writeMemProfV2() 202 writeMemProfRecords(OS, MemProfData.Records, &Schema, memprof::Version2); in writeMemProfV2() 240 auto Schema = memprof::getHotColdSchema(); in writeMemProfRadixTreeBased() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | MemProf.h | 96 Schema.set(llvm::to_underlying(Id)); in PortableMemInfoBlock() 102 PortableMemInfoBlock(const MemProfSchema &Schema, const unsigned char *Ptr) { in PortableMemInfoBlock() 103 deserialize(Schema, Ptr); in PortableMemInfoBlock() 112 Schema.reset(); in deserialize() 126 Schema.set(llvm::to_underlying(Id)); in deserialize() 132 void serialize(const MemProfSchema &Schema, raw_ostream &OS) const { in serialize() 136 for (const Meta Id : Schema) { in serialize() 168 return Schema; 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)); \ 155 auto Schema = MIB.getSchema(); 157 if (Schema.test(llvm::to_underlying(memprof::Meta::Name))) { \
|
| H A D | InstrProfReader.h | 699 memprof::MemProfSchema Schema; variable
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGPointerAuth.cpp | 27 const PointerAuthSchema &Schema, GlobalDecl Decl, QualType Type) { in getPointerAuthOtherDiscriminator() argument 28 switch (Schema.getOtherDiscrimination()) { in getPointerAuthOtherDiscriminator() 44 return llvm::ConstantInt::get(IntPtrTy, Schema.getConstantDiscrimination()); in getPointerAuthOtherDiscriminator() 75 const auto &Schema = getCodeGenOpts().PointerAuth.FunctionPointers; in getFunctionPointerAuthInfo() local 76 if (!Schema) in getFunctionPointerAuthInfo() 79 assert(!Schema.isAddressDiscriminated() && in getFunctionPointerAuthInfo() 86 Discriminator = getPointerAuthOtherDiscriminator(Schema, GlobalDecl(), T); in getFunctionPointerAuthInfo() 88 return CGPointerAuthInfo(Schema.getKey(), Schema.getAuthenticationMode(), in getFunctionPointerAuthInfo() 104 const PointerAuthSchema &Schema, llvm::Value *StorageAddress, in EmitPointerAuthInfo() argument 106 if (!Schema) in EmitPointerAuthInfo() [all …]
|
| H A D | ConstantInitBuilder.cpp | 303 llvm::Constant *Pointer, const PointerAuthSchema &Schema, in addSignedPointer() argument 305 if (!Schema || !Builder.CGM.shouldSignPointer(Schema)) in addSignedPointer() 309 if (Schema.isAddressDiscriminated()) { in addSignedPointer() 314 Pointer, Schema, StorageAddress, CalleeDecl, CalleeType); in addSignedPointer()
|
| H A D | CGCXX.cpp | 266 if (auto &Schema = in BuildAppleKextVirtualCall() local 270 PointerAuth = CGF.EmitPointerAuthInfo(Schema, VFuncPtr, OrigMD, QualType()); in BuildAppleKextVirtualCall()
|
| H A D | CGVTT.cpp | 94 if (const auto &Schema = in EmitVTTDefinition() local 96 Init = CGM.getConstantSignedPointer(Init, Schema, nullptr, GlobalDecl(), in EmitVTTDefinition()
|
| H A D | ItaniumCXXABI.cpp | 855 if (const auto &Schema = in EmitLoadOfMemberFunctionPointer() local 862 assert(Schema.getKey() == AuthInfo.getKey() && in EmitLoadOfMemberFunctionPointer() 867 Schema.getKey(), Schema.getAuthenticationMode(), Schema.isIsaPointer(), in EmitLoadOfMemberFunctionPointer() 868 Schema.authenticatesNullValues(), DiscriminatorPHI); in EmitLoadOfMemberFunctionPointer() 1184 const auto &Schema = in BuildMemberPointer() local 1186 if (Schema) in BuildMemberPointer() 1194 CGM.PtrDiffTy, 2 * ThisAdjustment.getQuantity() + !Schema); in BuildMemberPointer() 2150 if (auto &Schema = CGF.CGM.getCodeGenOpts().PointerAuth.CXXVTTVTablePointers) { in getVTableAddressPointInStructorWithVTT() local 2151 CGPointerAuthInfo PointerAuth = CGF.EmitPointerAuthInfo(Schema, VTT, in getVTableAddressPointInStructorWithVTT() 2207 auto &Schema = CGM.getCodeGenOpts().PointerAuth.CXXVirtualFunctionPointers; in getVirtualFunctionPointer() local [all …]
|
| H A D | CGBlocks.cpp | 191 auto &Schema = CGM.getCodeGenOpts().PointerAuth.BlockHelperFunctionPointers; in buildBlockDescriptor() local 194 elements.addSignedPointer(copyHelper, Schema, GlobalDecl(), QualType()); in buildBlockDescriptor() 198 elements.addSignedPointer(disposeHelper, Schema, GlobalDecl(), QualType()); in buildBlockDescriptor() 857 [&](llvm::Value *Value, const PointerAuthSchema &Schema, in EmitBlockLiteral() 860 if (Schema) { in EmitBlockLiteral() 862 Schema, StorageAddress.emitRawPointer(*this), Decl, Type); in EmitBlockLiteral() 1350 if (auto &Schema = CGOPointerAuth.BlockInvocationFunctionPointers) { in buildGlobalBlock() local 1355 fields.addSignedPointer(blockFn, Schema, GlobalDecl(), FnType); in buildGlobalBlock() 2771 if (auto &Schema = CGM.getCodeGenOpts() in emitByrefStructureInit() local 2774 Schema, fieldAddr.emitRawPointer(*this), GlobalDecl(), QualType()); in emitByrefStructureInit()
|
| H A D | CGExprConstant.cpp | 1930 PointerAuthQualifier Schema) { in tryEmitConstantSignedPointer() argument 1931 assert(Schema && "applying trivial ptrauth schema"); in tryEmitConstantSignedPointer() 1933 if (Schema.hasKeyNone()) in tryEmitConstantSignedPointer() 1936 unsigned Key = Schema.getKey(); in tryEmitConstantSignedPointer() 1940 if (Schema.isAddressDiscriminated()) { in tryEmitConstantSignedPointer() 1949 llvm::ConstantInt::get(CGM.IntPtrTy, Schema.getExtraDiscriminator()); in tryEmitConstantSignedPointer() 1954 if (Schema.isAddressDiscriminated()) in tryEmitConstantSignedPointer()
|
| H A D | CodeGenModule.h | 1052 bool shouldSignPointer(const PointerAuthSchema &Schema); 1054 const PointerAuthSchema &Schema, 1065 getPointerAuthOtherDiscriminator(const PointerAuthSchema &Schema,
|
| H A D | CGVTables.cpp | 874 if (const auto &Schema = in addVTableComponent() local 876 return builder.addSignedPointer(fnPtr, Schema, GD, QualType()); in addVTableComponent()
|
| H A D | CGObjCMac.cpp | 6667 if (const PointerAuthSchema &Schema = in emitMethodConstant() local 6671 method.addSignedPointer(Bitcast, Schema, GlobalDecl(), QualType()); in emitMethodConstant()
|
| H A D | CodeGenFunction.h | 4577 CGPointerAuthInfo EmitPointerAuthInfo(const PointerAuthSchema &Schema,
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | SPIRVObjectWriter.cpp | 22 constexpr uint32_t Schema = 0; in writeHeader() local 28 W.write<uint32_t>(Schema); in writeHeader()
|
| /freebsd/sys/contrib/device-tree/Bindings/ |
| H A D | writing-schema.rst | 6 Devicetree bindings are written using json-schema vocabulary. Schema files are 13 Schema Contents 95 For more details on properties sections, see 'Property Schema' section. 137 Property Schema 238 `JSON-Schema Specifications <http://json-schema.org/>`_ 240 `Using JSON Schema Book <http://usingjsonschema.com/>`_ 244 Annotated Example Schema
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | cad | 415 # Schema: https://www.web3d.org/specifications/x3d-3.2.dtd 422 # Schema: http://www.collada.org/2005/11/COLLADASchema 428 # Schema: http://schemas.microsoft.com/3dmanufacturing/core/2015/02
|
| /freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | ConstantInitBuilder.h | 207 const PointerAuthSchema &Schema, GlobalDecl CalleeDecl,
|
| /freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ |
| H A D | kerberos.schema | 1 # Novell Kerberos Schema Definitions
|
| H A D | kerberos.ldif | 1 # Novell Kerberos Schema Definitions
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 15746 typedef struct Schema Schema; typedef 16843 SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3*,int,Schema*); 17852 Schema *pSchema; /* Pointer to database schema (possibly shared) */ 17872 struct Schema { struct 18832 Schema *pSchema; /* Schema that contains this table */ 19152 Schema *pSchema; /* Schema containing this index */ 19750 Schema *pSchema; /* Schema to which this item is fixed */ 20475 Schema *pSchema; /* Schema containing the trigger */ 20476 Schema *pTabSchema; /* Schema containing the table */ 20783 Schema *pSchema; /* Fix items to this schema */ [all …]
|
| /freebsd/contrib/googletest/docs/ |
| H A D | advanced.md | 2200 The report format conforms to the following JSON Schema:
|
| /freebsd/contrib/sendmail/cf/ |
| H A D | README | 2268 LDAP Schema for Intranet Mail Routing
|