Home
last modified time | relevance | path

Searched refs:D (Results 1 – 25 of 2248) sorted by relevance

12345678910>>...90

/external/clang/tools/libclang/
DIndexDecl.cpp26 void handleDeclarator(DeclaratorDecl *D, const NamedDecl *Parent = 0) { in handleDeclarator() argument
27 if (!Parent) Parent = D; in handleDeclarator()
30 IndexCtx.indexTypeSourceInfo(D->getTypeSourceInfo(), Parent); in handleDeclarator()
31 IndexCtx.indexNestedNameSpecifierLoc(D->getQualifierLoc(), Parent); in handleDeclarator()
33 if (ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(D)) { in handleDeclarator()
35 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { in handleDeclarator()
44 void handleObjCMethod(ObjCMethodDecl *D) { in handleObjCMethod() argument
45 IndexCtx.handleObjCMethod(D); in handleObjCMethod()
46 if (D->isImplicit()) in handleObjCMethod()
49 IndexCtx.indexTypeSourceInfo(D->getResultTypeSourceInfo(), D); in handleObjCMethod()
[all …]
DIndexingContext.cpp64 AttrListInfo::AttrListInfo(const Decl *D, IndexingContext &IdxCtx) in AttrListInfo() argument
67 if (!D->hasAttrs()) in AttrListInfo()
70 for (AttrVec::const_iterator AttrI = D->attr_begin(), AttrE = D->attr_end(); in AttrListInfo()
73 CXCursor C = MakeCXCursor(A, const_cast<Decl *>(D), IdxCtx.CXTU); in AttrListInfo()
117 AttrListInfo::create(const Decl *D, IndexingContext &IdxCtx) { in create() argument
120 return new (attrs) AttrListInfo(D, IdxCtx); in create()
123 IndexingContext::CXXBasesListInfo::CXXBasesListInfo(const CXXRecordDecl *D, in CXXBasesListInfo() argument
127 I = D->bases_begin(), E = D->bases_end(); I != E; ++I) { in CXXBasesListInfo()
250 bool IndexingContext::handleDecl(const NamedDecl *D, in handleDecl() argument
254 if (!CB.indexDeclaration || !D) in handleDecl()
[all …]
DCIndexUSRs.cpp70 void VisitDeclContext(DeclContext *D);
71 void VisitFieldDecl(FieldDecl *D);
72 void VisitFunctionDecl(FunctionDecl *D);
73 void VisitNamedDecl(NamedDecl *D);
74 void VisitNamespaceDecl(NamespaceDecl *D);
75 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
76 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
77 void VisitClassTemplateDecl(ClassTemplateDecl *D);
80 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
81 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
[all …]
/external/zlib/as400/
Dzlib.inc25 D ZLIB_VERSION C '1.2.6'
26 D ZLIB_VERNUM C X'1260'
27 D ZLIB_VER_MAJOR C 1
28 D ZLIB_VER_MINOR C 2
29 D ZLIB_VER_REVISION...
30 D C 6
31 D ZLIB_VER_SUBREVISION...
32 D C 0
36 D Z_NO_FLUSH C 0
37 D Z_PARTIAL_FLUSH...
[all …]
/external/clang/lib/Serialization/
DASTWriterDecl.cpp49 void Visit(Decl *D);
51 void VisitDecl(Decl *D);
52 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
53 void VisitNamedDecl(NamedDecl *D);
55 void VisitNamespaceDecl(NamespaceDecl *D);
56 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
57 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
58 void VisitTypeDecl(TypeDecl *D);
59 void VisitTypedefNameDecl(TypedefNameDecl *D);
60 void VisitTypedefDecl(TypedefDecl *D);
[all …]
DASTReaderDecl.cpp192 FindExistingResult findExisting(NamedDecl *D);
203 static void attachPreviousDecl(Decl *D, Decl *previous);
204 static void attachLatestDecl(Decl *D, Decl *latest);
206 void Visit(Decl *D);
208 void UpdateDecl(Decl *D, ModuleFile &ModuleFile,
216 void VisitDecl(Decl *D);
220 void VisitNamespaceDecl(NamespaceDecl *D);
221 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
222 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
227 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
[all …]
/external/zlib/old/as400/
Dzlib.inc25 D ZLIB_VERSION C '1.2.3.9'
26 D ZLIB_VERNUM C X'1239'
30 D Z_NO_FLUSH C 0
31 D Z_SYNC_FLUSH C 2
32 D Z_FULL_FLUSH C 3
33 D Z_FINISH C 4
34 D Z_BLOCK C 5
36 D Z_OK C 0
37 D Z_STREAM_END C 1
38 D Z_NEED_DICT C 2
[all …]
/external/icu4c/data/unidata/
DFractionalUCA.txt32 001D; [,,]
48 008D; [,,]
64 009D; [,,]
83 059D; [,,]
165 180D; [,,]
203 200D; [,,]
209 202D; [,,]
219 206D; [,,]
657 0301; [, 8D, 05]
658 0341; [, 8D, 05]
[all …]
/external/clang/lib/AST/
DDumpXML.cpp64 static_cast<Impl*>(this)->NAME(static_cast<CLASS*>(D))
66 void dispatch(Decl *D) { in dispatch()
67 switch (D->getKind()) { in dispatch()
81 void dispatch##DERIVED##DeclAttrs(DERIVED##Decl *D) { \
85 void visit##DERIVED##DeclAttrs(DERIVED##Decl *D) {} \
86 void dispatch##DERIVED##DeclChildren(DERIVED##Decl *D) { \
90 void visit##DERIVED##DeclChildren(DERIVED##Decl *D) {} \
91 void dispatch##DERIVED##DeclAsContext(DERIVED##Decl *D) { \
95 void visit##DERIVED##DeclAsContext(DERIVED##Decl *D) {}
98 void dispatchDeclAttrs(Decl *D) { in dispatchDeclAttrs()
[all …]
DDeclPrinter.cpp50 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
51 void VisitTypedefDecl(TypedefDecl *D);
52 void VisitTypeAliasDecl(TypeAliasDecl *D);
53 void VisitEnumDecl(EnumDecl *D);
54 void VisitRecordDecl(RecordDecl *D);
55 void VisitEnumConstantDecl(EnumConstantDecl *D);
56 void VisitFunctionDecl(FunctionDecl *D);
57 void VisitFieldDecl(FieldDecl *D);
58 void VisitVarDecl(VarDecl *D);
59 void VisitLabelDecl(LabelDecl *D);
[all …]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
DSHA1.java254 int D = H3; in perform() local
350 E += ((A << 5) | (A >>> 27)) + ((B & C) | ((~B) & D)) + w[0] + 0x5A827999; in perform()
353 D += ((E << 5) | (E >>> 27)) + ((A & B) | ((~A) & C)) + w[1] + 0x5A827999; in perform()
356 C += ((D << 5) | (D >>> 27)) + ((E & A) | ((~E) & B)) + w[2] + 0x5A827999; in perform()
359 B += ((C << 5) | (C >>> 27)) + ((D & E) | ((~D) & A)) + w[3] + 0x5A827999; in perform()
360 D = ((D << 30) | (D >>> 2)); in perform()
362 A += ((B << 5) | (B >>> 27)) + ((C & D) | ((~C) & E)) + w[4] + 0x5A827999; in perform()
365 E += ((A << 5) | (A >>> 27)) + ((B & C) | ((~B) & D)) + w[5] + 0x5A827999; in perform()
368 D += ((E << 5) | (E >>> 27)) + ((A & B) | ((~A) & C)) + w[6] + 0x5A827999; in perform()
371 C += ((D << 5) | (D >>> 27)) + ((E & A) | ((~E) & B)) + w[7] + 0x5A827999; in perform()
[all …]
/external/openssl/crypto/ripemd/
Drmd_dgst.c79 c->D=RIPEMD160_D; in fips_md_init()
91 register unsigned MD32_REG_T A,B,C,D,E; in ripemd160_block_data_order() local
106 A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E; in ripemd160_block_data_order()
109 RIP1(A,B,C,D,E,WL00,SL00); HOST_c2l(data,l); X( 2)=l; in ripemd160_block_data_order()
110 RIP1(E,A,B,C,D,WL01,SL01); HOST_c2l(data,l); X( 3)=l; in ripemd160_block_data_order()
111 RIP1(D,E,A,B,C,WL02,SL02); HOST_c2l(data,l); X( 4)=l; in ripemd160_block_data_order()
112 RIP1(C,D,E,A,B,WL03,SL03); HOST_c2l(data,l); X( 5)=l; in ripemd160_block_data_order()
113 RIP1(B,C,D,E,A,WL04,SL04); HOST_c2l(data,l); X( 6)=l; in ripemd160_block_data_order()
114 RIP1(A,B,C,D,E,WL05,SL05); HOST_c2l(data,l); X( 7)=l; in ripemd160_block_data_order()
115 RIP1(E,A,B,C,D,WL06,SL06); HOST_c2l(data,l); X( 8)=l; in ripemd160_block_data_order()
[all …]
/external/openssl/crypto/md5/
Dmd5_dgst.c80 c->D=INIT_DATA_D; in fips_md_init()
91 register unsigned MD32_REG_T A,B,C,D,l; in md5_block_data_order() local
105 D=c->D; in md5_block_data_order()
111 R0(A,B,C,D,X( 0), 7,0xd76aa478L); HOST_c2l(data,l); X( 2)=l; in md5_block_data_order()
112 R0(D,A,B,C,X( 1),12,0xe8c7b756L); HOST_c2l(data,l); X( 3)=l; in md5_block_data_order()
113 R0(C,D,A,B,X( 2),17,0x242070dbL); HOST_c2l(data,l); X( 4)=l; in md5_block_data_order()
114 R0(B,C,D,A,X( 3),22,0xc1bdceeeL); HOST_c2l(data,l); X( 5)=l; in md5_block_data_order()
115 R0(A,B,C,D,X( 4), 7,0xf57c0fafL); HOST_c2l(data,l); X( 6)=l; in md5_block_data_order()
116 R0(D,A,B,C,X( 5),12,0x4787c62aL); HOST_c2l(data,l); X( 7)=l; in md5_block_data_order()
117 R0(C,D,A,B,X( 6),17,0xa8304613L); HOST_c2l(data,l); X( 8)=l; in md5_block_data_order()
[all …]
/external/llvm/test/Transforms/BBVectorize/
Dfunc-alias.ll38 define i1 @"prtmax__<bb 3>_<bb 34>"(%struct.__st_parameter_dt* %memtmp3, i32 %D.4627_188.reload) no…
70 …%D.75807_289 = load i8** getelementptr inbounds (%"struct.array4_real(kind=4)"* @__main1_MOD_rmxva…
72 %D.75760_291 = sext i32 %j.8758_290 to i64
74 %D.75620_293 = sext i32 %iave.8736_292 to i64
75 …%D.75808_294 = load i64* getelementptr inbounds (%"struct.array4_real(kind=4)"* @__main1_MOD_rmxva…
76 %D.75809_295 = mul nsw i64 %D.75620_293, %D.75808_294
78 %D.75635_297 = sext i32 %igrp.8737_296 to i64
79 …%D.75810_298 = load i64* getelementptr inbounds (%"struct.array4_real(kind=4)"* @__main1_MOD_rmxva…
80 %D.75811_299 = mul nsw i64 %D.75635_297, %D.75810_298
81 %D.75812_300 = add nsw i64 %D.75809_295, %D.75811_299
[all …]
/external/openssl/crypto/md4/
Dmd4_dgst.c80 c->D=INIT_DATA_D; in fips_md_init()
91 register unsigned MD32_REG_T A,B,C,D,l; in md4_block_data_order() local
105 D=c->D; in md4_block_data_order()
111 R0(A,B,C,D,X( 0), 3,0); HOST_c2l(data,l); X( 2)=l; in md4_block_data_order()
112 R0(D,A,B,C,X( 1), 7,0); HOST_c2l(data,l); X( 3)=l; in md4_block_data_order()
113 R0(C,D,A,B,X( 2),11,0); HOST_c2l(data,l); X( 4)=l; in md4_block_data_order()
114 R0(B,C,D,A,X( 3),19,0); HOST_c2l(data,l); X( 5)=l; in md4_block_data_order()
115 R0(A,B,C,D,X( 4), 3,0); HOST_c2l(data,l); X( 6)=l; in md4_block_data_order()
116 R0(D,A,B,C,X( 5), 7,0); HOST_c2l(data,l); X( 7)=l; in md4_block_data_order()
117 R0(C,D,A,B,X( 6),11,0); HOST_c2l(data,l); X( 8)=l; in md4_block_data_order()
[all …]
/external/llvm/
DCREDITS.TXT8 (W), PGP key ID and fingerprint (P), description (D), and snail-mail address
15 D: The Sparc64 backend, provider of much wisdom, and motivator for LLVM
19 D: LCSSA pass and related LoopUnswitch work
20 D: GVNPRE pass, TargetData refactoring, random improvements
23 D: MingW Win32 API portability layer
27 D: PowerPC backend developer
28 D: Target-independent code generator and analysis improvements
32 D: ET-Forest implementation.
33 D: Sparse bitmap
37 D: General bug fixing/fit & finish, mostly in Clang
[all …]
/external/openssl/crypto/ripemd/asm/
Drmd-586.pl17 $D="ebx";
73 local(%n)=($A,$E,$B,$A,$C,$B,$D,$C,$E,$D);
340 &mov($D, &DWP( $z*4,$tmp1,"",0));
342 &mov(&swtmp($z), $D);
346 &mov($D, &DWP(12,$tmp2,"",0));
349 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
350 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
351 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
352 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
353 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
[all …]
/external/chromium/net/http/
Dmd4.cc115 Uint32 A, B, C, D, X[16]; in md4step() local
122 D = state[3]; in md4step()
124 RD1(A,B,C,D, 0,3); RD1(D,A,B,C, 1,7); RD1(C,D,A,B, 2,11); RD1(B,C,D,A, 3,19); in md4step()
125 RD1(A,B,C,D, 4,3); RD1(D,A,B,C, 5,7); RD1(C,D,A,B, 6,11); RD1(B,C,D,A, 7,19); in md4step()
126 RD1(A,B,C,D, 8,3); RD1(D,A,B,C, 9,7); RD1(C,D,A,B,10,11); RD1(B,C,D,A,11,19); in md4step()
127 RD1(A,B,C,D,12,3); RD1(D,A,B,C,13,7); RD1(C,D,A,B,14,11); RD1(B,C,D,A,15,19); in md4step()
129 RD2(A,B,C,D, 0,3); RD2(D,A,B,C, 4,5); RD2(C,D,A,B, 8, 9); RD2(B,C,D,A,12,13); in md4step()
130 RD2(A,B,C,D, 1,3); RD2(D,A,B,C, 5,5); RD2(C,D,A,B, 9, 9); RD2(B,C,D,A,13,13); in md4step()
131 RD2(A,B,C,D, 2,3); RD2(D,A,B,C, 6,5); RD2(C,D,A,B,10, 9); RD2(B,C,D,A,14,13); in md4step()
132 RD2(A,B,C,D, 3,3); RD2(D,A,B,C, 7,5); RD2(C,D,A,B,11, 9); RD2(B,C,D,A,15,13); in md4step()
[all …]
/external/elfutils/lib/
Dsha1.c60 ctx->D = 0x10325476;
80 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
231 sha1_uint32 D = ctx->D; local
248 sha1_uint32 D_save = D;
268 OP (0, A, B, C, D, E);
269 OP (1, E, A, B, C, D);
270 OP (2, D, E, A, B, C);
271 OP (3, C, D, E, A, B);
272 OP (4, B, C, D, E, A);
273 OP (5, A, B, C, D, E);
[all …]
Dmd5.c61 ctx->D = 0x10325476;
80 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
303 md5_uint32 D = ctx->D; local
320 md5_uint32 D_save = D;
350 OP (A, B, C, D, 7, 0xd76aa478);
351 OP (D, A, B, C, 12, 0xe8c7b756);
352 OP (C, D, A, B, 17, 0x242070db);
353 OP (B, C, D, A, 22, 0xc1bdceee);
354 OP (A, B, C, D, 7, 0xf57c0faf);
355 OP (D, A, B, C, 12, 0x4787c62a);
[all …]
/external/valgrind/main/VEX/orig_x86/
Dmanyfp.orig16 . 55 89 E5 56 53 E8 00 00 00 00 5B 81 C3 DA BF 01 00 8D 83 F0 FF FF FF 8D 70 FC 8B 40 FC 83 F8 FF 7…
49 . 5B 89 D0 5D C3
55 . 55 89 E5 5D C3
85 . 8B 0E 8B 40 04 01 C8 8B 4D EC 89 0C 24 8B 4D E8 89 4C 24 04 8B 4D 08 89 4C 24 08 FF D0
88 . 55 89 E5 83 EC 18 89 5D F4 31 D2 E8 BD FF FF FF
90 . 27 4201575D 4
94 . 81 C3 30 4B 11 00 89 75 F8 8B 83 70 01 00 00 8B 75 08 89 7D FC 8B 7D 0C 85 C0 74 0C
103 . 89 B3 00 3F 00 00 8B 4D 10 8B 83 14 02 00 00 89 BB 04 3F 00 00 89 08 89 34 24 89 7C 24 04 89 4C 2…
106 . 55 89 E5 83 EC 18 89 7D FC 8B 7D 0C 89 5D F4 E8 B9 B8 F3 FF
115 . 89 34 24 C7 44 24 04 2F 00 00 00 E8 3D B5 F3 FF
[all …]
Dfpu_mmx_sse.orig6 . 55 89 E5 57 56 53 83 EC 54 E8 9D FC 00 00
12 … D0 8B 93 00 00 00 00 8D 83 50 FF FF FF 29 D0 89 83 E4 F9 FF FF 01 D0 89 83 EC F9 FF FF 8D 83 94 F…
27 . 90 8D 74 26 00 8B 4D CC 8B 11 85 D2 74 57
51 . 01 50 04 8D B4 26 00 00 00 00 8D BC 27 00 00 00 00 8B 83 E4 F9 FF FF 85 C0 75 0E
54 . C7 45 DC 00 00 00 00 8B 4D C8 8B 83 40 FA FF FF C7 45 E4 00 00 00 00 83 C1 50 85 C0 C7 45 D8 00 0…
60 . 8B 83 04 FA FF FF 8B 40 04 01 45 D8 8B 55 D4 8B 75 D8 8D 04 16 89 45 C4 8B 45 C8 8B 78 50 8B 41 3…
66 . 89 C8 8D 0C C2 39 CA 73 17
69 . 90 8D B4 26 00 00 00 00 8B 32 89 F8 83 C2 08 01 F0 01 38 39 CA 72 F1
75 . 3B 4D C4 73 4D
78 . 8D B6 00 00 00 00 8D BF 00 00 00 00 8B 51 04 8B 75 C0 89 D0 C1 E8 08 C1 E0 04 01 F0 8B 31 01 FE 8…
[all …]
/external/clang/lib/Sema/
DSemaTemplateInstantiateDecl.cpp111 TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) { in VisitTranslationUnitDecl() argument
116 TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) { in VisitLabelDecl() argument
117 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(), in VisitLabelDecl()
118 D->getIdentifier()); in VisitLabelDecl()
124 TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) { in VisitNamespaceDecl() argument
129 TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) { in VisitNamespaceAliasDecl() argument
132 D->getNamespaceLoc(), in VisitNamespaceAliasDecl()
133 D->getAliasLoc(), in VisitNamespaceAliasDecl()
134 D->getIdentifier(), in VisitNamespaceAliasDecl()
135 D->getQualifierLoc(), in VisitNamespaceAliasDecl()
[all …]
/external/openssl/crypto/md5/asm/
Dmd5-586.pl19 $D="edx";
25 %Ltmp1=("R0",&Np($C), "R1",&Np($C), "R2",&Np($C), "R3",&Np($D));
39 local(%n)=($A,$D,$B,$A,$C,$B,$D,$C);
195 &mov($D, &DWP(12,$tmp1,"",0));
201 &R0(-2,$A,$B,$C,$D,$X, 0, 7,0xd76aa478);
202 &R0( 0,$D,$A,$B,$C,$X, 1,12,0xe8c7b756);
203 &R0( 0,$C,$D,$A,$B,$X, 2,17,0x242070db);
204 &R0( 0,$B,$C,$D,$A,$X, 3,22,0xc1bdceee);
205 &R0( 0,$A,$B,$C,$D,$X, 4, 7,0xf57c0faf);
206 &R0( 0,$D,$A,$B,$C,$X, 5,12,0x4787c62a);
[all …]
/external/ppp/pppd/
Dmd4.c78 #define ff(A,B,C,D,i,s) A = rot((A + f(B,C,D) + X[i]),s) argument
79 #define gg(A,B,C,D,i,s) A = rot((A + g(B,C,D) + X[i] + C2),s) argument
80 #define hh(A,B,C,D,i,s) A = rot((A + h(B,C,D) + X[i] + C3),s) argument
127 register unsigned int tmp, A, B, C, D; local
139 D = MDp->buffer[3];
141 ff(A , B , C , D , 0 , fs1); /* Round 1 */
142 ff(D , A , B , C , 1 , fs2);
143 ff(C , D , A , B , 2 , fs3);
144 ff(B , C , D , A , 3 , fs4);
145 ff(A , B , C , D , 4 , fs1);
[all …]

12345678910>>...90