Searched refs:skip (Results 176 - 200 of 362) sorted by relevance

1234567891011>>

/external/bluetooth/glib/gio/
H A Dglocalfileinputstream.c100 stream_class->skip = g_local_file_input_stream_skip;
/external/bluetooth/glib/glib/
H A Dgutf8.c1831 gchar *m, skip = g_utf8_skip[*(guchar*) p]; local
1832 r -= skip;
1833 for (m = r; skip; skip--)
/external/bluetooth/glib/gobject/
H A Dglib-mkenums.in56 # skip empty lines
110 if (!defined $options{skip}) {
285 next if defined $options{skip};
/external/clang/tools/scan-build/
H A Dscan-build1066 my $skip = 0;
1069 $skip = 1;
1072 if ($skip) {
1074 $skip = 0;
/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java405 * @param n the number of characters to skip
412 long amt = reader.skip(n);
H A DByteStreams.java579 // We skip only Integer.MAX_VALUE due to JDK overflow bugs.
580 long amt = in.skip(Integer.MAX_VALUE);
672 * @param n the number of bytes to skip
680 long amt = in.skip(n);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
H A DMTLLoader.java100 scan.skip(".*\r{0,1}\n");
200 // skip entire comment until next line
/external/libvpx/vp8/common/arm/neon/
H A Dbilinearpredict8x8_neon.asm32 cmp r2, #0 ;skip first_pass filter if xoffset=0
99 cmp r3, #0 ;skip second_pass filter if yoffset=0
/external/libvpx/vp8/encoder/arm/neon/
H A Dvp8_subpixelvariance8x8_neon.asm35 cmp r2, #0 ;skip first_pass filter if xoffset=0
102 cmp r3, #0 ;skip second_pass filter if yoffset=0
/external/libvpx/vp8/encoder/x86/
H A Dvariance_impl_ssse3.asm49 cmp rax, 0 ; skip first_pass filter if xoffset=0
57 cmp rdx, 0 ; skip second_pass filter if yoffset=0
/external/llvm/utils/yaml-bench/
H A DYAMLBench.cpp149 stream.skip();
/external/openssl/crypto/sha/asm/
H A Dsha1-s390x.pl159 .skip 48 #.long 0,0,0,0,0,0,0,0,0,0,0,0
/external/oprofile/module/ia64/
H A DIA64syscallstub.h19 .skip 8; \
/external/quake/quake/src/QW/client/
H A Dsbar.c1004 int skip = 10; local
1007 skip = 8;
1088 y += skip;
1142 y += skip;
/external/skia/include/core/
H A DSkStream.h29 /** Called to read or skip size number of bytes.
30 If buffer is NULL and size > 0, skip that many bytes, returning how many were skipped.
33 @param buffer If buffer is NULL, ignore and just skip size bytes, otherwise copy size bytes into buffer
34 @param size The number of bytes to skip or copy
46 size_t skip(size_t bytes);
/external/skia/src/core/
H A DSkWriter32.cpp208 // skip over teh string + '\0' and then pad to a multiple of 4
210 this->skip(alignedSize);
239 // number of bytes. That's ok, since the reader will know to skip those
/external/valgrind/main/perf/
H A Dtinycc.c2898 DEF_ASM(skip)
4230 DEF_ASM(skip)
7122 void skip(int c)
7602 /* skip the stray and handle the \\n case. Output an error if
7703 /* fast skip loop */
7731 /* skip '\[\r]\n', otherwise just skip the stray */
7803 /* escape : just skip \[\r]\n */
7847 /* skip block of text until #else, #elif or #endif. skip als
7120 void skip(int c) function
[all...]
/external/ipsec-tools/src/racoon/
H A Disakmp_xauth.c1383 size_t skip = 0; local
1432 skip = sizeof(struct ipsecdoi_id_b);
1433 usr = vmalloc(iph1->rmconf->xauth->login->l - 1 + skip);
1439 memset(usr->v, 0, skip);
1440 memcpy(usr->v + skip,
/external/openssl/ssl/
H A Dd1_clnt.c153 int new_state,state,skip=0; local
401 skip = 1;
407 skip=1;
735 if (!s->s3->tmp.reuse_message && !skip)
751 skip=0;
1258 * to skip sending the certificate verify
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrutil.c104 /* Optionally skip data and then check the CRC. Depending on whether we
109 png_crc_finish(png_structp png_ptr, png_uint_32 skip) argument
114 for (i = (png_size_t)skip; i > istop; i -= istop)
994 png_uint_32 skip = 0; local
1023 skip = length - (png_uint_32)65535L;
1032 if (png_crc_finish(png_ptr, skip))
1111 png_uint_32 skip = 0; local
1129 skip = length - (png_uint_32)65535L;
1138 if (png_crc_finish(png_ptr, skip))
1749 ep = buffer + 1; /* skip uni
1876 png_uint_32 skip = 0; local
2168 png_uint_32 skip = 0; local
[all...]
/external/openssh/
H A Dsshconnect2.c1202 u_int skip = 0; local
1220 skip = session_id2_len;
1223 skip = buffer_len(&b);
1254 skip = session_id2_len;
1270 /* skip session id and packet type */
1271 if (buffer_len(&b) < skip + 1)
1273 buffer_consume(&b, skip + 1);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb763 skip
817 skip
/external/guava/guava/src/com/google/common/collect/
H A DIterables.java860 * {@code Iterator} is created, not when {@code skip()} is called.
871 public static <T> Iterable<T> skip(final Iterable<T> iterable, method in class:Iterables
874 checkArgument(numberToSkip >= 0, "number to skip cannot be negative");
894 Iterators.skip(iterator, numberToSkip);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java818 * {@code Iterator} is created, not when {@code skip()} is called.
829 public static <T> Iterable<T> skip(final Iterable<T> iterable, method in class:Iterables
832 checkArgument(numberToSkip >= 0, "number to skip cannot be negative");
852 Iterators.skip(iterator, numberToSkip);
/external/llvm/utils/vim/
H A Dllvm.vim73 syn region llvmString start=/"/ skip=/\\"/ end=/"/

Completed in 1605 milliseconds

1234567891011>>