/external/libnl/src/ |
D | Makefile.am | 11 nl-addr-add nl-addr-delete nl-addr-list \ 12 nl-link-list nl-link-set nl-link-stats \ 13 nl-link-ifindex2name nl-link-name2ifindex \ 14 nl-neigh-add nl-neigh-delete nl-neigh-list \ 15 nl-qdisc-delete nl-qdisc-list \ 16 nl-rule-list \ 17 nl-neightbl-list \ 18 nl-monitor \ 19 nl-tctree-list \ 20 nl-route-add nl-route-delete nl-route-get nl-route-list \ [all …]
|
D | .gitignore | 5 nl-addr-add 6 nl-addr-delete 7 nl-addr-list 8 nl-fib-lookup 9 nl-link-list 10 nl-link-ifindex2name 11 nl-link-name2ifindex 12 nl-link-set 13 nl-link-stats 14 nl-list-caches [all …]
|
/external/elfutils/src/tests/ |
D | test-nlist.c | 37 struct nlist nl[6] = in main() local 49 if (nlist (".libs/test-nlist", nl) != 0 in main() 50 && nlist ("./test-nlist", nl) != 0) in main() 56 for (cnt = 0; nl[cnt].n_name != NULL; ++cnt) in main() 66 cnt, nl[cnt].n_name, in main() 67 cnt, nl[cnt].n_value, in main() 68 cnt, nl[cnt].n_scnum, in main() 69 cnt, nl[cnt].n_type, in main() 70 cnt, nl[cnt].n_sclass, in main() 71 cnt, nl[cnt].n_numaux); in main() [all …]
|
D | run-addr2line-test.sh | 21 tempfiles good.out stdin.nl stdin.nl.out stdin.nonl stdin.nonl.out foo.out 46 cat > stdin.nl <<\EOF 58 cat stdin.nl | testrun ${abs_top_builddir}/src/addr2line -f -e testfile > stdin.nl.out || exit 1 59 cmp good.out stdin.nl.out || exit 1 71 echo -n "foo" | testrun ${abs_top_builddir}/src/addr2line -f -e testfile > stdin.nl.out || exit 1
|
/external/elfutils/src/libelf/ |
D | nlist.c | 60 nlist (const char *filename, struct nlist *nl) in nlist() argument 173 while (nl->n_name != NULL && nl->n_name[0] != '\0') in nlist() 179 search.str = nl->n_name; in nlist() 180 found = nlist_fshash_find (table, nl->n_name, 0, &search); in nlist() 185 nl->n_value = found->sym.st_value; in nlist() 186 nl->n_scnum = found->sym.st_shndx; in nlist() 187 nl->n_type = GELF_ST_TYPE (found->sym.st_info); in nlist() 189 nl->n_sclass = 0; in nlist() 190 nl->n_numaux = 0; in nlist() 195 nl->n_value = 0; in nlist() [all …]
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 130 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0); 170 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) { in nl() function in CppWriter 480 nl(Out); in printAttributes() 482 Out << '{'; in(); nl(Out); in printAttributes() 483 Out << "SmallVector<AttributeSet, 4> Attrs;"; nl(Out); in printAttributes() 484 Out << "AttributeSet PAS;"; in(); nl(Out); in printAttributes() 488 Out << "{"; in(); nl(Out); in printAttributes() 489 Out << "AttrBuilder B;"; nl(Out); in printAttributes() 493 Out << "B.addAttribute(Attribute::" #X ");"; nl(Out); \ in printAttributes() 529 nl(Out); in printAttributes() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/ |
D | ASN1Dump.java | 53 String nl = System.getProperty("line.separator"); in _dumpAsString() local 73 buf.append(nl); in _dumpAsString() 83 buf.append(nl); in _dumpAsString() 119 buf.append(nl); in _dumpAsString() 125 buf.append(nl); in _dumpAsString() 148 buf.append(nl); in _dumpAsString() 158 buf.append(nl); in _dumpAsString() 188 buf.append(nl); in _dumpAsString() 193 … buf.append(indent + "ObjectIdentifier(" + ((ASN1ObjectIdentifier)obj).getId() + ")" + nl); in _dumpAsString() 197 buf.append(indent + "Boolean(" + ((ASN1Boolean)obj).isTrue() + ")" + nl); in _dumpAsString() [all …]
|
/external/boringssl/src/crypto/bn/ |
D | montgomery.c | 338 int nl, max, i; 341 nl = n->top; 342 if (nl == 0) { 347 max = (2 * nl); /* carry is stored separately */ 364 for (carry = 0, i = 0; i < nl; i++, rp++) { 365 v = bn_mul_add_words(rp, np, nl, (rp[0] * n0) & BN_MASK2); 366 v = (v + carry + rp[nl]) & BN_MASK2; 367 carry |= (v != rp[nl]); 368 carry &= (v <= rp[nl]); 369 rp[nl] = v; [all …]
|
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/ |
D | options.h | 60 DRI_CONF_DESC(nl,"Debuggen") \ 69 DRI_CONF_DESC(nl,"3D versnelling uitschakelen") \ 79 DRI_CONF_DESC(nl,"Laat prestatie boxjes zien") \ 91 DRI_CONF_DESC(nl,"Beeldkwaliteit") \ 124 DRI_CONF_DESC_BEGIN(nl,"Textuurkleurendiepte") \ 149 DRI_CONF_DESC(nl,"Initïele maximum waarde voor anisotrophische textuur filtering") \ 159 DRI_CONF_DESC(nl,"Verbied negatief niveau detailonderscheid (LOD) van texturen") \ 169 …DRI_CONF_DESC(nl,"Schakel S3TC textuurcompressie in, zelfs als softwareondersteuning niet aanwezig… 190 DRI_CONF_DESC_BEGIN(nl,"Initïele kleurreductie methode") \ 220 DRI_CONF_DESC_BEGIN(nl,"Kleurafrondingmethode") \ [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/linux-tools-perf/src/tools/perf/config/ |
D | utilities.mak | 8 # nl-escape 10 # Usage: escape = $(call nl-escape[,escape]) 16 nl-escape = $(if $(1),$(1),m822df3020w6a44id34bt574ctac44eb9f4n) 18 # escape-nl 20 # Usage: escaped-text = $(call escape-nl,text[,escape]) 30 # $(call unescape-nl...) 32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1)) 34 # unescape-nl 36 # Usage: text = $(call unescape-nl,escaped-text[,escape]) 38 # See escape-nl. [all …]
|
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
D | BCRSAPrivateCrtKey.java | 227 String nl = System.getProperty("line.separator"); in toString() local 229 buf.append("RSA Private CRT Key").append(nl); in toString() 230 buf.append(" modulus: ").append(this.getModulus().toString(16)).append(nl); in toString() 231 … buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl); in toString() 232 … buf.append(" private exponent: ").append(this.getPrivateExponent().toString(16)).append(nl); in toString() 233 buf.append(" primeP: ").append(this.getPrimeP().toString(16)).append(nl); in toString() 234 buf.append(" primeQ: ").append(this.getPrimeQ().toString(16)).append(nl); in toString() 235 … buf.append(" primeExponentP: ").append(this.getPrimeExponentP().toString(16)).append(nl); in toString() 236 … buf.append(" primeExponentQ: ").append(this.getPrimeExponentQ().toString(16)).append(nl); in toString() 237 … buf.append(" crtCoefficient: ").append(this.getCrtCoefficient().toString(16)).append(nl); in toString()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | JCERSAPrivateCrtKey.java | 227 String nl = System.getProperty("line.separator"); in toString() local 229 buf.append("RSA Private CRT Key").append(nl); in toString() 230 buf.append(" modulus: ").append(this.getModulus().toString(16)).append(nl); in toString() 231 … buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl); in toString() 232 … buf.append(" private exponent: ").append(this.getPrivateExponent().toString(16)).append(nl); in toString() 233 buf.append(" primeP: ").append(this.getPrimeP().toString(16)).append(nl); in toString() 234 buf.append(" primeQ: ").append(this.getPrimeQ().toString(16)).append(nl); in toString() 235 … buf.append(" primeExponentP: ").append(this.getPrimeExponentP().toString(16)).append(nl); in toString() 236 … buf.append(" primeExponentQ: ").append(this.getPrimeExponentQ().toString(16)).append(nl); in toString() 237 … buf.append(" crtCoefficient: ").append(this.getCrtCoefficient().toString(16)).append(nl); in toString()
|
D | X509CRLObject.java | 391 String nl = System.getProperty("line.separator"); in toString() local 394 nl); in toString() 396 .append(nl); in toString() 398 .append(nl); in toString() 400 .append(nl); in toString() 402 .append(nl); in toString() 407 new String(Hex.encode(sig, 0, 20))).append(nl); in toString() 413 new String(Hex.encode(sig, i, 20))).append(nl); in toString() 418 new String(Hex.encode(sig, i, sig.length - i))).append(nl); in toString() 430 buf.append(" Extensions: ").append(nl); in toString() [all …]
|
D | X509CRLEntryObject.java | 262 String nl = System.getProperty("line.separator"); in toString() local 264 buf.append(" userCertificate: ").append(this.getSerialNumber()).append(nl); in toString() 265 buf.append(" revocationDate: ").append(this.getRevocationDate()).append(nl); in toString() 266 buf.append(" certificateIssuer: ").append(this.getCertificateIssuer()).append(nl); in toString() 275 buf.append(" crlEntryExtensions:").append(nl); in toString() 290 … buf.append(CRLReason.getInstance(ASN1Enumerated.getInstance(dIn.readObject()))).append(nl); in toString() 294 … buf.append("Certificate issuer: ").append(GeneralNames.getInstance(dIn.readObject())).append(nl); in toString() 299 … buf.append(" value = ").append(ASN1Dump.dumpAsString(dIn.readObject())).append(nl); in toString() 305 buf.append(" value = ").append("*****").append(nl); in toString() 310 buf.append(nl); in toString()
|
D | X509CertificateObject.java | 667 String nl = System.getProperty("line.separator"); in toString() local 669 buf.append(" [0] Version: ").append(this.getVersion()).append(nl); in toString() 670 buf.append(" SerialNumber: ").append(this.getSerialNumber()).append(nl); in toString() 671 buf.append(" IssuerDN: ").append(this.getIssuerDN()).append(nl); in toString() 672 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl); in toString() 673 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl); in toString() 674 buf.append(" SubjectDN: ").append(this.getSubjectDN()).append(nl); in toString() 675 buf.append(" Public Key: ").append(this.getPublicKey()).append(nl); in toString() 676 buf.append(" Signature Algorithm: ").append(this.getSigAlgName()).append(nl); in toString() 680 buf.append(" Signature: ").append(new String(Hex.encode(sig, 0, 20))).append(nl); in toString() [all …]
|
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
D | X509CRLObject.java | 392 String nl = System.getProperty("line.separator"); in toString() local 395 nl); in toString() 397 .append(nl); in toString() 399 .append(nl); in toString() 401 .append(nl); in toString() 403 .append(nl); in toString() 408 new String(Hex.encode(sig, 0, 20))).append(nl); in toString() 414 new String(Hex.encode(sig, i, 20))).append(nl); in toString() 419 new String(Hex.encode(sig, i, sig.length - i))).append(nl); in toString() 431 buf.append(" Extensions: ").append(nl); in toString() [all …]
|
D | X509CRLEntryObject.java | 261 String nl = System.getProperty("line.separator"); in toString() local 263 buf.append(" userCertificate: ").append(this.getSerialNumber()).append(nl); in toString() 264 buf.append(" revocationDate: ").append(this.getRevocationDate()).append(nl); in toString() 265 buf.append(" certificateIssuer: ").append(this.getCertificateIssuer()).append(nl); in toString() 274 buf.append(" crlEntryExtensions:").append(nl); in toString() 289 … buf.append(CRLReason.getInstance(ASN1Enumerated.getInstance(dIn.readObject()))).append(nl); in toString() 293 … buf.append("Certificate issuer: ").append(GeneralNames.getInstance(dIn.readObject())).append(nl); in toString() 298 … buf.append(" value = ").append(ASN1Dump.dumpAsString(dIn.readObject())).append(nl); in toString() 304 buf.append(" value = ").append("*****").append(nl); in toString() 309 buf.append(nl); in toString()
|
D | X509CertificateObject.java | 639 String nl = System.getProperty("line.separator"); in toString() local 641 buf.append(" [0] Version: ").append(this.getVersion()).append(nl); in toString() 642 buf.append(" SerialNumber: ").append(this.getSerialNumber()).append(nl); in toString() 643 buf.append(" IssuerDN: ").append(this.getIssuerDN()).append(nl); in toString() 644 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl); in toString() 645 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl); in toString() 646 buf.append(" SubjectDN: ").append(this.getSubjectDN()).append(nl); in toString() 647 buf.append(" Public Key: ").append(this.getPublicKey()).append(nl); in toString() 648 buf.append(" Signature Algorithm: ").append(this.getSigAlgName()).append(nl); in toString() 652 buf.append(" Signature: ").append(new String(Hex.encode(sig, 0, 20))).append(nl); in toString() [all …]
|
/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/libopus/silk/ |
D | VAD.c | 305 opus_int32 nl, nrg, inv_nrg; in silk_VAD_GetNoiseLevels() local 317 nl = psSilk_VAD->NL[ k ]; in silk_VAD_GetNoiseLevels() 318 silk_assert( nl >= 0 ); in silk_VAD_GetNoiseLevels() 329 if( nrg > silk_LSHIFT( nl, 3 ) ) { in silk_VAD_GetNoiseLevels() 331 } else if( nrg < nl ) { in silk_VAD_GetNoiseLevels() 334 coef = silk_SMULWB( silk_SMULWW( inv_nrg, nl ), VAD_NOISE_LEVEL_SMOOTH_COEF_Q16 << 1 ); in silk_VAD_GetNoiseLevels() 345 nl = silk_DIV32( silk_int32_MAX, psSilk_VAD->inv_NL[ k ] ); in silk_VAD_GetNoiseLevels() 346 silk_assert( nl >= 0 ); in silk_VAD_GetNoiseLevels() 349 nl = silk_min( nl, 0x00FFFFFF ); in silk_VAD_GetNoiseLevels() 352 psSilk_VAD->NL[ k ] = nl; in silk_VAD_GetNoiseLevels()
|
/external/aac/libFDK/src/ |
D | mdct.cpp | 201 int fl = *pfl, nl = *pnl; in imdct_adapt_parameters() local 219 if (nl - window_diff > 0 ) { in imdct_adapt_parameters() 240 nl -= window_diff; in imdct_adapt_parameters() 245 *pnl = nl; in imdct_adapt_parameters() 265 INT nl, nr; in imdct_block() local 270 nl = (tl - fl)>>1; in imdct_block() 277 imdct_adapt_parameters(hMdct, &fl, &nl, tl, wls, noOutSamples); in imdct_block() 335 hMdct->ov_offset += fl/2 + nl; in imdct_block() 338 nrSamples += fl/2 + nl; in imdct_block() 358 for (i=0; i<nl; i++) { in imdct_block()
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
D | p1.cpp | 80 template <> notlit ft(notlit nl) { return nl; } in ft() argument 82 template <> constexpr char ft(char nl); // expected-error {{constexpr declaration of 'ft<char>' fol… 83 template <> constexpr int gt(int nl) { return nl; } in gt() argument
|