Searched refs:DD (Results 51 - 75 of 200) sorted by relevance

12345678

/external/valgrind/main/none/tests/arm/
H A Dvfp.c62 #define TESTINSN_vmovf32_imm(instruction, DD, imm) \
68 "vstmia %0, {" #DD "}\n\t" \
71 : #DD, "memory" \
154 #define TESTINSN_vmov_double_2core(instruction, DD, RN, RM, RNval, RMval) \
162 "vmov.i8 " #DD ", #0x55\n\t" \
164 "vstmia %0, {" #DD "}\n\t" \
167 : #DD, #RN, #RM, "memory" \
169 printf("%s :: "#DD" 0x%08x 0x%08x\n", \
193 #define TESTINSN_un_f64(instruction, DD, DM, DMtype, DMval0, DMval1) \
198 "vmov.i8 " #DD ", #
[all...]
/external/chromium_org/third_party/boringssl/win-x86_64/crypto/bn/
H A Dx86_64-mont.asm884 DD 0a548f3fch
917 DD imagerel $L$SEH_begin_bn_mul_mont
918 DD imagerel $L$SEH_end_bn_mul_mont
919 DD imagerel $L$SEH_info_bn_mul_mont
921 DD imagerel $L$SEH_begin_bn_mul4x_mont
922 DD imagerel $L$SEH_end_bn_mul4x_mont
923 DD imagerel $L$SEH_info_bn_mul4x_mont
925 DD imagerel $L$SEH_begin_bn_sqr8x_mont
926 DD imagerel $L$SEH_end_bn_sqr8x_mont
927 DD imagere
[all...]
H A Dx86_64-mont5.asm1897 DD 0,0,0,0,0,0,-1,-1
1898 DD 0,0,0,0,0,0,0,0
1978 DD 0a548f3fch
2011 DD imagerel $L$SEH_begin_bn_mul_mont_gather5
2012 DD imagerel $L$SEH_end_bn_mul_mont_gather5
2013 DD imagerel $L$SEH_info_bn_mul_mont_gather5
2015 DD imagerel $L$SEH_begin_bn_mul4x_mont_gather5
2016 DD imagerel $L$SEH_end_bn_mul4x_mont_gather5
2017 DD imagerel $L$SEH_info_bn_mul4x_mont_gather5
2019 DD imagere
[all...]
/external/clang/lib/AST/
H A DMangle.cpp199 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD, argument
204 mangleCXXDtor(DD, DT, Out);
H A DVTableBuilder.cpp1321 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1326 Components.push_back(VTableComponent::MakeCompleteDtor(DD));
1327 Components.push_back(VTableComponent::MakeDeletingDtor(DD));
1575 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1583 ImplicitVirtualDtor = DD;
1702 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1703 MethodVTableIndices[GlobalDecl(DD, Dtor_Complete)]
1705 MethodVTableIndices[GlobalDecl(DD, Dtor_Deleting)]
2012 const CXXDestructorDecl *DD = Component.getDestructorDecl(); local
2014 DD
3055 const CXXDestructorDecl *DD = Component.getDestructorDecl(); local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h126 DwarfDebug *DD; member in class:llvm::AsmPrinter
134 DwarfDebug *getDwarfDebug() { return DD; }
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp267 void VisitDeclaratorDecl(DeclaratorDecl *DD);
347 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
348 if (DD->DeclInfo) {
350 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
355 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
559 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) { argument
560 VisitValueDecl(DD);
561 DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
566 DD->DeclInfo = Info;
1298 auto &DD local
1382 struct CXXRecordDecl::DefinitionData *DD; local
[all...]
/external/clang/include/clang/AST/
H A DDeclCXX.h585 auto *DD = DefinitionData.get(); local
586 assert(DD && "queried property of class with no definition");
587 return *DD;
593 auto *DD = DefinitionData.getNotUpdated(); local
594 assert(DD && DD->IsLambda && "queried lambda property of non-lambda class");
595 return static_cast<LambdaDefinitionData&>(*DD);
670 auto *DD = DefinitionData.get(); local
671 return DD ? DD
1014 auto *DD = DefinitionData.getNotUpdated(); local
[all...]
H A DMangle.h102 virtual void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
/external/clang/lib/Sema/
H A DSemaAccess.cpp1468 void Sema::HandleDelayedAccessCheck(DelayedDiagnostic &DD, Decl *D) { argument
1485 AccessTarget Target(DD.getAccessData());
1487 if (CheckEffectiveAccess(*this, EC, DD.Loc, Target) == ::AR_inaccessible)
1488 DD.Triggered = true;
1491 void Sema::HandleDependentAccessCheck(const DependentDiagnostic &DD, argument
1493 SourceLocation Loc = DD.getAccessLoc();
1494 AccessSpecifier Access = DD.getAccess();
1496 Decl *NamingD = FindInstantiatedDecl(Loc, DD.getAccessNamingClass(),
1499 Decl *TargetD = FindInstantiatedDecl(Loc, DD.getAccessTarget(),
1503 if (DD
[all...]
H A DSemaOpenMP.cpp2471 CXXDestructorDecl *DD = RD->getDestructor(); local
2472 if (DD) {
2473 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
2474 DD->isDeleted()) {
2485 MarkFunctionReferenced(ELoc, DD);
2486 DiagnoseUseOfDecl(DD, ELoc);
2599 CXXDestructorDecl *DD = RD->getDestructor(); local
2600 if (DD) {
2601 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
2602 DD
2823 CXXDestructorDecl *DD = RD->getDestructor(); local
3207 CXXDestructorDecl *DD = RD->getDestructor(); local
[all...]
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp55 } else if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
56 lookForAttribute(DD, DD->getTypeSourceInfo());
/external/fonttools/Lib/fontTools/misc/
H A DbezierTools.py272 DD = b*b - 4.0*a*c
273 if DD >= 0.0:
274 rDD = sqrt(DD)
/external/fonttools/Tools/fontTools/misc/
H A DbezierTools.py272 DD = b*b - 4.0*a*c
273 if DD >= 0.0:
274 rDD = sqrt(DD)
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp287 DwarfDebug &DD = *AP->getDwarfDebug(); local
289 DD.getDebugLocEntries()[LocList.getValue()].List)
290 DD.emitDebugLocEntry(Streamer, Entry);
/external/chromium_org/third_party/boringssl/src/crypto/perlasm/
H A Dx86masm.pl169 { push(@out,("DD\t").join(',',@_)."\n"); }
185 DD $f
/external/openssl/crypto/perlasm/
H A Dx86masm.pl167 { push(@out,("DD\t").join(',',@_)."\n"); }
183 DD $f
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dsimd-2.asm2 pextrw ebx, mm5, 0 ; 0F C5 DD 00
/external/clang/lib/Parse/
H A DParseTemplate.cpp1292 DeclContext *DD = FunD; local
1293 while (DD && !DD->isTranslationUnit()) {
1294 DeclContextsToReenter.push_back(DD);
1295 DD = DD->getLexicalParent();
/external/chromium_org/third_party/boringssl/win-x86_64/crypto/rc4/
H A Drc4-x86_64.asm723 DD 0a548f3fch
756 DD imagerel $L$SEH_begin_asm_RC4
757 DD imagerel $L$SEH_end_asm_RC4
758 DD imagerel $L$SEH_info_asm_RC4
760 DD imagerel $L$SEH_begin_asm_RC4_set_key
761 DD imagerel $L$SEH_end_asm_RC4_set_key
762 DD imagerel $L$SEH_info_asm_RC4_set_key
769 DD imagerel stream_se_handler
772 DD imagerel key_se_handler
/external/chromium_org/third_party/boringssl/win-x86_64/crypto/aes/
H A Dbsaes-x86_64.asm2586 DD 087h,0,1,0
2641 DD 0a548f3fch
2664 DD 0a548f3fch
2697 DD imagerel $L$cbc_dec_prologue
2698 DD imagerel $L$cbc_dec_epilogue
2699 DD imagerel $L$cbc_dec_info
2701 DD imagerel $L$ctr_enc_prologue
2702 DD imagerel $L$ctr_enc_epilogue
2703 DD imagerel $L$ctr_enc_info
2705 DD imagere
[all...]
/external/chromium_org/third_party/boringssl/win-x86_64/crypto/sha/
H A Dsha1-x86_64.asm2448 DD 05a827999h,05a827999h,05a827999h,05a827999h
2449 DD 05a827999h,05a827999h,05a827999h,05a827999h
2450 DD 06ed9eba1h,06ed9eba1h,06ed9eba1h,06ed9eba1h
2451 DD 06ed9eba1h,06ed9eba1h,06ed9eba1h,06ed9eba1h
2452 DD 08f1bbcdch,08f1bbcdch,08f1bbcdch,08f1bbcdch
2453 DD 08f1bbcdch,08f1bbcdch,08f1bbcdch,08f1bbcdch
2454 DD 0ca62c1d6h,0ca62c1d6h,0ca62c1d6h,0ca62c1d6h
2455 DD 0ca62c1d6h,0ca62c1d6h,0ca62c1d6h,0ca62c1d6h
2456 DD 000010203h,004050607h,008090a0bh,00c0d0e0fh
2457 DD 00001020
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h647 /// \param DD The destructor that will be called.
652 CXXDestructorCall(const CXXDestructorDecl *DD, const Stmt *Trigger, argument
655 : CXXInstanceCall(DD, St, LCtx) {
972 getCXXDestructorCall(const CXXDestructorDecl *DD, const Stmt *Trigger, argument
975 return create<CXXDestructorCall>(DD, Trigger, Target, IsBase, State, LCtx);
/external/clang/tools/libclang/
H A DCursorVisitor.h212 bool VisitDeclaratorDecl(DeclaratorDecl *DD);
/external/qemu/android/
H A Dopengles.c67 #define DD(...) VERBOSE_PRINT(gles,__VA_ARGS__) macro

Completed in 572 milliseconds

12345678