HomeSort by relevance Sort by last modified time
    Searched refs:dn (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/valgrind/main/none/tests/
res_search.c 10 char* dn = (char*)arg; local
14 if(-1 == res_search(dn, 1, 1, buff, 8000))
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
s10_8pf.h 114 Word16 dn[], /* i : correlation between target and h[] */
117 Word16 pos_max[], /* i : position of maximum of dn[] */
set_sign.cpp 128 dn = buffer of correlation values (Word16)
129 sign = buffer containing sign of dn elements (Word16)
137 dn buffer is modified to contain the absolute value of its input
139 values in dn buffer
153 This function builds sign vector according to dn buffer It also finds
170 void set_sign(Word16 dn[], i/o : correlation between target and h[]
171 Word16 sign[], o : sign of dn[]
180 // set sign according to dn[]
183 val = dn[i];
191 dn[i] = val; // modify dn[] according to the fixed sig
    [all...]
c2_9pf.cpp 122 Word16 dn[], /* i : correlation between target and h[] */
131 Word16 dn_sign[], /* i : sign of dn[] */
252 Word16 dn[L_CODE], dn2[L_CODE], dn_sign[L_CODE];
261 cor_h_x(h, x, dn, 1);
262 set_sign(dn, dn_sign, dn2, 8); // dn2[] not used in this codebook search
264 search_2i40(subNr, dn, rr, codvec);
316 Word16 dn[L_CODE]; local
362 dn,
369 dn,
382 dn,
    [all...]
c2_11pf.cpp 122 Word16 dn[], /* i : correlation between target and h[] */
130 Word16 dn_sign[], /* i : sign of dn[] */
240 Word16 dn[L_CODE]; local
275 dn,
280 dn,
292 dn,
345 dn, correlation between target and h[], array of type Word16
405 Word16 dn[], /* i : correlation between target and h[] */
460 ps0 = dn[i0];
483 ps1 = add(ps0, dn[i1], pOverflow)
    [all...]
cor_h_x.cpp 122 dn = vector containing the correlation between the target and the
129 dn contents are the newly calculated correlation values
170 Word16 dn[], // (o): correlation between target and h[]
174 cor_h_x2(h, x, dn, sf, NB_TRACK, STEP);
181 Word16 dn[], // (o): correlation between target and h[]
217 dn[i] = pv_round (L_shl (y32[i], j));
247 Word16 dn[], /* (o): correlation between target and h[] */
308 p_ptr = dn;
cor_h_x2.cpp 111 dn = vector containing the correlation between the target and the
121 dn contents are the newly calculated correlation values
165 Word16 dn[], // (o): correlation between target and h[]
201 dn[i] = pv_round (L_shl (y32[i], j));
231 Word16 dn[], /* (o): correlation between target and h[] */
278 dn[i] = pv_round(L_shl(y32[i], j, pOverflow), pOverflow);
c4_17pf.cpp 101 Word16 dn[], /* i : correlation between target and h[] */
110 Word16 dn_sign[], /* i : sign of dn[] */
225 Word16 dn[L_CODE]; local
258 dn,
263 dn,
275 dn,
328 dn[] Array of type Word16 -- correlation between target and h[]
387 Word16 dn[], /* i : correlation between target and h[] */
455 ps0 = dn[i0];
479 /* ps1 = add(ps0, dn[i1], pOverflow); *
    [all...]
c3_14pf.cpp 92 Word16 dn[], /* i : correlation between target and h[] */
101 Word16 dn_sign[], /* i : sign of dn[] */
215 Word16 dn[L_CODE]; local
248 dn,
253 dn,
265 dn,
316 dn[] Array of type Word16 -- correlation between target and h[]
374 Word16 dn[], /* i : correlation between target and h[] */
442 ps0 = dn[i0];
467 /* ps1 = add(ps0, dn[i1], pOverflow); *
    [all...]
c1035pf.cpp 603 Word16 dn[L_CODE], sign[L_CODE];
606 cor_h_x (h, x, dn, 2);
607 set_sign12k2 (dn, cn, sign, pos_max, NB_TRACK, ipos, STEP);
611 dn, rr, ipos, pos_max, codvec);
659 Word16 dn[L_CODE], sign[L_CODE]; local
662 cor_h_x(h, x, dn, 2, pOverflow);
663 set_sign12k2(dn, cn, sign, pos_max, NB_TRACK, ipos, STEP, pOverflow);
667 dn, rr, ipos, pos_max, codvec, pOverflow);
s10_8pf.cpp 136 dn[] = correlation between target and h[] (Word16)
139 pos_max[] = Position of maximum dn[] (Word16)
162 search_10and8i40 (10,5,5,dn, rr, ipos, pos_max, codvec); for GSMEFR
163 search_10and8i40 (8, 4,4,dn, rr, ipos, pos_max, codvec); for 10.2
183 Word16 dn[], // i : correlation between target and h[]
186 Word16 pos_max[], // i : position of maximum of dn[]
227 ps0 = add (dn[i0], dn[i1]);
254 ps1 = add (ps0, dn[i2]);
268 ps2 = add (ps1, dn[i3])
    [all...]
  /external/icu4c/i18n/
decNumber.h 182 /* Macros for testing decNumber *dn */
183 #define decNumberIsCanonical(dn) (1) /* All decNumbers are saintly */
184 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
185 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0)
186 #define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0)
187 #define decNumberIsNegative(dn) (((dn)->bits&DECNEG)!=0
    [all...]
decNumber.c 358 /* dn is the decNumber to receive the integer */
360 /* returns dn */
364 U_CAPI decNumber * U_EXPORT2 uprv_decNumberFromInt32(decNumber *dn, Int in) {
372 uprv_decNumberFromUInt32(dn, unsig);
373 if (in<0) dn->bits=DECNEG; /* sign needed */
374 return dn;
377 U_CAPI decNumber * U_EXPORT2 uprv_decNumberFromUInt32(decNumber *dn, uInt uin) {
379 uprv_decNumberZero(dn); /* clean */
380 if (uin==0) return dn; /* [or decGetDigits bad call] */
381 for (up=dn->lsu; uin>0; up++)
3207 decNumber dn; local
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 23 * A distinguished name (DN) parser. This parser only supports extracting a
24 * string value from a DN. It doesn't support values in the hex-string style.
29 private final String dn; field in class:DistinguishedNameParser
45 this.dn = principal.getName(X500Principal.RFC2253);
46 this.length = this.dn.length();
56 return null; // reached the end of DN
69 throw new IllegalStateException("Unexpected end of DN: " + dn);
82 throw new IllegalStateException("Unexpected end of DN: " + dn);
    [all...]
  /libcore/luni/src/main/java/javax/security/auth/x500/
X500Principal.java 60 private transient Name dn; field in class:X500Principal
77 // FIXME dn = new Name(name);
78 dn = (Name) Name.ASN1.decode(name);
100 // FIXME dn = new Name(is);
101 dn = (Name) Name.ASN1.decode(in);
129 dn = new Name(name);
140 dn = new Name(substituteNameFromMap(name, keywordMap));
155 canonicalName = dn.getName(CANONICAL);
179 byte[] src = dn.getEncoded();
192 return dn.getName(RFC2253)
    [all...]
  /bootable/recovery/minzip/
DirUtil.c 210 char dn[PATH_MAX]; local
214 snprintf(dn, sizeof(dn), "%s/%s", path, de->d_name);
215 if (dirUnlinkHierarchy(dn) < 0) {
272 char dn[PATH_MAX]; local
273 snprintf(dn, sizeof(dn), "%s/%s", path, de->d_name);
274 if (!dirSetHierarchyPermissions(dn, uid, gid, dirMode, fileMode)) {
  /external/apache-harmony/auth/src/test/java/common/javax/security/auth/x500/
X500PrincipalTest.java 36 * Distinguished name(DN) strings follows
226 String dn = "CN=A, OID.2.5.4.3 = #130142"; local
227 X500Principal principal = new X500Principal(dn);
241 String dn = "CN=A, OID.2.5.4.3 = #130142"; local
242 X500Principal principal = new X500Principal(dn);
256 String dn = "CN=A, OID.2.5.4.3 = #130142"; local
257 X500Principal principal = new X500Principal(dn);
333 String dn = "CN=A+ST=CA,O=B,L=C,C=D,OU=E,CN=A+ST=CA,O=B,L=C,C=D,OU=E,CN=Z"; local
334 X500Principal principal = new X500Principal(dn);
349 String dn = "CN=A,CN=B" local
549 String dn = "OID.2.16.4.3=B; CN=A"; local
567 String dn = "OID.2.16.4.3=B; CN=A"; local
585 String dn = "OID.2.16.4.3=B; CN=A"; local
600 String dn = "OID.2.16.4.3=B + CN=A"; local
613 String dn = "OID.2.16.4.3=B + CN=A"; local
626 String dn = "ST=C + CN=A; OU=B + CN=D"; local
640 String dn = "OID.2.16.4.3=B + CN=A"; local
654 String dn = "OID.2.16.4.3=#13024220+ CN=A"; local
668 String dn = "OID.2.16.4.9=A + OID.2.16.4.3=B"; local
682 String dn = "OID.2.2.2.2=A + OID.1.1.1.1=B"; local
696 String dn = "OID.2.16.4.9=A + OID.2.16.4=B"; local
710 String dn = "OID.1.1.2=A + OID.1.2=B"; local
724 String dn = "OID.1.1.1=A + OID.1.1=B"; local
748 String dn = "CN=\\"\\""; local
761 String dn = "CN=\\\\ "; local
774 String dn = "CN=\\" \\""; local
785 String dn = "CN=\\" \\""; local
796 String dn = "CN=\\" \\""; local
808 String dn = "CNN=A"; local
821 String dn = ";CN=A"; local
834 String dn = "=CN=A"; local
846 String dn = "CN="; local
854 String dn = "CN=\\"\\", C=\\"\\""; local
864 String dn = "CN=\\"\\" + OU=A, C=\\"\\""; local
875 String dn = "CN=,C"; local
884 String dn = "CN=,C=+"; local
897 String dn = "CN=#XYZ"; local
910 String dn = "CN=X+YZ"; local
923 String dn = "CN=X=YZ"; local
934 String dn = "CN=X\\"YZ"; local
945 String dn = "CN=X<YZ"; local
956 String dn = "CN=#"; local
971 String dn = "CN=#13"; local
986 String dn = "CN=#1301"; local
1001 String dn = "CN=#13010101"; local
1014 String dn = "CN=# 0"; local
1026 String dn = "CN=#7E0142"; local
1196 String dn = "CN=A"; local
1213 String dn = "OID.2.16.4.3=B + CN=A"; local
1231 String dn = "OID.2.16.4.3=B + CN=A"; local
1249 String dn = "OID.2.16.4.3=B + CN=A"; local
1348 String dn = "CN=A,CN=\\\\\\"B"; local
1361 String dn = "CN=A,CN=\\\\\\"B"; local
1374 String dn = "CN=A,CN=\\\\\\"B"; local
1431 String dn = "CN=\\\\\\\\B"; local
1444 String dn = "CN=\\\\\\\\B"; local
1457 String dn = "CN=\\\\\\\\B"; local
1470 String dn = "CN=\\"ABCDEF\\""; local
1485 String dn = "CN=\\"ABCDEF"; local
1499 String dn = "CN=\\"ABCD#EF\\""; local
1513 String dn = "CN=ABC\\"DEF\\""; local
1525 String dn = "CN=\\"ABCDEF\\""; local
1538 String dn = "CN=\\"ABCDEF\\""; local
1551 String dn = "CN=\\"ABCDEF\\""; local
1564 String dn = "CN=\\"ABCD#EF\\""; local
1577 String dn = "CN=\\"ABCD#EF\\""; local
1590 String dn = "CN=\\"ABCD#EF\\""; local
1603 String dn = "CN=X#YZ"; local
1617 String dn = "CN=X#YZ"; local
1632 String dn = "CN=X#YZ"; local
1646 String dn = "CN=\\\\#XYZ"; local
1659 String dn = "CN=\\\\#XYZ"; local
1671 String dn = "CN=\\\\#XYZ"; local
1683 String dn = "CN=A,CN=B\\\\ "; local
1696 String dn = "CN=A,CN=B\\\\ "; local
1709 String dn = "CN=A,CN=B\\\\ "; local
1722 String dn = "CN=\\"B A\\""; local
1735 String dn = "CN=\\"B A\\""; local
1748 String dn = "CN=\\"B A\\""; local
1761 String dn = "CN=\\\\ B"; local
1774 String dn = "CN=\\\\ B"; local
1787 String dn = "CN=\\\\ B"; local
1799 String dn = "CN=\\"\\"B"; local
1813 String dn = "CN=\\"A\\\\\\"B\\""; local
1825 String dn = "CN=\\"A\\\\\\"B\\""; local
1837 String dn = "CN=\\"A\\\\\\"B\\""; local
1850 String dn = "CN=\\"A\\\\\\"\\""; local
1862 String dn = "CN=\\"A\\\\\\"\\""; local
1874 String dn = "CN=\\"A\\\\\\"\\""; local
1887 String dn = "CN=\\"A\\\\\\", C=B\\""; local
1900 String dn = "CN=\\"A\\\\\\\\\\", C=B"; local
1913 String dn = "CN=A\\nB"; local
1925 String dn = "CN=A\\nB"; local
1937 String dn = "CN=A\\nB"; local
2246 String dn = (String) obj[0]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 48 Word16 dn[], /* (i) <12b : correlation between target x[] and H[] */
73 /* calculate energy for normalization of cn[] and dn[] */
87 s = Dot_product12_asm(dn, dn, L_SUBFR, &exp);
89 s = Dot_product12(dn, dn, L_SUBFR, &exp);
96 /* mix normalized cn[] and dn[] */
98 p1 = dn;
113 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */
116 val = dn[i]
    [all...]
c4t64fx.c 110 Word16 dn[], /* (i) corr. between target and h[] */
119 Word16 dn[], /* (i) <12b : correlation between target x[] and H[] */
240 /* calculate energy for normalization of cn[] and dn[] */
254 s = Dot_product12_asm(dn, dn, L_SUBFR, &exp);
256 s = Dot_product12(dn, dn, L_SUBFR, &exp);
263 /* mix normalized cn[] and dn[] */
265 p1 = dn;
280 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */
    [all...]
  /system/core/toolbox/
rm.c 43 char dn[PATH_MAX]; local
46 sprintf(dn, "%s/%s", name, de->d_name);
47 if (unlink_recursive(dn, flags) < 0) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 89 void MoveNeighborSAD(Int dn[], Int new_loc);
90 Int FindMin(Int dn[]);
790 Int d, dmin, dn[9]; local
946 dn[0] = dmin;
950 MoveNeighborSAD(dn, last_loc);
966 dn[k] = d; /* keep it for half pel use */
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 975 int d, dmin, dn[9]; local
    [all...]
  /build/core/
device.mk 54 $(eval dn := $(strip $(1)))
57 $(if $(filter $(dn),$(DEVICES.$(d).DEVICE_NAME)), \
65 $(error No matches for device "$(dn)"), \
66 $(error Device "$(dn)" ambiguous: matches $(d)) \
  /external/icu4c/test/perf/perldriver/
Format.pm 144 my ($d, $dn, $e) = ($1, $2, $3);
146 $d .= $dn;
  /external/e2fsprogs/e2fsck/
dict.c 1290 dnode_t *dn; local
1328 dn = dnode_create(val);
1330 if (!key || !val || !dn) {
1334 if (dn)
1335 dnode_destroy(dn);
1338 dict_load_next(&dl, dn, key);
1355 dnode_t *dn; local
    [all...]

Completed in 751 milliseconds

12 3 4