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...]
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...]
  /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...]