HomeSort by relevance Sort by last modified time
    Searched refs:skip (Results 176 - 200 of 361) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptor_AutoCloseInputStreamTest.java 109 method = "skip",
140 assertEquals(5, inputStream.skip(5));
  /external/bluetooth/glib/gio/
ginputstream.h 68 gssize (* skip) (GInputStream *stream, member in struct:_GInputStreamClass
ginputstream.c 42 * to close a stream (g_input_stream_close()) and to skip some content
128 klass->skip = g_input_stream_real_skip;
291 * Tries to skip @count bytes from the stream. Will block during the operation.
337 res = class->skip (stream, count, cancellable, error);
635 * Request an asynchronous skip of @count bytes from the stream into the buffer
647 * can happen e.g. near the end of a file, but generally we try to skip
720 * Finishes a stream skip operation.
741 /* Special case skip of 0 bytes */
1021 op->count_skipped = class->skip (G_INPUT_STREAM (object),
    [all...]
  /external/grub/stage2/
iso9660.h 141 u_int8_t skip; member in struct:rock_ridge::__anon3815::SP
  /external/iproute2/lib/
ll_types.c 87 __PF(SKIP,skip)
  /external/libvpx/vp8/common/arm/neon/
bilinearpredict4x4_neon.asm 32 cmp r2, #0 ;skip first_pass filter if xoffset=0
71 cmp r3, #0 ;skip second_pass filter if yoffset=0
bilinearpredict8x4_neon.asm 32 cmp r2, #0 ;skip first_pass filter if xoffset=0
73 cmp r3, #0 ;skip second_pass filter if yoffset=0
  /external/skia/include/core/
SkStream.h 34 /** Called to read or skip size number of bytes.
35 If buffer is NULL and size > 0, skip that many bytes, returning how many were skipped.
38 @param buffer If buffer is NULL, ignore and just skip size bytes, otherwise copy size bytes into buffer
39 @param size The number of bytes to skip or copy
48 /** Skip the specified number of bytes, returning the actual number
51 size_t skip(size_t bytes);
  /frameworks/base/media/libstagefright/mpeg2ts/
ATSParser.cpp 119 unsigned skip = br->getBits(8); local
120 br->skipBits(skip * 8);
175 br->skipBits(program_info_length * 8); // skip descriptors
202 br->skipBits(ES_info_length * 8); // skip descriptors
608 unsigned skip = br->getBits(8); local
609 br->skipBits(skip * 8);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHello.java 117 in.skip(length - this.length);
  /libcore/luni/src/test/java/tests/SQLite/
BlobTest.java 146 is.skip(96);
  /external/openssl/crypto/bn/asm/
armv4-mont.s 138 add sp,r0,#4 @ skip over tp[num+1]
140 add sp,sp,#2*4 @ skip over {r0,r2}
  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 127 skip(Long.MAX_VALUE);
356 * the number of bytes to skip.
362 public long skip(long value) throws IOException { method in class:ZipInputStream
  /libcore/luni/src/test/java/tests/api/java/io/
FilterInputStreamTest.java 258 is.skip(10);
394 * @tests java.io.FilterInputStream#skip(long)
398 method = "skip",
403 is.skip(10);
405 assertTrue("Test 1: Failed to skip to the correct position.",
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
cgraph.h 157 PTR GTY ((skip)) aux;
211 PTR GTY ((skip (""))) aux;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
cgraph.h 157 PTR GTY ((skip)) aux;
213 PTR GTY ((skip (""))) aux;
  /external/libvpx/vp8/encoder/
pickinter.c 514 x->skip = 0;
804 x->skip = 1;
808 // Check u and v to make sure skip is ok
814 x->skip = 1;
816 x->skip = 0;
827 if (this_rd < best_rd || x->skip)
864 if (x->skip)
  /external/webkit/WebCore/svg/
SVGParserUtilities.cpp 55 template <typename FloatType> static bool _parseNumber(const UChar*& ptr, const UChar* end, FloatType& number, bool skip)
126 if (skip)
132 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip)
134 return _parseNumber(ptr, end, number, skip);
138 static bool parseNumber(const UChar*& ptr, const UChar* end, double& number, bool skip = true)
140 return _parseNumber(ptr, end, number, skip);
236 if (!skipOptionalSpaces(ptr, end)) // skip any leading spaces
245 skipOptionalSpaces(ptr, end); // skip spaces between command and first coord
  /external/openssl/ssl/
d1_srvr.c 152 int new_state,state,skip=0; local
341 skip = 1;
347 skip=1;
397 skip=1;
425 skip=1;
656 if (!s->s3->tmp.reuse_message && !skip)
673 skip=0;
    [all...]
  /hardware/ril/reference-ril/
reference-ril.c 722 int skip; local
782 err = at_tok_nextint(&line, &skip);
800 err = at_tok_nextint(&line, &skip);
813 err = at_tok_nextint(&line, &skip);
850 int skip; local
879 err = at_tok_nextint(&line, &skip);
889 err = at_tok_nextint(&line, &skip);
    [all...]
  /external/skia/src/core/
SkBlitter.cpp 426 ((uint8_t*)aa)[index] = 0; // skip runs after right
438 int skip = runs[0]; local
439 SkASSERT(skip >= -x);
440 aa += skip;
441 runs += skip;
442 x += skip;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_rt.c 405 /* for each rate, reset skip count as well as tn0 */
410 me->dRate[i].skip = 0;
537 me->dRate[i].skip = me->needSteadyState ? 0 : 4;
544 if (me->dRate[i].skip == 0)
602 me->dRate[i].skip--;
603 if (me->dRate[i].skip == 0)
    [all...]
  /external/clearsilver/util/
skiplist.c 291 if((y->key == *pkey) && (y != list->tail)) /* skip to next if found y */
358 NEOERR *skipNewList(skipList *skip, int threaded, int root, int maxLevel,
365 *skip = NULL;
420 *skip = list;
  /external/libpng/
pngpread.c 576 png_push_crc_skip(png_structp png_ptr, png_uint_32 skip)
579 png_ptr->skip_length = skip;
891 /* Skip the check on unprocessed input */
908 /* Do no more processing; skip the unprocessed
1012 if (png_ptr->pass == 2) /* Skip top 4 generated rows */
1062 if (png_ptr->pass == 4) /* Skip top two generated rows */
1109 if (png_ptr->pass == 6) /* Skip top generated row */
1632 png_uint_32 skip = 0; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngpread.c 507 png_push_crc_skip(png_structp png_ptr, png_uint_32 skip)
510 png_ptr->skip_length = skip;
881 if (png_ptr->pass == 2) /* skip top 4 generated rows */
922 if (png_ptr->pass == 4) /* skip top two generated rows */
960 if (png_ptr->pass == 6) /* skip top generated row */
1465 png_uint_32 skip=0; local
    [all...]

Completed in 673 milliseconds

1 2 3 4 5 6 78 91011>>