Home
last modified time | relevance | path

Searched refs:IMP (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dintdoc.c106 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
121 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
135 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
151 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) \ argument
152 { NAME, CALLABLE, FAMILY, IMP, },
166 #define DEFDOC(IMP,SUMMARY,DESCRIPTION) { FFEINTRIN_imp ## IMP, DESCRIPTION }, argument
173 #define DEFDOC(IMP,SUMMARY,DESCRIPTION) { FFEINTRIN_imp ## IMP, SUMMARY }, argument
H A Dintrin.h52 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
68 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) FFEINTRIN_spec ## CODE, argument
84 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
H A Dintrin.c84 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
101 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
117 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) argument
137 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) \ argument
138 { NAME, CALLABLE, FAMILY, IMP, },
H A Dintdoc.in9 DEFDOC (IMP, SUMMARY, DESCRIPTION)
11 IMP is the implementation keyword used in the intrin module.
16 Note that IMP is leveraged across multiple intrinsic names.
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc/execute/
H A DIMP.m5 /* Test getting and calling the IMP of a method */
/openbsd-src/gnu/llvm/libcxx/lib/abi/
H A Dpowerpc64-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist1072 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNKSt11logic_error4whatEv', 'storage_mappin…
1073 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNKSt13runtime_error4whatEv', 'storage_mapp…
1074 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNKSt9exception4whatEv', 'storage_mapping_c…
1075 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt11logic_errorD2Ev', 'storage_mapping_cl…
1076 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt12length_errorD1Ev', 'storage_mapping_c…
1077 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt12out_of_rangeD1Ev', 'storage_mapping_c…
1078 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt13runtime_errorD1Ev', 'storage_mapping_…
1079 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt13runtime_errorD2Ev', 'storage_mapping_…
1080 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt14overflow_errorD1Ev', 'storage_mapping…
1081 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt16invalid_argumentD1Ev', 'storage_mappi…
[all …]
H A Dpowerpc-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist1072 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNKSt11logic_error4whatEv', 'storage_mappin…
1073 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNKSt13runtime_error4whatEv', 'storage_mapp…
1074 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNKSt9exception4whatEv', 'storage_mapping_c…
1075 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt11logic_errorD2Ev', 'storage_mapping_cl…
1076 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt12length_errorD1Ev', 'storage_mapping_c…
1077 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt12out_of_rangeD1Ev', 'storage_mapping_c…
1078 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt13runtime_errorD1Ev', 'storage_mapping_…
1079 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt13runtime_errorD2Ev', 'storage_mapping_…
1080 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt14overflow_errorD1Ev', 'storage_mapping…
1081 {'import_export': 'IMP', 'is_defined': False, 'name': '_ZNSt16invalid_argumentD1Ev', 'storage_mappi…
[all …]
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjC.cpp1048 void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP, in GenerateObjCGetter() argument
1054 StartObjCMethod(OMD, IMP->getClassInterface()); in GenerateObjCGetter()
1056 generateObjCGetterBody(IMP, PID, OMD, AtomicHelperFn); in GenerateObjCGetter()
1634 void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP, in GenerateObjCSetter() argument
1640 StartObjCMethod(OMD, IMP->getClassInterface()); in GenerateObjCSetter()
1642 generateObjCSetterBody(IMP, PID, AtomicHelperFn); in GenerateObjCSetter()
1714 void CodeGenFunction::GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP, in GenerateObjCCtorDtorMethod() argument
1717 MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface()); in GenerateObjCCtorDtorMethod()
1718 StartObjCMethod(MD, IMP->getClassInterface()); in GenerateObjCCtorDtorMethod()
1725 for (const auto *IvarInit : IMP->inits()) { in GenerateObjCCtorDtorMethod()
[all …]
H A DCodeGenFunction.h2106 void GenerateObjCGetter(ObjCImplementationDecl *IMP,
2113 void GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP,
2118 void GenerateObjCSetter(ObjCImplementationDecl *IMP,
H A DCGObjCMac.cpp5212 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in EmitModuleSymbols() local
5214 if (ID->isWeakImported() && !IMP->isWeakImported()) in EmitModuleSymbols()
6225 if (ObjCImplementationDecl *IMP = ID->getImplementation()) in FinishNonFragileABIModule() local
6227 if (ID->isWeakImported() && !IMP->isWeakImported()) { in FinishNonFragileABIModule()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DFrontendActions.cpp861 for (auto *IMP : Primary->Imports) { in ExecuteAction() local
862 PrintSubMapEntry(IMP->Name, IMP->Kind); in ExecuteAction()
/openbsd-src/usr.bin/file/magdir/
H A Darchive331 # IMP
332 0 string IMP\xa IMP archive data
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaObjCProperty.cpp2109 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) { in DiagnoseUnimplementedProperties() local
2113 for (const auto *I : IMP->methods()) in DiagnoseUnimplementedProperties()
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp910 static bool mustSynthesizeSetterGetterMethod(ObjCImplementationDecl *IMP, in mustSynthesizeSetterGetterMethod() argument
913 auto *OMD = IMP->getInstanceMethod(getter ? PD->getGetterName() in mustSynthesizeSetterGetterMethod()
/openbsd-src/share/misc/
H A Dairport765 IMP:Imperatriz, Maranhao, Brazil
/openbsd-src/gnu/usr.bin/perl/lib/unicore/
H A DIndex.txt2674 IMP 1F47F
H A DNamesList.txt50809 1F47F IMP
H A DUnicodeData.txt32347 1F47F;IMP;So;0;ON;;;;;N;;;;;
/openbsd-src/gnu/usr.bin/cvs/
H A DFAQ4960 cvs import -m 'xyz 1.3' gnu/xyz GNU GNUXYZ_1_3 | tee /tmp/IMP
4966 cd <head-of-vendor-tree> awk '/^I / {print $2}' /tmp/IMP | sed
/openbsd-src/games/fortune/datfiles/
H A Dlimerick1429 As he fondled his IMP
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A DFSFChangeLog.117026 Return the IMP when the dispatch table is installed versus
7028 (get_imp): Install dispatch table if needed and return IMP
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/
H A DChangeLog7735 * objc/execute/IMP.m: Added.
/openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/
H A Dallkeys.txt7014 1F47F ; [*15E6.0020.0002] # IMP