HomeSort by relevance Sort by last modified time
    Searched refs:dn (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
set_sign.h 104 void set_sign(Word16 dn[], /* i/o : correlation between target and h[] */
105 Word16 sign[], /* o : sign of dn[] */
111 Word16 dn[], /* i/o : correlation between target and h[] */
cor_h_x.h 89 Word16 dn[], /* (o): correlation between target and h[] */
cor_h_x2.h 108 Word16 dn[], /* (o): correlation between target and h[] */
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...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
DNParserTest.java 47 private void checkFind(String dn, String attrType, String expected) {
48 String actual = new DNParser(new X500Principal(dn)).find(attrType);
49 assertEquals("dn:" + dn + " attr:" + attrType, expected, actual);
  /bionic/libc/netbsd/resolv/
res_comp.c 171 res_hnok(const char *dn) {
172 int pch = PERIOD, ch = *dn++;
175 int nch = *dn++;
199 res_ownok(const char *dn) {
200 if (asterchar(dn[0])) {
201 if (periodchar(dn[1]))
202 return (res_hnok(dn+2));
203 if (dn[1] == '\0')
206 return (res_hnok(dn));
214 res_mailok(const char *dn) {
    [all...]
  /bionic/libc/netbsd/nameser/
ns_name.c 106 char *dn, *eom; local
112 dn = dst;
121 if (dn != dst) {
122 if (dn >= eom) {
126 *dn++ = '.';
132 if (dn + l >= eom) {
144 if ((m = decode_bitstring(&cp, dn, eom)) < 0)
149 dn += m;
155 if (dn + 1 >= eom) {
159 *dn++ = '\\'
341 u_char *dn, *eom; local
742 const u_char *dn, *cp, *sp; local
    [all...]
  /external/valgrind/main/none/tests/
res_search.c 10 char* dn = (char*)arg; local
14 if(-1 == res_search(dn, 1, 1, buff, 8000))
  /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 345 /* dn is the decNumber to receive the integer */
347 /* returns dn */
351 U_CAPI decNumber * U_EXPORT2 uprv_decNumberFromInt32(decNumber *dn, Int in) {
359 uprv_decNumberFromUInt32(dn, unsig);
360 if (in<0) dn->bits=DECNEG; /* sign needed */
361 return dn;
364 U_CAPI decNumber * U_EXPORT2 uprv_decNumberFromUInt32(decNumber *dn, uInt uin) {
366 uprv_decNumberZero(dn); /* clean */
367 if (uin==0) return dn; /* [or decGetDigits bad call] */
368 for (up=dn->lsu; uin>0; up++)
3180 decNumber dn; local
    [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 196 char dn[PATH_MAX]; local
200 snprintf(dn, sizeof(dn), "%s/%s", path, de->d_name);
201 if (dirUnlinkHierarchy(dn) < 0) {
258 char dn[PATH_MAX]; local
259 snprintf(dn, sizeof(dn), "%s/%s", path, de->d_name);
260 if (!dirSetHierarchyPermissions(dn, uid, gid, dirMode, fileMode)) {
  /system/core/toolbox/
rm.c 40 char dn[PATH_MAX]; local
43 sprintf(dn, "%s/%s", name, de->d_name);
44 if (unlink_recursive(dn) < 0) {
  /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/base/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...]
  /frameworks/base/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/base/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;

Completed in 466 milliseconds

1 2 3