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...]
  /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) {
  /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/chromium/third_party/icu/source/test/perf/perldriver/
Format.pm 144 my ($d, $dn, $e) = ($1, $2, $3);
146 $d .= $dn;
  /external/icu4c/test/perf/perldriver/
Format.pm 144 my ($d, $dn, $e) = ($1, $2, $3);
146 $d .= $dn;

Completed in 523 milliseconds

1 2 3