Searched defs:ppos (Results 1 - 13 of 13) sorted by relevance

/external/icu4c/test/intltest/
H A Ddtfmapts.cpp259 ParsePosition ppos; local
286 sdf.parse(str, ppos);
317 fmt.parse(str, obj, ppos);
337 fmt.parse(str, obj, ppos);
H A Ddtfmrgts.cpp813 ParsePosition ppos [] = { local
833 ParsePosition finish = ppos[i];
H A Ddtfmttst.cpp2951 ParsePosition ppos; local
2987 ppos.setErrorIndex(-1);
2988 ppos.setIndex(0);
2992 formatters[i]->parse(refStr, *calendars[i], ppos);
3000 ppos.setErrorIndex(-1);
3001 ppos.setIndex(0);
3005 formatters[i]->parse(refStr, *calendars[j], ppos);
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
H A Dph_disp.cpp460 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_im
679 Word16 ppos; local
[all...]
/external/qemu/audio/
H A Dfmodaudio.c258 int ppos = FSOUND_GetCurrentPosition (fmd->channel); local
260 if (ppos == old_pos || !ppos) {
264 if ((old_pos < ppos) && ((old_pos + len) > ppos)) {
265 len = ppos - old_pos;
268 if ((old_pos > ppos) && ((old_pos + len) > (ppos + hw->samples))) {
269 len = hw->samples - old_pos + ppos;
275 dolog ("decr=%d live=%d ppos
[all...]
H A Ddsoundaudio.c671 DWORD wpos, ppos, old_pos; local
687 &ppos,
701 cur_blat = audio_ring_dist (wpos, ppos, bufsize);
718 if (ds->old_pos == ppos) {
720 dolog ("old_pos == ppos\n");
726 ds->played += audio_ring_dist (ds->old_pos, ppos, hw->bufsize);
731 if ((old_pos < ppos) && ((old_pos + len) > ppos)) {
732 len = ppos - old_pos;
735 if ((old_pos > ppos)
[all...]
/external/icu4c/test/cintltst/
H A Dcnmdptst.c191 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);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Dikev2.c234 const u8 *pend, *ppos; local
280 ppos = (const u8 *) (p + 1);
282 if (ppos + p->spi_size > pend) {
289 ppos, p->spi_size);
290 ppos += p->spi_size;
309 int tlen = ikev2_parse_transform(prop, ppos, pend);
312 ppos += tlen;
315 if (ppos != pend) {
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Dikev2.c218 const u8 *pend, *ppos; local
262 ppos = (const u8 *) (p + 1);
264 if (ppos + p->spi_size > pend) {
271 ppos, p->spi_size);
272 ppos += p->spi_size;
291 int tlen = ikev2_parse_transform(data, prop, ppos, pend);
294 ppos += tlen;
297 if (ppos != pend) {
/external/icu4c/common/
H A Duniset_props.cpp1180 ParsePosition& ppos,
1182 int32_t pos = ppos.getIndex();
1195 // On entry, ppos should point to one of the following locations:
1263 ppos.setIndex(close + (posix ? 2 : 1));
1179 applyPropertyPattern(const UnicodeString& pattern, ParsePosition& ppos, UErrorCode &ec) argument
/external/wpa_supplicant/
H A Dradius.c780 u8 *plain, *ppos, *res; local
801 ppos = plain = os_malloc(plen);
825 *ppos++ = *pos++ ^ hash[i];
/external/wpa_supplicant_6/wpa_supplicant/src/radius/
H A Dradius.c785 u8 *plain, *ppos, *res; local
806 ppos = plain = os_malloc(plen);
830 *ppos++ = *pos++ ^ hash[i];
/external/kernel-headers/original/linux/
H A Dfs.h1655 extern ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos);
1656 extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos);
1658 unsigned long nr_segs, loff_t *ppos);
1671 extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
1677 unsigned long nr_segs, loff_t *ppos);
1679 unsigned long nr_segs, loff_t *ppos);
1688 loff_t *ppos);
1689 extern ssize_t xip_file_sendfile(struct file *in_file, loff_t *ppos,
1694 size_t len, loff_t *ppos);
1703 static inline void do_generic_file_read(struct file * filp, loff_t *ppos, argument
[all...]

Completed in 138 milliseconds