Searched refs:ppos (Results 1 - 25 of 38) sorted by relevance

12

/external/fonttools/Lib/fontTools/ttLib/tables/
H A DC_P_A_L_.py24 ppos = goffsetFirstColorRecord + startIndex * 4
26 palette.append( Color(*struct.unpack(">BBBB", data[ppos:ppos+4])) )
27 ppos += 4
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DC_P_A_L_.py24 ppos = goffsetFirstColorRecord + startIndex * 4
26 palette.append( Color(*struct.unpack(">BBBB", data[ppos:ppos+4])) )
27 ppos += 4
/external/qemu/audio/
H A Ddsoundaudio.c578 DWORD wpos, ppos, old_pos; local
592 &ppos,
606 cur_blat = audio_ring_dist (wpos, ppos, bufsize);
623 if (ds->old_pos == ppos) {
625 dolog ("old_pos == ppos\n");
631 ds->played += audio_ring_dist (ds->old_pos, ppos, hw->bufsize);
636 if ((old_pos < ppos) && ((old_pos + len) > ppos)) {
637 len = ppos - old_pos;
640 if ((old_pos > ppos)
[all...]
H A Dfmodaudio.c244 int ppos = FSOUND_GetCurrentPosition (fmd->channel); local
246 if (ppos == old_pos || !ppos) {
250 if ((old_pos < ppos) && ((old_pos + len) > ppos)) {
251 len = ppos - old_pos;
254 if ((old_pos > ppos) && ((old_pos + len) > (ppos + hw->samples))) {
255 len = hw->samples - old_pos + ppos;
261 dolog ("decr=%d live=%d ppos
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DOptimize.c243 static CYTHON_INLINE int __Pyx_dict_iter_next(PyObject* dict_or_iter, Py_ssize_t orig_length, Py_ssize_t* ppos,
279 static CYTHON_INLINE int __Pyx_dict_iter_next(PyObject* iter_obj, Py_ssize_t orig_length, Py_ssize_t* ppos, argument
289 if (unlikely(!PyDict_Next(iter_obj, ppos, &key, &value))) {
314 Py_ssize_t pos = *ppos;
316 *ppos = pos + 1;
320 Py_ssize_t pos = *ppos;
322 *ppos = pos + 1;
/external/chromium_org/third_party/icu/source/i18n/
H A Dtridpars.cpp273 ParsePosition ppos(pos);
275 filter = new UnicodeSet(id, ppos, USET_IGNORE_SPACE, NULL, ec);
288 id.extractBetween(pos, ppos.getIndex(), pattern);
289 pos = ppos.getIndex();
723 ParsePosition ppos(pos);
725 UnicodeSet set(id, ppos, USET_IGNORE_SPACE, NULL, ec);
730 id.extractBetween(pos, ppos.getIndex(), filter);
731 pos = ppos.getIndex();
/external/icu/icu4c/source/i18n/
H A Dtridpars.cpp273 ParsePosition ppos(pos);
275 filter = new UnicodeSet(id, ppos, USET_IGNORE_SPACE, NULL, ec);
288 id.extractBetween(pos, ppos.getIndex(), pattern);
289 pos = ppos.getIndex();
723 ParsePosition ppos(pos);
725 UnicodeSet set(id, ppos, USET_IGNORE_SPACE, NULL, ec);
730 id.extractBetween(pos, ppos.getIndex(), filter);
731 pos = ppos.getIndex();
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddtfmapts.cpp289 ParsePosition ppos; local
317 sdf.parse(str, ppos);
352 fmt.parse(str, obj, ppos);
372 fmt.parse(str, obj, ppos);
H A Ddtfmttst.cpp3294 ParsePosition ppos; local
3330 ppos.setErrorIndex(-1);
3331 ppos.setIndex(0);
3335 formatters[i]->parse(refStr, *calendars[i], ppos);
3343 ppos.setErrorIndex(-1);
3344 ppos.setIndex(0);
3348 formatters[i]->parse(refStr, *calendars[j], ppos);
3953 ParsePosition ppos(0);
3960 dmft->parse(result, *rootChineseCalendar, ppos);
3965 if ( ppos
[all...]
H A Dnumfmtst.cpp172 ParsePosition ppos; local
173 LocalPointer<CurrencyAmount> currAmt(test->parseCurrency("",ppos));
175 if (ppos.getIndex()) {
2666 ParsePosition ppos; local
2668 LocalPointer<CurrencyAmount> currencyAmount(fmt.parseCurrency(utext, ppos));
2669 if (!ppos.getIndex()) {
7129 ParsePosition ppos; local
7132 test->parse(value, af, ppos);
7133 if (ppos.getIndex() == 0) {
7145 ParsePosition ppos; local
7270 ParsePosition ppos; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddtfmapts.cpp289 ParsePosition ppos; local
317 sdf.parse(str, ppos);
352 fmt.parse(str, obj, ppos);
372 fmt.parse(str, obj, ppos);
H A Ddtfmttst.cpp3297 ParsePosition ppos; local
3333 ppos.setErrorIndex(-1);
3334 ppos.setIndex(0);
3338 formatters[i]->parse(refStr, *calendars[i], ppos);
3346 ppos.setErrorIndex(-1);
3347 ppos.setIndex(0);
3351 formatters[i]->parse(refStr, *calendars[j], ppos);
3956 ParsePosition ppos(0);
3963 dmft->parse(result, *rootChineseCalendar, ppos);
3968 if ( ppos
[all...]
/external/jhead/
H A Djhead.c605 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, nu
[all...]
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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_8/hostapd/src/eap_peer/
H A Dikev2.c203 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/hostapd/src/eap_server/
H A Dikev2.c213 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) {
/external/wpa_supplicant_8/src/eap_peer/
H A Dikev2.c203 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/
H A Dikev2.c213 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) {
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Dikev2.c203 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/wpa_supplicant/src/eap_server/
H A Dikev2.c213 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) {
/external/oprofile/module/
H A Doprofile.c206 static ssize_t oprof_note_read(char * buf, size_t count, loff_t * ppos) argument
214 if (*ppos || count != max)
305 static ssize_t oprof_read(struct file * file, char * buf, size_t count, loff_t * ppos) argument
313 case 2: return oprof_note_read(buf, count, ppos);
320 if (*ppos || count != max)
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Ddict.pxd102 int PyDict_Next(object p, Py_ssize_t *ppos, PyObject* *pkey, PyObject* *pvalue)
104 # referred to by ppos must be initialized to 0 prior to the first
110 # returned through them are borrowed. ppos should not be altered
/external/chromium_org/net/server/
H A Dhttp_server.cc377 size_t* ppos) {
378 size_t& pos = *ppos;
374 ParseHeaders(const char* data, size_t data_len, HttpServerRequestInfo* info, size_t* ppos) argument
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dperf_event.h714 loff_t *ppos);
717 loff_t *ppos);

Completed in 2413 milliseconds

12