Home
last modified time | relevance | path

Searched refs:ppos (Results 1 – 25 of 85) sorted by relevance

1234

/third_party/libwebsockets/lib/misc/
Dlejp.c91 ctx->pst[0].ppos = 0; in lejp_construct()
189 ctx->path_match_len = ctx->pst[ctx->pst_sp].ppos; in lejp_check_path_match()
207 while (--len && n < ctx->pst[ctx->pst_sp].ppos && in lejp_get_wildcard()
243 if (!ctx->sp && !ctx->pst[ctx->pst_sp].ppos) in lejp_parse()
274 ctx->path[ctx->pst[ctx->pst_sp].ppos++] = '['; in lejp_parse()
275 ctx->path[ctx->pst[ctx->pst_sp].ppos++] = ']'; in lejp_parse()
276 ctx->path[ctx->pst[ctx->pst_sp].ppos] = '\0'; in lejp_parse()
429 ctx->path[ctx->pst[ctx->pst_sp].ppos] = '\0'; in lejp_parse()
471 if (ctx->pst[ctx->pst_sp].ppos + 3u >= in lejp_parse()
474 ctx->path[ctx->pst[ctx->pst_sp].ppos++] = '['; in lejp_parse()
[all …]
Dlecp.c164 ctx->path_match_len = ctx->pst[ctx->pst_sp].ppos; in lecp_check_path_match()
220 ctx->pst[ctx->pst_sp].ppos = st->p; in lecp_pop()
495 st->p = pst->ppos; in lecp_parse()
504 if (pst->ppos + 3u >= sizeof(ctx->path)) in lecp_parse()
507 st->p = pst->ppos; in lecp_parse()
508 ctx->path[pst->ppos++] = '['; in lecp_parse()
509 ctx->path[pst->ppos++] = ']'; in lecp_parse()
510 ctx->path[pst->ppos] = '\0'; in lecp_parse()
525 pst->ppos = st->p; in lecp_parse()
526 ctx->path[pst->ppos] = '\0'; in lecp_parse()
[all …]
/third_party/toybox/toys/pending/
Dhexdump.c44 long long len, pos, ppos;
77 TT.ppos += fs; in do_hexdump()
80 TT.ppos = TT.s; in do_hexdump()
101 TT.ppos += TT.len; in do_hexdump()
110 printf("%07llx", TT.ppos); in do_hexdump()
118 printf("%08llx", TT.ppos); in do_hexdump()
131 printf("%07llx", TT.ppos); in do_hexdump()
139 TT.ppos += TT.bc; in do_hexdump()
/third_party/pulseaudio/src/tests/
Dlo-latency-test.c54 static int ppos = 0; in write_cb() local
62 if (ppos + nsamp > N_OUT) { in write_cb()
65 nbytes = (N_OUT - ppos) * ctx->fs; in write_cb()
68 if (ppos == 0) in write_cb()
71 r = pa_stream_write(s, &out[ppos][0], nbytes, nop_free_cb, 0, PA_SEEK_RELATIVE); in write_cb()
74 ppos = (ppos + nbytes / ctx->fs) % N_OUT; in write_cb()
/third_party/ffmpeg/libavcodec/
Daaccoder_trellis.h68 int idx, ppos, count; in codebook_trellis_rate() local
161 ppos = max_sfb; in codebook_trellis_rate()
162 while (ppos > 0) { in codebook_trellis_rate()
165 stackrun[stack_len] = path[ppos][cb].run; in codebook_trellis_rate()
167 idx = path[ppos-path[ppos][cb].run+1][cb].prev_idx; in codebook_trellis_rate()
168 ppos -= path[ppos][cb].run; in codebook_trellis_rate()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatDataDrivenTest.java45 private static String compareParseResult(String expected, Number actual, ParsePosition ppos) { in compareParseResult() argument
46 if (actual == null && ppos.getIndex() != 0) { in compareParseResult()
49 if (ppos.getIndex() == 0) { in compareParseResult()
98 ParsePosition ppos) { in compareParseCurrencyResult() argument
99 if (ppos.getIndex() == 0 || actual.getCurrency().getCurrencyCode().equals("XXX")) { in compareParseCurrencyResult()
159 ParsePosition ppos = new ParsePosition(0);
160 Number actual = fmt.parse(tuple.parse, ppos);
161 return compareParseResult(tuple.output, actual, ppos);
167 ParsePosition ppos = new ParsePosition(0);
168 CurrencyAmount actual = fmt.parseCurrency(tuple.parse, ppos);
[all …]
DNumberFormatTest.java508 ParsePosition ppos = new ParsePosition(0); in TestSpaceParsingStrict() local
509 df.parse(input, ppos); in TestSpaceParsingStrict()
510 assertEquals("Failed on index: '" + input + "'", expectedIndex, ppos.getIndex()); in TestSpaceParsingStrict()
511 … assertEquals("Failed on error: '" + input + "'", expectedErrorIndex, ppos.getErrorIndex()); in TestSpaceParsingStrict()
632 ParsePosition ppos = new ParsePosition(0); in TestMismatchedCurrencyFormatFail() local
633 df.parse("1.23\u20AC", ppos); in TestMismatchedCurrencyFormatFail()
634 assertEquals("Should fail to parse", 0, ppos.getIndex()); in TestMismatchedCurrencyFormatFail()
637 ParsePosition ppos = new ParsePosition(0); in TestMismatchedCurrencyFormatFail() local
638 df.parseCurrency("1.23\u20AC", ppos); in TestMismatchedCurrencyFormatFail()
639 assertEquals("Should fail to parse currency", 0, ppos.getIndex()); in TestMismatchedCurrencyFormatFail()
[all …]
DNumberFormatJavaCompatilityTest.java96 ParsePosition ppos = new ParsePosition(0); in assertParsedICU4J() local
97 Number actual = df.parse(input, ppos); in assertParsedICU4J()
105 ParsePosition ppos = new ParsePosition(0); in assertParsedOpenJDK() local
106 Number actual = df.parse(input, ppos); in assertParsedOpenJDK()
DIntlTestDateFormatAPIC.java54 ParsePosition ppos = new ParsePosition(0); in TestNameHiding() local
80 sdf.parse(str, ppos); in TestNameHiding()
110 Number obj = fmt.parse(str, ppos); in TestNameHiding()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DNumberFormatDataDrivenTest.java48 private static String compareParseResult(String expected, Number actual, ParsePosition ppos) { in compareParseResult() argument
49 if (actual == null && ppos.getIndex() != 0) { in compareParseResult()
52 if (ppos.getIndex() == 0) { in compareParseResult()
101 ParsePosition ppos) { in compareParseCurrencyResult() argument
102 if (ppos.getIndex() == 0 || actual.getCurrency().getCurrencyCode().equals("XXX")) { in compareParseCurrencyResult()
162 ParsePosition ppos = new ParsePosition(0);
163 Number actual = fmt.parse(tuple.parse, ppos);
164 return compareParseResult(tuple.output, actual, ppos);
170 ParsePosition ppos = new ParsePosition(0);
171 CurrencyAmount actual = fmt.parseCurrency(tuple.parse, ppos);
[all …]
DNumberFormatTest.java511 ParsePosition ppos = new ParsePosition(0); in TestSpaceParsingStrict() local
512 df.parse(input, ppos); in TestSpaceParsingStrict()
513 assertEquals("Failed on index: '" + input + "'", expectedIndex, ppos.getIndex()); in TestSpaceParsingStrict()
514 … assertEquals("Failed on error: '" + input + "'", expectedErrorIndex, ppos.getErrorIndex()); in TestSpaceParsingStrict()
635 ParsePosition ppos = new ParsePosition(0); in TestMismatchedCurrencyFormatFail() local
636 df.parse("1.23\u20AC", ppos); in TestMismatchedCurrencyFormatFail()
637 assertEquals("Should fail to parse", 0, ppos.getIndex()); in TestMismatchedCurrencyFormatFail()
640 ParsePosition ppos = new ParsePosition(0); in TestMismatchedCurrencyFormatFail() local
641 df.parseCurrency("1.23\u20AC", ppos); in TestMismatchedCurrencyFormatFail()
642 assertEquals("Should fail to parse currency", 0, ppos.getIndex()); in TestMismatchedCurrencyFormatFail()
[all …]
DNumberFormatJavaCompatilityTest.java99 ParsePosition ppos = new ParsePosition(0); in assertParsedICU4J() local
100 Number actual = df.parse(input, ppos); in assertParsedICU4J()
108 ParsePosition ppos = new ParsePosition(0); in assertParsedOpenJDK() local
109 Number actual = df.parse(input, ppos); in assertParsedOpenJDK()
DIntlTestDateFormatAPIC.java57 ParsePosition ppos = new ParsePosition(0); in TestNameHiding() local
83 sdf.parse(str, ppos); in TestNameHiding()
113 Number obj = fmt.parse(str, ppos); in TestNameHiding()
/third_party/icu/icu4c/source/test/intltest/
Dnumfmtdatadriventest.cpp339 ParsePosition ppos; in isParsePass() local
340 fmtPtr->parse(tuple.parse, result, ppos); in isParsePass()
341 if (ppos.getIndex() == 0) { in isParsePass()
343 appendErrorMessage = appendErrorMessage + ppos.getErrorIndex(); in isParsePass()
392 actualString + " (" + ppos.getIndex() + ":" + ppos.getErrorIndex() + ")"); in isParsePass()
414 ParsePosition ppos; in isParseCurrencyPass() local
416 fmtPtr->parseCurrency(tuple.parse, ppos)); in isParseCurrencyPass()
417 if (ppos.getIndex() == 0) { in isParseCurrencyPass()
419 appendErrorMessage = appendErrorMessage + ppos.getErrorIndex(); in isParseCurrencyPass()
444 resultStr + " (" + ppos.getIndex() + ":" + ppos.getErrorIndex() + ")"); in isParseCurrencyPass()
/third_party/ffmpeg/libavformat/
Dmpc8.c141 int64_t size, pos, ppos[2]; in mpc8_parse_seektable() local
187 ppos[1 - i] = pos; in mpc8_parse_seektable()
199 pos = (t >> 1) + (uint64_t)ppos[0]*2 - ppos[1]; in mpc8_parse_seektable()
201 ppos[1] = ppos[0]; in mpc8_parse_seektable()
202 ppos[0] = pos; in mpc8_parse_seektable()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumparse_currency.cpp134 ParsePosition ppos(0); in matchCurrency() local
139 ppos, in matchCurrency()
146 if (U_SUCCESS(status) && ppos.getIndex() != 0) { in matchCurrency()
149 segment.adjustOffset(ppos.getIndex()); in matchCurrency()
/third_party/icu/icu4c/source/i18n/
Dnumparse_currency.cpp135 ParsePosition ppos(0); in matchCurrency() local
140 ppos, in matchCurrency()
147 if (U_SUCCESS(status) && ppos.getIndex() != 0) { in matchCurrency()
150 segment.adjustOffset(ppos.getIndex()); in matchCurrency()
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumparse_currency.cpp135 ParsePosition ppos(0); in matchCurrency() local
140 ppos, in matchCurrency()
147 if (U_SUCCESS(status) && ppos.getIndex() != 0) { in matchCurrency()
150 segment.adjustOffset(ppos.getIndex()); in matchCurrency()
Dtridpars.cpp278 ParsePosition ppos(pos); in parseGlobalFilter() local
280 filter = new UnicodeSet(id, ppos, USET_IGNORE_SPACE, NULL, ec); in parseGlobalFilter()
293 id.extractBetween(pos, ppos.getIndex(), pattern); in parseGlobalFilter()
294 pos = ppos.getIndex(); in parseGlobalFilter()
729 ParsePosition ppos(pos); in parseFilterID() local
731 UnicodeSet set(id, ppos, USET_IGNORE_SPACE, NULL, ec); in parseFilterID()
736 id.extractBetween(pos, ppos.getIndex(), filter); in parseFilterID()
737 pos = ppos.getIndex(); in parseFilterID()
/third_party/node/deps/icu-small/source/i18n/
Dnumparse_currency.cpp135 ParsePosition ppos(0); in matchCurrency() local
140 ppos, in matchCurrency()
147 if (U_SUCCESS(status) && ppos.getIndex() != 0) { in matchCurrency()
150 segment.adjustOffset(ppos.getIndex()); in matchCurrency()
Dtridpars.cpp278 ParsePosition ppos(pos); in parseGlobalFilter() local
280 filter = new UnicodeSet(id, ppos, USET_IGNORE_SPACE, NULL, ec); in parseGlobalFilter()
293 id.extractBetween(pos, ppos.getIndex(), pattern); in parseGlobalFilter()
294 pos = ppos.getIndex(); in parseGlobalFilter()
726 ParsePosition ppos(pos); in parseFilterID() local
728 UnicodeSet set(id, ppos, USET_IGNORE_SPACE, NULL, ec); in parseFilterID()
733 id.extractBetween(pos, ppos.getIndex(), filter); in parseFilterID()
734 pos = ppos.getIndex(); in parseFilterID()
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliteratorIDParser.java285 ParsePosition ppos = new ParsePosition(pos[0]); in parseGlobalFilter() local
287 filter = new UnicodeSet(id, ppos, null); in parseGlobalFilter()
293 String pattern = id.substring(pos[0], ppos.getIndex()); in parseGlobalFilter()
294 pos[0] = ppos.getIndex(); in parseGlobalFilter()
616 ParsePosition ppos = new ParsePosition(pos[0]); in parseFilterID() local
618 new UnicodeSet(id, ppos, null); in parseFilterID()
619 filter = id.substring(pos[0], ppos.getIndex()); in parseFilterID()
620 pos[0] = ppos.getIndex(); in parseFilterID()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DTransliteratorIDParser.java286 ParsePosition ppos = new ParsePosition(pos[0]); in parseGlobalFilter() local
288 filter = new UnicodeSet(id, ppos, null); in parseGlobalFilter()
294 String pattern = id.substring(pos[0], ppos.getIndex()); in parseGlobalFilter()
295 pos[0] = ppos.getIndex(); in parseGlobalFilter()
617 ParsePosition ppos = new ParsePosition(pos[0]); in parseFilterID() local
619 new UnicodeSet(id, ppos, null); in parseFilterID()
620 filter = id.substring(pos[0], ppos.getIndex()); in parseFilterID()
621 pos[0] = ppos.getIndex(); in parseFilterID()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
DNumberParserImpl.java82 ParsePosition ppos, in parseStatic() argument
89 ppos.setIndex(result.charEnd); in parseStatic()
92 ppos.setErrorIndex(result.charEnd); in parseStatic()
102 ParsePosition ppos, in parseStaticCurrency() argument
109 ppos.setIndex(result.charEnd); in parseStaticCurrency()
113 ppos.setErrorIndex(result.charEnd); in parseStaticCurrency()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DNumberParserImpl.java80 ParsePosition ppos, in parseStatic() argument
87 ppos.setIndex(result.charEnd); in parseStatic()
90 ppos.setErrorIndex(result.charEnd); in parseStatic()
100 ParsePosition ppos, in parseStaticCurrency() argument
107 ppos.setIndex(result.charEnd); in parseStaticCurrency()
111 ppos.setErrorIndex(result.charEnd); in parseStaticCurrency()

1234