Searched refs:dn (Results 26 - 50 of 91) sorted by relevance

1234

/external/icu/icu4c/source/i18n/
H A DdecNumber.h184 /* Macros for testing decNumber *dn */
185 #define decNumberIsCanonical(dn) (1) /* All decNumbers are saintly */
186 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
187 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0)
188 #define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0)
189 #define decNumberIsNegative(dn) (((dn)
[all...]
H A DdecNumber.c362 /* dn is the decNumber to receive the integer */
364 /* returns dn */
368 U_CAPI decNumber * U_EXPORT2 uprv_decNumberFromInt32(decNumber *dn, Int in) { argument
376 uprv_decNumberFromUInt32(dn, unsig);
377 if (in<0) dn->bits=DECNEG; /* sign needed */
378 return dn;
381 U_CAPI decNumber * U_EXPORT2 uprv_decNumberFromUInt32(decNumber *dn, uInt uin) { argument
383 uprv_decNumberZero(dn); /* clean */
384 if (uin==0) return dn; /* [or decGetDigits bad call] */
385 for (up=dn
403 uprv_decNumberToInt32(const decNumber *dn, decContext *set) argument
439 uprv_decNumberToUInt32(const decNumber *dn, decContext *set) argument
482 uprv_decNumberToString(const decNumber *dn, char *string) argument
487 uprv_decNumberToEngString(const decNumber *dn, char *string) argument
512 uprv_decNumberFromString(decNumber *dn, const char chars[], decContext *set) argument
3211 decNumber dn; local
3330 uprv_decNumberClass(const decNumber *dn, decContext *set) argument
3488 uprv_decNumberGetBCD(const decNumber *dn, uByte *bcd) argument
3522 uprv_decNumberSetBCD(decNumber *dn, const uByte *bcd, uInt n) argument
3547 uprv_decNumberIsNormal(const decNumber *dn, decContext *set) argument
3567 uprv_decNumberIsSubnormal(const decNumber *dn, decContext *set) argument
3591 uprv_decNumberTrim(decNumber *dn) argument
3619 uprv_decNumberZero(decNumber *dn) argument
3652 decToString(const decNumber *dn, char *string, Flag eng) argument
6635 decTrim(decNumber *dn, decContext *set, Flag all, Flag noclamp, Int *dropped) argument
6851 decRoundOperand(const decNumber *dn, decContext *set, uInt *status) argument
6933 decSetCoeff(decNumber *dn, decContext *set, const Unit *lsu, Int len, Int *residue, uInt *status) argument
7115 decApplyRound(decNumber *dn, decContext *set, Int residue, uInt *status) argument
7284 decFinish(decNumber *dn, decContext *set, Int *residue, uInt *status) argument
7319 decFinalize(decNumber *dn, decContext *set, Int *residue, uInt *status) argument
7393 decSetOverflow(decNumber *dn, decContext *set, uInt *status) argument
7439 decSetMaxValue(decNumber *dn, decContext *set) argument
7473 decSetSubnormal(decNumber *dn, decContext *set, Int *residue, uInt *status) argument
7587 decGetInt(const decNumber *dn) argument
7676 decDecap(decNumber *dn, Int drop) argument
7786 decStatus(decNumber *dn, uInt status, decContext *set) argument
7858 uprv_decNumberShow(const decNumber *dn) argument
8001 decCheckNumber(const decNumber *dn) argument
8102 decCheckInexact(const decNumber *dn, decContext *set) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DDistinguishedNameParser.java27 private final String dn; field in class:DistinguishedNameParser
43 this.dn = principal.getName(X500Principal.RFC2253);
44 this.length = this.dn.length();
67 throw new IllegalStateException("Unexpected end of DN: " + dn);
80 throw new IllegalStateException("Unexpected end of DN: " + dn);
111 throw new IllegalStateException("Unexpected end of DN: " + dn);
140 throw new IllegalStateException("Unexpected end of DN: " + dn);
174 throw new IllegalStateException("Unexpected end of DN: " + dn);
235 throw new IllegalStateException("Unexpected end of DN: " + dn);
313 throw new IllegalStateException("Malformed DN: " + dn);
[all...]
/external/pdfium/third_party/libopenjpeg20/
H A Ddwt.c55 OPJ_INT32 dn; member in struct:dwt_local
66 OPJ_INT32 dn ; member in struct:v4dwt_local
92 static void opj_dwt_deinterleave_h(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
96 static void opj_dwt_deinterleave_v(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 x, OPJ_INT32 cas);
108 static void opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
113 static void opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
117 static void opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas);
160 #define UNDERFLOW_DN(i) ((i) >= dn&&dn>0)
167 #define OPJ_D_(i) ((i)<0 ? OPJ_D(0) : (UNDERFLOW_DN(i) ? OPJ_D(dn
201 opj_dwt_deinterleave_h(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas) argument
223 opj_dwt_deinterleave_v(OPJ_INT32 *a, OPJ_INT32 *b, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 x, OPJ_INT32 cas) argument
291 opj_dwt_encode_1(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas) argument
312 opj_dwt_decode_1_(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas) argument
340 opj_dwt_encode_1_real(OPJ_INT32 *a, OPJ_SIZE_T a_count, OPJ_INT32 dn, OPJ_INT32 sn, OPJ_INT32 cas) argument
429 OPJ_INT32 dn, sn; local
[all...]
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_peephole.cpp292 alu_node *dn = static_cast<alu_node*>(s->def);
294 if (dn->is_alu_op(ALU_OP1_TRUNC)) {
295 s = dn->src[0];
299 if (dn->bc.src[0].neg != 1 || dn->bc.src[0].abs != 0 ||
300 dn->bc.src[0].rel != 0) {
304 dn = static_cast<alu_node*>(s->def);
308 if (dn->bc.op_ptr->flags & AF_SET) {
309 a = dn;
323 alu_node *dn
[all...]
/external/f2fs-tools/fsck/
H A Ddir.c106 struct dnode_of_data dn = {0}; local
128 if (dn.node_blk && dn.node_blk != dn.inode_blk)
129 free(dn.node_blk);
131 set_new_dnode(&dn, dir, NULL, ino);
132 get_dnode_of_data(sbi, &dn, bidx, LOOKUP_NODE);
133 if (dn.data_blkaddr == NULL_ADDR)
136 ret = dev_read_block(dentry_blk, dn.data_blkaddr);
148 if (dn
202 struct dnode_of_data dn = {0}; local
446 struct dnode_of_data dn = {0}; local
[all...]
H A Dxattr.c74 struct dnode_of_data dn; local
92 set_new_dnode(&dn, inode, NULL, new_nid);
94 blkaddr = new_node_block(sbi, &dn, XATTR_NODE_OFFSET);
95 ASSERT(dn.node_blk);
96 xattr_node = dn.node_blk;
99 set_new_dnode(&dn, inode, NULL, xnid);
/external/icu/icu4c/source/test/perf/perldriver/
H A DFormat.pm148 my ($d, $dn, $e) = ($1, $2, $3);
150 $d .= $dn;
/external/icu/icu4j/perf-tests/perldriver/
H A DFormat.pm146 my ($d, $dn, $e) = ($1, $2, $3);
148 $d .= $dn;
/external/ltp/testcases/kernel/syscalls/getcpu/
H A Dgetcpu01.c265 struct dirent *de, *dn; local
285 while ((dn = readdir(directory_node)) != NULL) {
286 if (strncmp(dn->d_name, "cpu", 3))
288 cpu = strtoul(dn->d_name + 3, NULL, 0);
/external/e2fsprogs/lib/support/
H A Ddict.c1300 dnode_t *dn; local
1338 dn = dnode_create(val);
1340 if (!key || !val || !dn) {
1344 if (dn)
1345 dnode_destroy(dn);
1348 dict_load_next(&dl, dn, key);
1365 dnode_t *dn; local
1428 dn = dict_lookup(d, tok1);
1429 if (!dn) {
1433 val = dnode_get(dn);
[all...]
/external/boringssl/src/crypto/chacha/asm/
H A Dchacha-x86.pl53 my ($an,$bn,$cn,$dn)=map(($_&~3)+(($_+1)&3),($ai,$bi,$ci,$di)); # next
72 ($an,$bn,$cn,$dn)=map(($_&~3)+(($_+$j++)&3),($an,$bn,$cn,$dn));
78 ($an,$bn,$cn,$dn)=map(($_&~3)+(($_-$j++)&3),($an,$bn,$cn,$dn));
89 &mov ($d_,&DWP(4*$dn,"esp")) if ($di!=$dn);
99 &mov (&DWP(4*$di,"esp"),$d) if ($di!=$dn);
100 &mov ($d_,$d) if ($di==$dn);
360 my ($an,$bn,$cn,$dn)
[all...]
/external/curl/lib/
H A Dldap.c442 TCHAR *dn = ldap_get_dn(server, entryIterator); local
443 name = Curl_convert_tchar_to_UTF8(dn);
445 ldap_memfree(dn);
452 char *dn = name = ldap_get_dn(server, entryIterator); local
461 ldap_memfree(dn);
472 ldap_memfree(dn);
482 ldap_memfree(dn);
492 ldap_memfree(dn);
798 char *dn = p; local
802 LDAP_TRACE (("DN '%s'\n", dn));
[all...]
H A Dx509asn1.h126 const char *Curl_DNtostr(curl_asn1Element *dn);
H A Dx509asn1.c591 static ssize_t encodeDN(char *buf, size_t n, curl_asn1Element *dn) argument
603 /* ASCII encode distinguished name at `dn' into the `n'-byte buffer at `buf'.
606 for(p1 = dn->beg; p1 < dn->end;) {
607 p1 = Curl_getASN1Element(&rdn, p1, dn->end);
657 const char *Curl_DNtostr(curl_asn1Element *dn) argument
660 ssize_t n = encodeDN(buf, 0, dn);
668 encodeDN(buf, n + 1, dn);
1071 curl_asn1Element dn; local
1164 q = Curl_getASN1Element(&dn,
[all...]
/external/syslinux/com32/hdt/
H A Dhdt-menu-disk.c34 static int dn; variable
50 drive_info[dn].disk, nb_partitions_seen);
92 drive_info[dn].disk, nb_partitions_seen);
224 dn = disk_number;
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_bb.cpp117 Graph::Node *dn = dom.parent(); local
118 return dn ? BasicBlock::get(dn) : NULL;
359 Graph::Node *dn = &this->dom; local
361 while (dn && dn != bn)
362 dn = dn->parent();
364 return dn != NULL;
/external/webrtc/webrtc/voice_engine/test/cmd_test/
H A Dvoe_cmd_test.cc342 char dn[128] = { 0 }; local
346 res = hardware->GetPlayoutDeviceName(j, dn, guid);
348 printf(" %d: %s \n", j, dn);
353 res = hardware->GetRecordingDeviceName(j, dn, guid);
355 printf(" %d: %s \n", j, dn);
565 char dn[128] = { 0 }; local
570 res = hardware->GetPlayoutDeviceName(i, dn, guid);
572 printf(" %d: %s \n", i, dn);
586 char dn[128] = { 0 }; local
591 res = hardware->GetRecordingDeviceName(i, dn, gui
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DPKIXNameConstraintValidator.java407 ASN1Sequence dn = ASN1Sequence.getInstance(((GeneralSubtree)it
411 if (dn != null)
413 intersect.add(dn);
423 if (withinDNSubtree(dn, subtree))
425 intersect.add(dn);
427 else if (withinDNSubtree(subtree, dn))
437 private Set unionDN(Set excluded, ASN1Sequence dn) argument
441 if (dn == null)
445 excluded.add(dn);
458 if (withinDNSubtree(dn, subtre
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java138 ASN1Sequence dn = ASN1Sequence.getInstance(((GeneralSubtree)it
142 if (dn != null)
144 intersect.add(dn);
154 if (withinDNSubtree(dn, subtree))
156 intersect.add(dn);
158 else if (withinDNSubtree(subtree, dn))
168 private Set unionDN(Set excluded, ASN1Sequence dn) argument
172 if (dn == null)
176 excluded.add(dn);
189 if (withinDNSubtree(dn, subtre
[all...]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
H A Dsort.js34 var m = hash.match(/dn-./);
83 hash = 'dn-' + header.id;
/external/icu/icu4j/perf-tests/
H A Dconverterperf.pl492 my ($d, $dn, $e) = ($1, $2, $3);
494 $d .= $dn;
H A Ddateformatperf.pl478 my ($d, $dn, $e) = ($1, $2, $3);
480 $d .= $dn;
H A Ddecimalformatperf.pl473 my ($d, $dn, $e) = ($1, $2, $3);
475 $d .= $dn;
H A Dnormperf.pl528 my ($d, $dn, $e) = ($1, $2, $3);
530 $d .= $dn;

Completed in 869 milliseconds

1234