Searched defs:skip (Results 1 - 25 of 67) sorted by relevance

123

/external/skia/src/core/
H A DSkBuffer.cpp30 const void* SkRBuffer::skip(size_t size) function in class:SkRBuffer
45 void* SkWBuffer::skip(size_t size) function in class:SkWBuffer
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Drc4.c23 * rc4 - XOR RC4 stream to given data with skip-stream-start
26 * @skip: number of bytes to skip from the beginning of the RC4 stream
30 * Generate RC4 pseudo random stream for the given key, skip beginning of the
34 void rc4_skip(const u8 *key, size_t keylen, size_t skip, argument
56 for (k = 0; k < skip; k++) {
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthInputStream.java193 * @param n The number of bytes to skip.
197 * @see InputStream#skip(long)
199 public long skip(long n) throws IOException { method in class:ContentLengthInputStream
204 // make sure we don't skip more bytes than are
207 // skip and keep track of the bytes actually skipped
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java84 public final long skip (long n) method in class:ByteArrayIStream
/external/guava/src/com/google/common/io/
H A DCountingInputStream.java64 @Override public long skip(long n) throws IOException { method in class:CountingInputStream
65 long result = in.skip(n);
H A DLimitInputStream.java96 @Override public long skip(long n) throws IOException { method in class:LimitInputStream
98 long skipped = in.skip(n);
H A DMultiInputStream.java102 @Override public long skip(long n) throws IOException { method in class:MultiInputStream
106 long result = in.skip(n);
113 return 1 + in.skip(n - 1);
H A DMultiReader.java63 @Override public long skip(long n) throws IOException { method in class:MultiReader
67 long result = current.skip(n);
/external/wpa_supplicant/
H A Drc4.c23 * rc4 - XOR RC4 stream to given data with skip-stream-start
26 * @skip: number of bytes to skip from the beginning of the RC4 stream
30 * Generate RC4 pseudo random stream for the given key, skip beginning of the
34 void rc4_skip(const u8 *key, size_t keylen, size_t skip, argument
56 for (k = 0; k < skip; k++) {
/external/bluetooth/glib/gio/
H A Dginputstream.h68 gssize (* skip) (GInputStream *stream, member in struct:_GInputStreamClass
/external/proguard/src/proguard/io/
H A DManifestRewriter.java141 public long skip(long n) throws IOException method in class:ManifestRewriter.SplitLineReader
/external/bluetooth/glib/tests/
H A Dunicode-normalize.c117 gboolean skip = FALSE; local
123 skip = TRUE;
126 if (!skip)
/external/ppp/pppd/include/
H A Dpcap-int.h63 int skip; member in struct:pcap_md
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbmatrox.c129 int skip; local
169 /* Set up the blit source row start, end, and skip (in pixels) */
177 skip = -pitch;
179 skip = pitch;
209 mga_out32(MGAREG_AR5, skip);
/external/skia/include/core/
H A DSkReader32.h73 return (const SkPoint*)this->skip(sizeof(SkPoint));
77 return (const SkRect*)this->skip(sizeof(SkRect));
80 const void* skip(size_t size) { function in class:SkReader32
/external/skia/tests/
H A DPackBitsTest.cpp108 size_t skip = gRand.nextU() % size; local
110 if (skip + write > size) {
111 write = size - skip;
113 SkPackBits::Unpack8(src, skip, write, dst);
114 bool match = memcmp(src, src2 + skip, write) == 0;
/external/webkit/WebCore/platform/graphics/chromium/
H A DVDMXParser.cpp51 bool skip(size_t numBytes) function in class:Buffer
129 if (!buf.skip(4) || !buf.readU16(&numRatios))
146 if (!buf.skip(1)
174 if (!buf.readU16(&numRecords) || !buf.skip(sizeof(uint16_t)))
196 if (!buf.skip(2 * sizeof(int16_t)))
/external/zlib/examples/
H A Dgzjoin.c155 /* skip bytes in file */
156 local void bskip(bin *in, unsigned skip) argument
162 /* easy case -- skip bytes in buffer */
163 if (skip <= in->left) {
164 in->left -= skip;
165 in->next += skip;
169 /* skip what's in buffer, discard buffer contents */
170 skip -= in->left;
174 if (skip > CHUNK) {
177 left = skip
[all...]
H A Dzran.c247 int ret, skip; local
285 /* skip uncompressed bytes until offset reached, then satisfy request */
288 skip = 1; /* while skipping to offset */
291 if (offset == 0 && skip) { /* at offset now */
294 skip = 0; /* only do this once */
296 if (offset > WINSIZE) { /* skip WINSIZE bytes */
301 else if (offset != 0) { /* last skip */
335 } while (skip);
338 ret = skip ? 0 : len - strm.avail_out;
H A Dgzappend.c199 /* skip over n bytes of in */
200 local void skip(file *in, unsigned n) function
232 /* skip over gzip header */
242 skip(in, 6);
246 skip(in, n);
250 if (flags & 2) skip(in, 2);
275 /* skip gzip header */
/external/dnsmasq/src/
H A Ddbus.c116 int skip = 0; local
139 skip = 1;
164 skip = 0;
181 if (!skip)
/external/openssl/ssl/
H A Dd1_clnt.c150 int new_state,state,skip=0;; local
312 skip = 1;
318 skip=1;
566 if (!s->s3->tmp.reuse_message && !skip)
582 skip=0;
H A Dd1_srvr.c150 int new_state,state,skip=0; local
338 skip = 1;
344 skip=1;
388 skip=1;
413 skip=1;
629 if (!s->s3->tmp.reuse_message && !skip)
646 skip=0;
/external/zlib/contrib/minizip/
H A Dminiunz.c292 int skip=0; local
332 skip = 1;
338 if ((skip==0) && (err==UNZ_OK))
/external/clearsilver/util/
H A Dskiplist.c291 if((y->key == *pkey) && (y != list->tail)) /* skip to next if found y */
358 NEOERR *skipNewList(skipList *skip, int threaded, int root, int maxLevel, argument
365 *skip = NULL;
420 *skip = list;

Completed in 205 milliseconds

123