HomeSort by relevance Sort by last modified time
    Searched defs:avail (Results 101 - 125 of 169) sorted by null

1 2 3 45 6 7

  /external/skqp/src/core/
SkStream.cpp 462 size_t avail() const { return fStop - fCurr; } function in struct:SkDynamicMemoryWStream::Block
527 if (fTail->avail() > 0) {
528 size = SkTMin(fTail->avail(), count);
  /external/skqp/third_party/gif/
SkGifImageReader.h 98 , avail(0)
121 int avail; // Index of next available slot in dictionary. member in class:final
  /external/tinyalsa/
pcm.c 450 int pcm_get_htimestamp(struct pcm *pcm, unsigned int *avail,
483 *avail = (unsigned int)frames;
1088 int avail; local
1090 avail = pcm->mmap_status->hw_ptr + pcm->buffer_size - pcm->mmap_control->appl_ptr;
1092 if (avail < 0)
1093 avail += pcm->boundary;
1094 else if (avail > (int)pcm->boundary)
1095 avail -= pcm->boundary;
1097 return avail;
1102 int avail = pcm->mmap_status->hw_ptr - pcm->mmap_control->appl_ptr local
1131 unsigned int continuous, copy_frames, avail; local
1236 int err = 0, frames, avail; local
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
GenericSource2.cpp 609 int32_t avail; local
610 if (packets->hasBufferAvailable(&avail)) {
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 743 int32_t avail; local
744 if (packets->hasBufferAvailable(&avail)) {
    [all...]
  /bionic/libc/dns/resolv/
res_cache.c 227 int avail = end - p; local
229 if (avail <= 0 || len <= 0)
232 if (avail > len)
233 avail = len;
235 memcpy( p, buf, avail );
236 p += avail;
257 int avail, n; local
260 avail = end - p;
262 if (avail <= 0)
266 n = vsnprintf( p, avail, format, args)
301 int avail = datalen; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bufferedio.c 1091 Py_off_t current, avail; local
1099 avail = READAHEAD(self);
1100 if (avail > 0) {
1106 if (offset >= -self->pos && offset <= avail) {
1108 return PyLong_FromOff_t(current - avail + offset);
1812 Py_ssize_t written, avail, remaining; local
    [all...]
textio.c 1349 Py_ssize_t avail; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 478 Py_ssize_t avail, needed; local
517 avail = hi - lo;
518 if (avail < 0)
519 lo = hi = avail = 0;
521 if (avail != needed) {
522 if (avail > needed) {
529 | |<----avail----->|<-----tomove------>|
538 Py_SIZE(self) + needed - avail) < 0) {
542 if (avail < needed) {
545 | |<-avail->|<-----tomove------>|
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bufferedio.c 1064 Py_off_t current, avail; local
1072 avail = READAHEAD(self);
1073 if (avail > 0) {
1079 if (offset >= -self->pos && offset <= avail) {
1081 return PyLong_FromOff_t(current - avail + offset);
1786 Py_ssize_t written, avail, remaining; local
    [all...]
textio.c 1326 Py_ssize_t avail; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 478 Py_ssize_t avail, needed; local
517 avail = hi - lo;
518 if (avail < 0)
519 lo = hi = avail = 0;
521 if (avail != needed) {
522 if (avail > needed) {
529 | |<----avail----->|<-----tomove------>|
538 Py_SIZE(self) + needed - avail) < 0) {
542 if (avail < needed) {
545 | |<-avail->|<-----tomove------>|
    [all...]
  /external/curl/lib/
http.c 351 unsigned long avail = pick->avail & pick->want & mask; local
356 if(avail & CURLAUTH_NEGOTIATE)
358 else if(avail & CURLAUTH_BEARER)
360 else if(avail & CURLAUTH_DIGEST)
362 else if(avail & CURLAUTH_NTLM)
364 else if(avail & CURLAUTH_NTLM_WB)
366 else if(avail & CURLAUTH_BASIC)
372 pick->avail = CURLAUTH_NONE; /* clear it here */
852 if((authp->avail & CURLAUTH_NEGOTIATE) |
    [all...]
url.c 854 int avail = 0; local
865 avail |= CURLPIPE_HTTP1;
870 avail |= CURLPIPE_MULTIPLEX;
872 return avail;
    [all...]
  /external/harfbuzz_ng/src/
hb-cff-interp-common.hh 380 bool avail (unsigned int count=1) const function in struct:CFF::SubByteStr
552 if (unlikely (!substr.avail (4)))
653 if (unlikely (!substr.avail ()))
657 if (unlikely (!substr.avail ()))
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberRegressionTests.java 1541 Locale[] avail = NumberFormat.getAvailableLocales(); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
numrgts.cpp 2421 const Locale* avail = NumberFormat::getAvailableLocales(n); local
    [all...]
tzrulets.cpp 841 UBool avail = tz->getNextTransition(startTime, FALSE, trans); local
842 if (avail) {
931 UBool avail = tz->getNextTransition(startTime, FALSE, trans); local
2168 UBool avail = stz.getNextTransition(t, FALSE, tzt); local
2338 UBool avail; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberRegressionTests.java 1538 Locale[] avail = NumberFormat.getAvailableLocales(); local
    [all...]
  /external/libevent/
buffer.c 2043 size_t avail; local
2236 size_t avail = (size_t) CHAIN_SPACE_LEN(chain); local
    [all...]
  /external/libpng/contrib/libtests/
pngimage.c 817 size_t avail; local
844 avail = (sizeof last->buffer) - read_count;
845 if (avail > size)
846 avail = size;
848 memcpy(data, last->buffer + read_count, avail);
849 read_count += avail;
850 size -= avail;
851 data += avail;
1281 size_t avail; local
    [all...]
  /external/libpng/
pngrutil.c 517 uInt avail; local
530 avail = ZLIB_IO_MAX;
532 if (avail_in < avail)
533 avail = (uInt)avail_in; /* safe: < than ZLIB_IO_MAX */
535 avail_in -= avail;
536 png_ptr->zstream.avail_in = avail;
541 avail = ZLIB_IO_MAX; /* maximum zlib can process */
549 if ((sizeof local_buffer) < avail)
550 avail = (sizeof local_buffer);
553 if (avail_out < avail)
803 uInt avail = ZLIB_IO_MAX; local
    [all...]
  /external/libxml2/
xmlIO.c 1999 int avail; local
    [all...]
  /external/openssh/
sshconnect2.c 106 char *oavail, *avail, *first, *last, *alg, *hostname, *ret; local
120 oavail = avail = xstrdup(KEX_DEFAULT_PK_ALG);
121 maxlen = strlen(avail) + 1;
133 while ((alg = strsep(&avail, ",")) && *alg != '\0') {
    [all...]
  /external/pdfium/third_party/libpng16/
pngrutil.c 508 uInt avail; local
521 avail = ZLIB_IO_MAX;
523 if (avail_in < avail)
524 avail = (uInt)avail_in; /* safe: < than ZLIB_IO_MAX */
526 avail_in -= avail;
527 png_ptr->zstream.avail_in = avail;
532 avail = ZLIB_IO_MAX; /* maximum zlib can process */
540 if ((sizeof local_buffer) < avail)
541 avail = (sizeof local_buffer);
544 if (avail_out < avail)
793 uInt avail = ZLIB_IO_MAX; local
    [all...]

Completed in 1721 milliseconds

1 2 3 45 6 7