HomeSort by relevance Sort by last modified time
    Searched defs:skip (Results 226 - 250 of 1537) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/crypto/
tls_internal.c 401 int ret = -1, skip = 0; local
406 skip = tls_get_keyblock_size(conn);
407 if (skip < 0)
409 tmp_out = os_malloc(skip + out_len);
419 _out, skip + out_len);
426 _out, skip + out_len);
430 os_memcpy(out, _out + skip, out_len);
431 bin_clear_free(tmp_out, skip);
  /external/zlib/src/examples/
gzappend.c 201 /* skip over n bytes of in */
202 local void skip(file *in, unsigned n) function
234 /* skip over gzip header */
244 skip(in, 6);
248 skip(in, n);
252 if (flags & 2) skip(in, 2);
277 /* skip gzip header */
  /external/zlib/src/
gzguts.h 194 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon44878
  /frameworks/base/core/java/android/content/res/
AssetFileDescriptor.java 206 super.skip(fd.getStartOffset());
243 public long skip(long count) throws IOException { method in class:AssetFileDescriptor.AutoCloseInputStream
247 long res = super.skip(count);
252 return super.skip(count);
FontResourcesParser.java 151 skip(parser);
168 skip(parser);
202 skip(parser);
226 skip(parser);
234 private static void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:FontResourcesParser
  /frameworks/base/core/java/android/os/
MemoryFile.java 301 public long skip(long n) throws IOException { method in class:MemoryFile.MemoryInputStream
  /frameworks/base/graphics/java/android/graphics/
FontListParser.java 65 skip(parser);
85 skip(parser);
123 skip(parser);
135 skip(parser); // axis tag is empty, ignore any contents and consume end tag
150 skip(parser); // alias tag is empty, ignore any contents and consume end tag
154 private static void skip(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:FontListParser
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SerializedFrame.java 153 public final long skip(long n) { method in class:SerializedFrame.DirectByteInputStream
  /frameworks/base/tools/incident_section_gen/
main.cpp 453 bool skip[fieldsInOrder.size()]; local
462 skip[i] = true;
475 skip[i] = false;
484 if (skip[i]) continue;
493 if (!skip[i]) policyCount++;
503 if (skip[i]) continue;
  /hardware/qcom/display/msm8996/sdm/include/core/
layer_stack.h 125 uint32_t skip : 1; //!< This flag shall be set by client to indicate that this layer member in struct:sdm::LayerFlags::__anon50091::__anon50092
165 //!< stack contains skip layers.
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterReaderTest.java 72 public long skip(long count) throws IOException { method in class:OldFilterReaderTest.MockReader
158 fr.skip(10);
159 assertTrue("skip(long) has not been called.", called);
  /libcore/ojluni/src/main/java/java/io/
BufferedReader.java 83 /** If the next character is a line feed, skip it */
346 /* Skip a leftover '\n', if necessary */
406 * @param n The number of characters to skip
413 public long skip(long n) throws IOException { method in class:BufferedReader
415 throw new IllegalArgumentException("skip value is negative");
459 * is a newline character, then just skip it right away.
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeWalker.java 97 void skip() { method in class:FileTreeWalker.DirectoryNode
402 stack.peek().skip();
  /libcore/ojluni/src/main/java/java/util/stream/
DoubleStream.java 261 * While {@code skip()} is generally a cheap operation on sequential
263 * especially for large values of {@code n}, since {@code skip(n)}
264 * is constrained to skip not just any <em>n</em> elements, but the
268 * speedups of {@code skip()} in parallel pipelines, if the semantics of
271 * {@code skip()} in parallel pipelines, switching to sequential execution
274 * @param n the number of leading elements to skip
278 DoubleStream skip(long n); method in interface:DoubleStream
    [all...]
IntStream.java 256 * While {@code skip()} is generally a cheap operation on sequential
258 * especially for large values of {@code n}, since {@code skip(n)}
259 * is constrained to skip not just any <em>n</em> elements, but the
263 * speedups of {@code skip()} in parallel pipelines, if the semantics of
266 * {@code skip()} in parallel pipelines, switching to sequential execution
269 * @param n the number of leading elements to skip
273 IntStream skip(long n); method in interface:IntStream
    [all...]
LongStream.java 260 * While {@code skip()} is generally a cheap operation on sequential
262 * especially for large values of {@code n}, since {@code skip(n)}
263 * is constrained to skip not just any <em>n</em> elements, but the
267 * speedups of {@code skip()} in parallel pipelines, if the semantics of
270 * {@code skip()} in parallel pipelines, switching to sequential execution
273 * @param n the number of leading elements to skip
277 LongStream skip(long n); method in interface:LongStream
    [all...]
Stream.java 459 * While {@code skip()} is generally a cheap operation on sequential
461 * especially for large values of {@code n}, since {@code skip(n)}
462 * is constrained to skip not just any <em>n</em> elements, but the
466 * speedups of {@code skip()} in parallel pipelines, if the semantics of
469 * {@code skip()} in parallel pipelines, switching to sequential execution
472 * @param n the number of leading elements to skip
476 Stream<T> skip(long n); method in interface:Stream
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipInputStream.java 242 * @param n the number of bytes to skip
248 public long skip(long n) throws IOException { method in class:ZipInputStream
250 throw new IllegalArgumentException("negative skip length");
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
CachedInputStream.java 213 public long skip(long byteCount) throws IOException { method in class:CachedInputStream
218 return in.skip(byteCount);
245 totalSkip += in.skip(byteCount);
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 288 int32_t skip = 0; local
289 // Read with null buffer to skip
290 skip = r_ptr->read(NULL, 0, bytes);
291 return skip;
366 jmethodID cachedSkipFun = env->GetMethodID(inCls, "skip", "(J)J");
368 LOGE("Unable to find skip function in class 'InputStream'");
  /system/core/logd/
LogAudit.cpp 209 bool skip = false; local
214 skip = avcr &&
216 if (skip) {
223 if (!skip) {
  /toolchain/binutils/binutils-2.27/bfd/
stabs.c 163 bfd_size_type stroff, next_stroff, skip;
241 skip = 0;
269 ++skip;
351 /* Skip the file number. */
430 ++skip;
443 ++skip;
462 stabsec->size = (count - skip) * STABSIZE;
471 if (skip != 0)
523 bfd_size_type skip;
557 skip = 0
161 bfd_size_type stroff, next_stroff, skip; local
520 bfd_size_type skip; local
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldfile.c 202 int token, skip = 0; local
257 skip = 1;
280 if (skip)
325 any successfully-opened input file. We skip archives
  /toolchain/binutils/binutils-2.27/zlib/examples/
gzappend.c 201 /* skip over n bytes of in */
202 local void skip(file *in, unsigned n) function
234 /* skip over gzip header */
244 skip(in, 6);
248 skip(in, n);
252 if (flags & 2) skip(in, 2);
277 /* skip gzip header */
  /toolchain/binutils/binutils-2.27/zlib/
gzguts.h 185 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon5141

Completed in 1320 milliseconds

1 2 3 4 5 6 7 8 91011>>