| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| mkfuzzoids.pl | 34 my $OID = $1; 37 $OID =~ s|0x|\\x|g; 38 $OID =~ s|,||g; 40 print "$OBJname=\"$OID\"\n";
|
| /src/crypto/external/bsd/openssl/dist/fuzz/ |
| mkfuzzoids.pl | 34 my $OID = $1; 37 $OID =~ s|0x|\\x|g; 38 $OID =~ s|,||g; 40 print "$OBJname=\"$OID\"\n";
|
| /src/crypto/external/bsd/openssl.old/dist/fuzz/ |
| mkfuzzoids.pl | 24 my $OID = $1; 27 $OID =~ s|0x|\\x|g; 28 $OID =~ s|,||g; 30 print "$OBJname=\"$OID\"\n";
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGObjCRuntime.h | 80 const ObjCInterfaceDecl *OID, 83 const ObjCImplementationDecl *OID, 87 const ObjCInterfaceDecl *OID, 157 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0; 187 const ObjCInterfaceDecl *OID, 272 const ObjCInterfaceDecl *OID) = 0;
|
| CGObjCRuntime.cpp | 31 const ObjCInterfaceDecl *OID, 33 return CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar) / 38 const ObjCImplementationDecl *OID, 40 return CGM.getContext().lookupFieldBitOffset(OID->getClassInterface(), OID, 54 const ObjCInterfaceDecl *OID, 60 QualType InterfaceTy{OID->getTypeForDecl(), 0}; 90 CGF.CGM.getContext().lookupFieldBitOffset(OID, nullptr, Ivar);
|
| CGObjCGNU.cpp | 584 const ObjCInterfaceDecl *OID) override; 1234 const ObjCInterfaceDecl *OID = nullptr; 1236 if ((OID = dyn_cast<ObjCInterfaceDecl>(Result))) 1242 assert(OID && "Failed to find ObjCInterfaceDecl"); 1243 const ObjCInterfaceDecl *OIDDef = OID->getDefinition(); 1245 OID = OIDDef; 1248 if (OID->hasAttr<DLLImportAttr>()) 1250 else if (OID->hasAttr<DLLExportAttr>()) 1701 void GenerateClass(const ObjCImplementationDecl *OID) override { 1707 const_cast<ObjCInterfaceDecl *>(OID->getClassInterface()) [all...] |
| CGObjCMac.cpp | 1548 void GetClassSizeInfo(const ObjCImplementationDecl *OID, 1866 const ObjCInterfaceDecl *OID) { 1867 if (OID->hasAttr<ObjCExceptionAttr>()) 1869 if (const ObjCInterfaceDecl *Super = OID->getSuperClass()) 3302 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) 3303 for (const ObjCCategoryDecl *ClassExt : OID->known_extensions()) 3325 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) { 3326 for (const auto *P : OID->all_referenced_protocols()) 3840 const ObjCInterfaceDecl *OID = ID->getClassInterface(); 3847 for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin() [all...] |
| CGObjC.cpp | 439 const ObjCInterfaceDecl *OID, const ObjCMethodDecl *Method, 446 return GenerateMessageSend(CGF, Return, ResultType, Sel, Receiver, Args, OID, 608 ObjCInterfaceDecl *OID = nullptr; 627 OID = ReceiverType->castAs<ObjCObjectType>()->getInterface(); 628 assert(OID && "Invalid Objective-C class message send"); 629 Receiver = Runtime.GetClass(*this, OID); 697 *this, Return, ResultType, E->getSelector(), Receiver, Args, OID,
|
| /src/external/bsd/ntp/dist/ntpsnmpd/ |
| ntpsnmpd-opts.def | 66 currently uses a private MIB OID, 68 which is the Meinberg top level OEM OID, and 71 The final OID has to be registered with IANA
|
| /src/crypto/external/apache2/openssl/dist/providers/ |
| decoders.inc | 138 * algorithm name or OID, and delegates further decoding in DER form to the 144 * decrypts it, obtaining the algorithm name or OID, and delegates the
|
| /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/ |
| OID.pm | 8 # Author note: this is originally RL::ASN1::OID, 11 package OpenSSL::OID; 35 OpenSSL::OID - an OBJECT IDENTIFIER parser / encoder 48 use OpenSSL::OID; 53 # This gives the array of DER encoded bytes for the OID, i.e. 57 # This registers a name with an OID. It's saved internally and 63 use OpenSSL::OID qw(:DEFAULT encode_oid_nums); 82 # examples of 1 (these are all the OID for rsaEncrypted): 122 ######## NAME TO OID REPOSITORY 158 my $oid = $1 [all...] |
| /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/ |
| OID.pm | 8 # Author note: this is originally RL::ASN1::OID, 11 package OpenSSL::OID; 35 OpenSSL::OID - an OBJECT IDENTIFIER parser / encoder 48 use OpenSSL::OID; 53 # This gives the array of DER encoded bytes for the OID, i.e. 57 # This registers a name with an OID. It's saved internally and 63 use OpenSSL::OID qw(:DEFAULT encode_oid_nums); 82 # examples of 1 (these are all the OID for rsaEncrypted): 122 ######## NAME TO OID REPOSITORY 158 my $oid = $1 [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclPrinter.cpp | 1314 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) { 1315 std::string I = OID->getNameAsString(); 1316 ObjCInterfaceDecl *SID = OID->getSuperClass(); 1324 if (OID->ivar_size() > 0) { 1328 for (const auto *I : OID->ivars()) { 1335 else if (SID || (OID->decls_begin() != OID->decls_end())) { 1339 VisitDeclContext(OID, false); 1345 void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) { 1346 std::string I = OID->getNameAsString() [all...] |
| Mangle.cpp | 447 if (const auto *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) 448 ClassName = OID->getObjCRuntimeNameAsString(); 449 else if (const auto *OID = dyn_cast<ObjCImplementationDecl>(OCD)) 450 ClassName = OID->getObjCRuntimeNameAsString();
|
| DeclObjC.cpp | 273 const auto *OID = cast<ObjCInterfaceDecl>(this); 275 for (const auto *Cat : OID->visible_categories()) { 283 for (const auto *I : OID->all_referenced_protocols()) 289 if (const ObjCInterfaceDecl *superClass = OID->getSuperClass()) 1095 const ObjCInterfaceDecl *OID, 1104 if (OID) { 1105 selfTy = Context.getObjCInterfaceType(OID); 1140 const ObjCInterfaceDecl *OID) { 1143 getSelfType(Context, OID, selfIsPseudoStrong, selfIsConsumed);
|
| /src/crypto/external/apache2/openssl/dist/providers/common/der/ |
| oids_to_c.pm | 16 use OpenSSL::OID; 50 croak "Unsupported OID size (>127 bytes)" if $oid_size > 127;
|
| /src/crypto/external/bsd/openssl/dist/providers/common/der/ |
| oids_to_c.pm | 16 use OpenSSL::OID; 50 croak "Unsupported OID size (>127 bytes)" if $oid_size > 127;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| AnalysisConsumer.cpp | 602 if (const auto *OID = dyn_cast<ObjCImplementationDecl>(DC)) { 603 OS << OID->getName(); 604 } else if (const auto *OID = dyn_cast<ObjCInterfaceDecl>(DC)) { 605 OS << OID->getName();
|
| /src/external/apache2/llvm/dist/clang/lib/Edit/ |
| RewriteObjCFoundationAPI.cpp | 144 const ObjCInterfaceDecl *OID = ObjTy->getInterface(); 148 if (OID->getName() == "NSMapTable" || 149 OID->getName() == "NSLocale") 150 return OID;
|
| /src/sys/dev/microcode/aic7xxx/ |
| aic7xxx.seq | 213 and A, OID, TARGIDIN; 215 and A, OID, SCSIID_ULTRA2; 217 and A, OID, SCSIID; 341 and A, OID, SCSIID_ULTRA2; 343 and A, OID, SCSIID; 379 and SCSIID, TWIN_TID|OID, SCB_SCSIID;
|
| aic7xxx.reg | 189 mask OID 0x0f /* Our ID mask */ 359 mask OID 0x0f /* Our ID mask */ 1080 mask OID 0x0f
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| BodyFarm.cpp | 855 const ObjCInterfaceDecl *OID = D->getClassInterface(); 856 if (dyn_cast<ObjCInterfaceDecl>(D->getParent()) != OID) 857 for (auto *Ext : OID->known_extensions()) {
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| RewriteModernObjC.cpp | 940 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); 941 assert(IMD && OID && "Synthesized ivars must be attached to @implementation"); 956 RewriteObjCMethodDecl(OID->getContainingInterface(), 962 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1) 992 RewriteIvarOffsetComputation(OID, Getr); 996 Getr += "return " + getIvarAccessString(OID); 1016 RewriteObjCMethodDecl(OID->getContainingInterface(), 1023 RewriteIvarOffsetComputation(OID, Setr); 1037 Setr += getIvarAccessString(OID) + " = "; 1333 void RewriteModernObjC::RewriteImplementationDecl(Decl *OID) { [all...] |
| RewriteObjC.cpp | 757 static std::string getIvarAccessString(ObjCIvarDecl *OID) { 758 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface(); 763 S += OID->getName(); 786 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); 788 if (!OID) 804 RewriteObjCMethodDecl(OID->getContainingInterface(), 810 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1) 840 RewriteIvarOffsetComputation(OID, Getr); 844 Getr += "return " + getIvarAccessString(OID); 864 RewriteObjCMethodDecl(OID->getContainingInterface() [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/overlays/ |
| memberof.c | 1749 #define OID "1.3.6.1.4.1.7136.2.666.4" 1750 #define OIDAT OID ".1.1" 1751 #define OIDCFGAT OID ".1.2" 1752 #define OIDOC OID ".2.1" 1753 #define OIDCFGOC OID ".2.2"
|