Searched refs:Skip (Results 1 - 25 of 243) sorted by last modified time

12345678910

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlpc_masking_model_neon.S80 bvc MOV1 @ Skip the shift if there's no overflow.
97 bvc MOV2 @ Skip the shift if there's no overflow.
122 bvc MOV3 @ Skip the shift if there's no overflow.
142 bvc GET_SHIFT_NORM @ Skip the shift if there's no overflow.
/external/webp/src/demux/
H A Ddemux.c135 static WEBP_INLINE void Skip(MemBuffer* const mem, size_t size) { function
150 Skip(mem, 1);
157 Skip(mem, 2);
164 Skip(mem, 3);
171 Skip(mem, 4);
227 Skip(mem, payload_available);
258 Skip(mem, payload_available);
415 Skip(mem, RIFF_HEADER_SIZE);
504 Skip(mem, chunk_size_padded - ANIM_CHUNK_SIZE);
507 goto Skip;
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetCtrls.py447 event.Skip()
H A DJetDialogs.py324 event.Skip()
H A DJetSegGraph.py204 event.Skip()
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc132 int64_t FontInputStream::Skip(int64_t n) { function in class:sfntly::FontInputStream
134 int64_t skipped = stream_->Skip(n);
H A Dfont_input_stream.h86 virtual int64_t Skip(int64_t n); // n can be negative.
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc532 is->Skip((*table_header)->offset() - is->position());
/external/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc108 int64_t FileInputStream::Skip(int64_t n) { function in class:sfntly::FileInputStream
H A Dfile_input_stream.h40 virtual int64_t Skip(int64_t n);
H A Dinput_stream.h38 virtual int64_t Skip(int64_t n) = 0;
H A Dmemory_input_stream.cc102 int64_t MemoryInputStream::Skip(int64_t n) { function in class:sfntly::MemoryInputStream
H A Dmemory_input_stream.h40 virtual int64_t Skip(int64_t n);
/external/sfntly/cpp/src/test/
H A Dfile_io_test.cc57 is.Skip(89);
62 // Skip test
63 is.Skip(-89);
67 is.Skip(100);
70 is.Skip(-400);
118 is.Skip(89);
125 font_is2.Skip(-200);
137 font_is.Skip(TTF_OFFSET[SAMPLE_TTF_FEAT]);
H A Dmemory_io_test.cc63 EXPECT_EQ(is.Skip(30), 30); // position 50
68 EXPECT_EQ(is.Skip(-20), -20); // position 40
73 EXPECT_EQ(is.Skip(-60), -50); // Out of bound, position 0
74 EXPECT_EQ(is.Skip(kTestBufferLen + 10), (int32_t)kTestBufferLen);
/external/skia/
H A Dmake.bat10 rem Skip environment setup on bots.
/external/qemu/distrib/sdl-1.2.15/build-scripts/
H A Dltmain.sh1662 # Skip this library if it cannot be dlopened.
3608 /* Skip over the disk name in MSDOS pathnames. */
5521 # Skip directories that are in the system default run-time
5595 # Skip directories that are in the system default run-time
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc154 bool CodedInputStream::Skip(int count) { function in class:google::protobuf::io::CodedInputStream
179 // We hit the limit. Skip up to it then fail.
182 input_->Skip(bytes_until_limit);
188 return input_->Skip(count);
546 bool CodedOutputStream::Skip(int count) { function in class:google::protobuf::io::CodedOutputStream
H A Dcoded_stream.h163 bool Skip(int count);
169 // this data, it should then call Skip() to skip over the consumed bytes.
590 bool Skip(int count);
596 // writes any data to this buffer, it should then call Skip() to skip over
H A Dcoded_stream_unittest.cc280 // Skip this test for the 64-bit values.
443 // Skip 64-bit values.
654 // Skip
671 EXPECT_TRUE(coded_input.Skip(strlen("<To be skipped>")));
698 // Skip forward in the same buffer then peek again.
699 EXPECT_TRUE(coded_input.Skip(3));
704 // Skip to end of buffer and peek -- should get next buffer.
705 EXPECT_TRUE(coded_input.Skip(5));
727 // Skip forward in the same buffer then peek again.
728 EXPECT_TRUE(coded_input.Skip(
1067 bool Skip(int count) { GOOGLE_LOG(FATAL) << "Not implemented."; return false; } function in class:google::protobuf::io::__anon28987::ReallyBigInputStream
[all...]
H A Dgzip_stream.cc151 bool GzipInputStream::Skip(int count) { function in class:google::protobuf::io::GzipInputStream
H A Dgzip_stream.h87 bool Skip(int count);
H A Dtokenizer_unittest.cc143 bool Skip(int count) { return array_stream_.Skip(count); } function in class:google::protobuf::io::__anon28990::TestInputStream
H A Dzero_copy_stream.h169 virtual bool Skip(int count) = 0;
H A Dzero_copy_stream_impl.cc96 bool FileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream
97 return impl_.Skip(count);
152 int FileInputStream::CopyingFileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
167 return CopyingInputStream::Skip(count);
286 bool IstreamInputStream::Skip(int count) { function in class:google::protobuf::io::IstreamInputStream
287 return impl_.Skip(count);
380 bool ConcatenatingInputStream::Skip(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
383 // skipped when Skip() fails.
385 if (streams_[0]->Skip(count)) return true;
444 bool LimitingInputStream::Skip(in function in class:google::protobuf::io::LimitingInputStream
[all...]

Completed in 175 milliseconds

12345678910