/external/elfutils/tests/ |
D | test-nlist.c | 33 struct nlist nl[6] = in main() local 45 if (nlist (".libs/test-nlist", nl) != 0 in main() 46 && nlist ("./test-nlist", nl) != 0) in main() 52 for (cnt = 0; nl[cnt].n_name != NULL; ++cnt) in main() 62 cnt, nl[cnt].n_name, in main() 63 cnt, nl[cnt].n_value, in main() 64 cnt, nl[cnt].n_scnum, in main() 65 cnt, nl[cnt].n_type, in main() 66 cnt, nl[cnt].n_sclass, in main() 67 cnt, nl[cnt].n_numaux); in main() [all …]
|
/external/elfutils/libelf/ |
D | nlist.c | 48 nlist (const char *filename, struct nlist *nl) in nlist() argument 161 while (nl->n_name != NULL && nl->n_name[0] != '\0') in nlist() 167 search.str = nl->n_name; in nlist() 168 found = nlist_fshash_find (table, nl->n_name, 0, &search); in nlist() 173 nl->n_value = found->sym.st_value; in nlist() 174 nl->n_scnum = found->sym.st_shndx; in nlist() 175 nl->n_type = GELF_ST_TYPE (found->sym.st_info); in nlist() 177 nl->n_sclass = 0; in nlist() 178 nl->n_numaux = 0; in nlist() 183 nl->n_value = 0; in nlist() [all …]
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 135 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0); 173 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) { in nl() function in CppWriter 448 nl(Out); in printAttributes() 450 Out << '{'; in(); nl(Out); in printAttributes() 451 Out << "SmallVector<AttributeWithIndex, 4> Attrs;"; nl(Out); in printAttributes() 452 Out << "AttributeWithIndex PAWI;"; nl(Out); in printAttributes() 491 nl(Out); in printAttributes() 493 nl(Out); in printAttributes() 496 nl(Out); in printAttributes() 497 out(); nl(Out); in printAttributes() [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/ |
D | ASN1Dump.java | 56 String nl = System.getProperty("line.separator"); in _dumpAsString() local 76 buf.append(nl); in _dumpAsString() 88 buf.append(nl); in _dumpAsString() 124 buf.append(nl); in _dumpAsString() 130 buf.append(nl); in _dumpAsString() 144 buf.append(nl); in _dumpAsString() 154 buf.append(nl); in _dumpAsString() 173 buf.append(nl); in _dumpAsString() 183 buf.append(nl); in _dumpAsString() 197 … buf.append(indent + "ObjectIdentifier(" + ((DERObjectIdentifier)obj).getId() + ")" + nl); in _dumpAsString() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
D | FunctionPattern.java | 106 DTMIterator nl = m_functionExpr.asIterator(xctxt, context); in execute() local 109 if (null != nl) in execute() 113 while (DTM.NULL != (n = nl.nextNode())) in execute() 127 nl.detach(); in execute() 150 DTMIterator nl = m_functionExpr.asIterator(xctxt, context); in execute() local 153 if (null != nl) in execute() 157 while (DTM.NULL != (n = nl.nextNode())) in execute() 169 nl.detach(); in execute() 193 DTMIterator nl = m_functionExpr.asIterator(xctxt, context); in execute() local 196 if (null != nl) in execute() [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | X509CRLObject.java | 352 String nl = System.getProperty("line.separator"); in toString() local 355 nl); in toString() 357 .append(nl); in toString() 359 .append(nl); in toString() 361 .append(nl); in toString() 363 .append(nl); in toString() 368 new String(Hex.encode(sig, 0, 20))).append(nl); in toString() 374 new String(Hex.encode(sig, i, 20))).append(nl); in toString() 379 new String(Hex.encode(sig, i, sig.length - i))).append(nl); in toString() 391 buf.append(" Extensions: ").append(nl); in toString() [all …]
|
D | JCERSAPrivateCrtKey.java | 229 String nl = System.getProperty("line.separator"); in toString() local 231 buf.append("RSA Private CRT Key").append(nl); in toString() 232 buf.append(" modulus: ").append(this.getModulus().toString(16)).append(nl); in toString() 233 … buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl); in toString() 234 … buf.append(" private exponent: ").append(this.getPrivateExponent().toString(16)).append(nl); in toString() 235 buf.append(" primeP: ").append(this.getPrimeP().toString(16)).append(nl); in toString() 236 buf.append(" primeQ: ").append(this.getPrimeQ().toString(16)).append(nl); in toString() 237 … buf.append(" primeExponentP: ").append(this.getPrimeExponentP().toString(16)).append(nl); in toString() 238 … buf.append(" primeExponentQ: ").append(this.getPrimeExponentQ().toString(16)).append(nl); in toString() 239 … buf.append(" crtCoefficient: ").append(this.getCrtCoefficient().toString(16)).append(nl); in toString()
|
D | X509CRLEntryObject.java | 233 String nl = System.getProperty("line.separator"); in toString() local 235 buf.append(" userCertificate: ").append(this.getSerialNumber()).append(nl); in toString() 236 buf.append(" revocationDate: ").append(this.getRevocationDate()).append(nl); in toString() 237 buf.append(" certificateIssuer: ").append(this.getCertificateIssuer()).append(nl); in toString() 246 buf.append(" crlEntryExtensions:").append(nl); in toString() 261 … buf.append(new CRLReason(DEREnumerated.getInstance(dIn.readObject()))).append(nl); in toString() 265 …append("Certificate issuer: ").append(new GeneralNames((ASN1Sequence)dIn.readObject())).append(nl); in toString() 270 … buf.append(" value = ").append(ASN1Dump.dumpAsString(dIn.readObject())).append(nl); in toString() 276 buf.append(" value = ").append("*****").append(nl); in toString() 281 buf.append(nl); in toString()
|
D | X509CertificateObject.java | 622 String nl = System.getProperty("line.separator"); in toString() local 624 buf.append(" [0] Version: ").append(this.getVersion()).append(nl); in toString() 625 buf.append(" SerialNumber: ").append(this.getSerialNumber()).append(nl); in toString() 626 buf.append(" IssuerDN: ").append(this.getIssuerDN()).append(nl); in toString() 627 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl); in toString() 628 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl); in toString() 629 buf.append(" SubjectDN: ").append(this.getSubjectDN()).append(nl); in toString() 630 buf.append(" Public Key: ").append(this.getPublicKey()).append(nl); in toString() 631 buf.append(" Signature Algorithm: ").append(this.getSigAlgName()).append(nl); in toString() 635 buf.append(" Signature: ").append(new String(Hex.encode(sig, 0, 20))).append(nl); in toString() [all …]
|
D | JCERSAPublicKey.java | 126 String nl = System.getProperty("line.separator"); in toString() local 128 buf.append("RSA Public Key").append(nl); in toString() 129 buf.append(" modulus: ").append(this.getModulus().toString(16)).append(nl); in toString() 130 … buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl); in toString()
|
/external/blktrace/btt/ |
D | plat.c | 25 long nl; member 38 pp->nl = 0; in plat_alloc() 62 pp->first_ts + (delta / 2), pp->tl / pp->nl); in plat_free() 77 pp->nl = 1; in plat_x2c() 83 pp->first_ts + (delta / 2), pp->tl / pp->nl); in plat_x2c() 86 pp->nl = 1; in plat_x2c() 90 pp->nl += 1; in plat_x2c()
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | KeyManager.java | 62 XNodeSet nl = null; in getNodeSetDTMByKey() local 84 nl = kt.getNodeSetDTMByKey(name, ref); in getNodeSetDTMByKey() 86 if (nl != null) in getNodeSetDTMByKey() 96 if ((null == nl) &&!foundDoc /* && m_needToBuildKeysTable */) in getNodeSetDTMByKey() 108 nl = kt.getNodeSetDTMByKey(name, ref); in getNodeSetDTMByKey() 113 return nl; in getNodeSetDTMByKey()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypedBlock.java | 98 public void setStackMap(int st, TypeData[] stack, int nl, TypeData[] locals) in setStackMap() argument 103 numLocals = nl; in setStackMap() 112 int nl = localsTypes.length; in resetNumLocals() local 113 while (nl > 0 && localsTypes[nl - 1] == TypeTag.TOP) { in resetNumLocals() 114 if (nl > 1) { in resetNumLocals() 115 TypeData td = localsTypes[nl - 2]; in resetNumLocals() 120 --nl; in resetNumLocals() 123 numLocals = nl; in resetNumLocals()
|
/external/chromium/net/base/ |
D | ssl_false_start_blacklist.txt | 176 app.audit-navigator.nl 178 applicaties.tln.nl 235 autodiscover.nimbus.nl 238 autoradiostore.nl 243 awvn.nl 253 babyfoonstore.nl 286 beamercenter.nl 345 blurayspelershop.nl 349 bodycareshop.nl 356 boormachinestore.nl [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | GRState.cpp | 387 void GRState::print(llvm::raw_ostream& Out, CFG &C, const char* nl, in print() argument 391 Mgr.getStoreManager().print(getStore(), Out, nl, sep); in print() 402 Out << nl << nl << "Sub-Expressions:" << nl; in print() 405 else { Out << nl; } in print() 421 Out << nl << nl << "Block-level Expressions:" << nl; in print() 424 else { Out << nl; } in print() 440 Out << nl << nl << "Load/store locations:" << nl; in print() 443 else { Out << nl; } in print() 453 Mgr.getConstraintManager().print(this, Out, nl, sep); in print() 458 (*I)->Print(Out, this, nl, sep); in print()
|
D | ExplodedGraph.cpp | 64 NodeList &nl = *getNodeList(recentlyAllocatedNodes); in reclaimRecentlyAllocatedNodes() local 77 for (NodeList::iterator i = nl.begin(), e = nl.end() ; i != e; ++i) { in reclaimRecentlyAllocatedNodes() 130 nl.clear(); in reclaimRecentlyAllocatedNodes() 229 NodeList *nl = getNodeList(freeNodes); in getNode() local 230 V = nl->back(); in getNode() 231 nl->pop_back(); in getNode()
|
D | BasicConstraintManager.cpp | 96 const char* nl, const char *sep); 305 const char* nl, const char *sep) { in print() argument 311 Out << nl << sep << "'==' constraints:"; in print() 313 Out << nl << " $" << I.getKey() << " : " << *I.getData(); in print() 321 Out << nl << sep << "'!=' constraints:"; in print() 324 Out << nl << " $" << I.getKey() << " : "; in print()
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | FuncCount.java | 58 DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode()); in execute() local 59 int i = nl.getLength(); in execute() 60 nl.detach(); in execute()
|
/external/openssl/crypto/bn/ |
D | bn_mont.c | 181 int al,nl,max,i,x,ri; in BN_from_montgomery_word() local 188 nl=n->top; in BN_from_montgomery_word() 189 if ((al == 0) || (nl == 0)) { ret->top=0; return(1); } in BN_from_montgomery_word() 191 max=(nl+al+1); /* allow for overflow (no?) XXX */ in BN_from_montgomery_word() 197 nrp= &(r->d[nl]); in BN_from_montgomery_word() 211 fprintf(stderr,"word BN_from_montgomery_word %d * %d\n",nl,nl); in BN_from_montgomery_word() 213 for (i=0; i<nl; i++) in BN_from_montgomery_word() 226 v=bn_mul_add_words(rp,np,nl,(BN_ULONG) t1); in BN_from_montgomery_word() 229 v=bn_mul_add_words(rp,np,nl,(rp[0]*n0)&BN_MASK2); in BN_from_montgomery_word()
|
/external/openssl/crypto/asn1/ |
D | asn1_par.c | 118 int nl,hl,j,r; in asn1_parse2() local 204 nl=0; in asn1_parse2() 299 if (!nl) in asn1_parse2() 310 nl=1; in asn1_parse2() 385 if (!nl) in asn1_parse2() 394 nl=1; in asn1_parse2() 397 if (!nl) in asn1_parse2()
|
/external/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/ |
D | PemWriter.java | 30 String nl = System.getProperty("line.separator"); in PemWriter() local 31 if (nl != null) in PemWriter() 33 nlLength = nl.length(); in PemWriter()
|
/external/icu4c/data/rbnf/ |
D | nl.txt | 6 // * Source File:<path>/common/rbnf/nl.xml 10 * ICU <specials> source: <path>/xml/rbnf/nl.xml 12 nl{
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | FuncKey.java | 118 XNodeSet nl = in execute() local 122 nl.setRoot(xctxt.getCurrentNode(), xctxt); in execute() 126 upi.addIterator(nl); in execute()
|
/external/libpng/ |
D | mkinstalldirs | 14 nl=' 16 IFS=" "" $nl"
|
/external/chromium/sdch/open-vcdiff/ |
D | mkinstalldirs | 14 nl=' 16 IFS=" "" $nl"
|