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

1 2

  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
ph_disp.cpp 460 Word16 j, nze, nPulse, ppos;
593 ppos = ps_poss[nPulse];
597 for (i = ppos; i < L_SUBFR; i++)
599 // inno[i1] += inno_sav[ppos] * ph_imp[i1-ppos]
600 tmp1 = mult(inno_sav[ppos], ph_imp[j++]);
604 for (i = 0; i < ppos; i++)
606 // inno[i] += inno_sav[ppos] * ph_imp[L_SUBFR-ppos+i]
607 tmp1 = mult(inno_sav[ppos], ph_imp[j++])
679 Word16 ppos; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDateFormatAPIC.java 50 ParsePosition ppos = new ParsePosition(0); local
76 sdf.parse(str, ppos);
106 Number obj = fmt.parse(str, ppos);
131 Number obj = fmt.parse(str, ppos);
TimeUnitTest.java 47 ParsePosition ppos = new ParsePosition(0); local
49 tuf.parseObject(parseString, ppos);
54 assertEquals("Test10219FractionalPluralParse", parseString.length(), ppos.getIndex());
DateFormatTest.java 3621 ParsePosition ppos = new ParsePosition(0); local
4170 ParsePosition ppos = new ParsePosition(0); local
4177 dfmt.parse(result.toString(), rootChineseCalendar, ppos); local
4292 ParsePosition ppos = new ParsePosition(0); local
4293 dfmt.parse(result.toString(), cal, ppos); local
    [all...]
DateFormatRegressionTest.java 551 ParsePosition ppos[] = {new ParsePosition(10), new ParsePosition(0), new ParsePosition(0)}; local
558 ParsePosition finish = ppos[i];
    [all...]
NumberFormatTest.java     [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
C_P_A_L_.py 24 ppos = goffsetFirstColorRecord + startIndex * 4
26 palette.append( Color(*struct.unpack(">BBBB", data[ppos:ppos+4])) )
27 ppos += 4
  /external/icu/icu4c/source/i18n/
tridpars.cpp 276 ParsePosition ppos(pos);
278 filter = new UnicodeSet(id, ppos, USET_IGNORE_SPACE, NULL, ec);
291 id.extractBetween(pos, ppos.getIndex(), pattern);
292 pos = ppos.getIndex();
726 ParsePosition ppos(pos);
728 UnicodeSet set(id, ppos, USET_IGNORE_SPACE, NULL, ec);
733 id.extractBetween(pos, ppos.getIndex(), filter);
734 pos = ppos.getIndex();
decimfmt.cpp     [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorIDParser.java 283 ParsePosition ppos = new ParsePosition(pos[0]); local
285 filter = new UnicodeSet(id, ppos, null);
291 String pattern = id.substring(pos[0], ppos.getIndex());
292 pos[0] = ppos.getIndex();
614 ParsePosition ppos = new ParsePosition(pos[0]); local
616 new UnicodeSet(id, ppos, null);
617 filter = id.substring(pos[0], ppos.getIndex());
618 pos[0] = ppos.getIndex();
  /external/icu/icu4c/source/test/intltest/
dtfmapts.cpp 289 ParsePosition ppos; local
317 sdf.parse(str, ppos);
352 fmt.parse(str, obj, ppos);
372 fmt.parse(str, obj, ppos);
dtfmttst.cpp 3437 ParsePosition ppos; local
    [all...]
numfmtst.cpp 177 ParsePosition ppos; local
178 LocalPointer<CurrencyAmount> currAmt(test->parseCurrency("",ppos));
180 if (ppos.getIndex()) {
2698 ParsePosition ppos; local
7164 ParsePosition ppos; local
7180 ParsePosition ppos; local
7305 ParsePosition ppos; local
    [all...]
dtfmrgts.cpp 821 ParsePosition ppos [] = { local
841 ParsePosition finish = ppos[i];
    [all...]
  /external/jhead/
jhead.c 605 int ppos = -1;
608 ppos = a;
610 if (ppos >= 0 && a<ppos+4){
614 memcpy(pat, pattern+ppos, 4);
615 pat[a-ppos] = 'd'; // Replace 'i' with 'd' for '%d'
616 pat[a-ppos+1] = '\0';
620 if (ppos+nl+l+1 >= PATH_MAX) ErrFatal("str overflow");
621 memmove(pattern+ppos+nl, pattern+a+1, l+1);
622 memcpy(pattern+ppos, num, nl)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c 191 int32_t ppos; local
284 ppos=0;
285 a=unum_parseDouble(fmt, str, u_strlen(str), &ppos, &status);
286 if (ppos== u_strlen(str)) {
291 log_err(" FAIL: Partial parse ( %d chars ) -> %e\n", ppos, a);
314 ppos=0;
315 a=unum_parseDouble(fmt, str, u_strlen(str), &ppos, &status);
316 if (ppos== u_strlen(str)) {
322 log_err(" FAIL: Partial parse ( %d chars ) -> %e\n", ppos, a);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
ikev2.c 203 const u8 *pend, *ppos; local
249 ppos = (const u8 *) (p + 1);
251 if (ppos + p->spi_size > pend) {
258 ppos, p->spi_size);
259 ppos += p->spi_size;
278 int tlen = ikev2_parse_transform(prop, ppos, pend);
281 ppos += tlen;
284 if (ppos != pend) {
  /external/wpa_supplicant_8/src/eap_server/
ikev2.c 213 const u8 *pend, *ppos; local
257 ppos = (const u8 *) (p + 1);
259 if (ppos + p->spi_size > pend) {
266 ppos, p->spi_size);
267 ppos += p->spi_size;
286 int tlen = ikev2_parse_transform(data, prop, ppos, pend);
289 ppos += tlen;
292 if (ppos != pend) {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/
clique.py 337 ppos=0.
350 B.pos[v]=(0.8,ppos)
351 ppos +=delta_ppos
  /bionic/libc/bionic/
libc_logging.cpp 135 /* Parse a decimal string from 'format + *ppos',
137 * the decimal string in '*ppos' on exit.
141 static unsigned parse_decimal(const char *format, int *ppos) {
142 const char* p = format + *ppos;
156 *ppos = p - format;
  /external/linux-tools-perf/src/include/linux/
perf_event.h 714 loff_t *ppos);
717 loff_t *ppos);
  /external/icu/icu4c/source/common/
uniset_props.cpp     [all...]
  /external/icu/icu4c/source/common/unicode/
uniset.h     [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 986 u8 *plain, *ppos, *res; local
1011 ppos = plain = os_malloc(plen);
1035 *ppos++ = *pos++ ^ hash[i];
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSet.java     [all...]

Completed in 788 milliseconds

1 2