Searched refs:skip (Results 51 - 75 of 659) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/opus/src/celt/
H A Dopus_custom_demo.c60 opus_int32 skip; local
120 opus_custom_decoder_ctl(dec, OPUS_GET_LOOKAHEAD(&skip));
185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout);
186 skip = 0;
/external/chromium_org/third_party/skia/src/core/
H A DSkFontStream.cpp43 static bool skip(SkStream* stream, size_t amount) { function
44 return stream->skip(amount) == amount;
86 if (!skip(stream, offset)) {
123 if (!skip(stream, offsetToDir)) {
196 // skip the stream to the part of the table we want to copy from
199 if (!skip(stream, bytesToSkip)) {
H A DSkReadBuffer.cpp126 memcpy(data, fReader.skip(SkAlign4(*length)), *length);
140 memcpy(rect, fReader.skip(sizeof(SkIRect)), sizeof(SkIRect));
144 memcpy(rect, fReader.skip(sizeof(SkRect)), sizeof(SkRect));
158 (void)fReader.skip(sizeof(uint32_t)); // Skip array count
160 memcpy(value, fReader.skip(SkAlign4(byteLength)), byteLength);
164 fReader.skip(fReader.available());
223 const void* data = this->skip(length);
338 // we must skip the remaining data
339 fReader.skip(sizeRecorded);
345 * Needs to follow the same pattern as readFlattenable(), but explicitly skip whateve
[all...]
/external/libopus/celt/
H A Dopus_custom_demo.c60 opus_int32 skip; local
120 opus_custom_decoder_ctl(dec, OPUS_GET_LOOKAHEAD(&skip));
185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout);
186 skip = 0;
/external/skia/src/core/
H A DSkFontStream.cpp43 static bool skip(SkStream* stream, size_t amount) { function
44 return stream->skip(amount) == amount;
86 if (!skip(stream, offset)) {
123 if (!skip(stream, offsetToDir)) {
196 // skip the stream to the part of the table we want to copy from
199 if (!skip(stream, bytesToSkip)) {
H A DSkReadBuffer.cpp128 memcpy(data, fReader.skip(SkAlign4(*length)), *length);
142 memcpy(rect, fReader.skip(sizeof(SkIRect)), sizeof(SkIRect));
146 memcpy(rect, fReader.skip(sizeof(SkRect)), sizeof(SkRect));
160 (void)fReader.skip(sizeof(uint32_t)); // Skip array count
162 memcpy(value, fReader.skip(SkAlign4(byteLength)), byteLength);
166 fReader.skip(fReader.available());
225 const void* data = this->skip(length);
340 // we must skip the remaining data
341 fReader.skip(sizeRecorded);
347 * Needs to follow the same pattern as readFlattenable(), but explicitly skip whateve
[all...]
/external/skia/src/pipe/
H A DSkGPipeRead.cpp190 const void* data = fReader->skip(SkAlign4(size));
233 template <typename T> const T* skip(SkReader32* reader, size_t count = 1) {
236 return reinterpret_cast<const T*>(reader->skip(size));
241 return reinterpret_cast<const T*>(reader->skip(size));
264 const SkRect* rect = skip<SkRect>(reader);
295 const SkScalar* param = skip<SkScalar>(reader, 2);
301 const SkScalar* param = skip<SkScalar>(reader, 2);
312 const SkScalar* param = skip<SkScalar>(reader, 2);
330 bounds = skip<SkRect>(reader);
366 const SkPoint* pts = skip<SkPoin
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Doct.c84 size_t field_len, i, skip; local
143 skip = field_len - BN_num_bytes(x);
144 if (skip > field_len) {
148 while (skip > 0) {
150 skip--;
152 skip = BN_bn2bin(x, buf + i);
153 i += skip;
161 skip = field_len - BN_num_bytes(y);
162 if (skip > field_len) {
166 while (skip >
[all...]
/external/lldb/examples/python/
H A Ddisasm-stress-test.py11 parser.add_argument('--skip', required=False, action='store', type=int, help='The interval between instructions to test')
66 def __init__(self, byte_width, log_file, start=0, skip=1):
70 self.m_skip = skip
131 skip = 1
134 if args.skip != None:
135 skip = args.skip
136 instruction_provider = SequentialInstructionProvider(args.bytes, log_file, start, skip)
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKey.h74 bool skip = false; local
77 skip = true;
81 if (!skip) {
/external/chromium_org/third_party/re2/benchlog/
H A Dmktable100 sub skip() { subroutine
146 skip();
151 skip();
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dpage_run_unittest.py12 from telemetry.value import skip namespace
41 run.AddValue(skip.SkipValue(self.pages[0], 'test'))
48 run.AddValue(skip.SkipValue(self.pages[0], 'test'))
/external/regex-re2/benchlog/
H A Dmktable100 sub skip() { subroutine
146 skip();
151 skip();
/external/libcxxabi/src/Unwind/
H A DUnwindRegistersRestore.S45 # skip ss
46 # skip eflags
49 # skip cs
50 # skip ds
51 # skip es
52 # skip fs
53 # skip gs
87 # skip rflags
88 # skip cs
89 # skip f
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encodemb.h36 int8_t *skip);
/external/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.cc21 static u32 CurrentStackTrace(Thread *thr, uptr skip) { argument
26 if (trace.size <= skip)
28 return StackDepotPut(trace.trace + skip, trace.size - skip);
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java45 public long skip(long byteCount) { method in class:OpenSSLBIOSink
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dbuiltin-test.c217 const char *skip = NULL; local
219 OPT_STRING('s', "skip", &skip, "tests", "tests to skip"),
237 if (skip != NULL)
238 skiplist = intlist__new(skip);
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dplt.c97 goto skip;
113 goto skip;
188 goto skip;
196 skip:
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DPushObserver.java57 * @param byteCount number of bytes to read or skip from the source.
78 source.skip(byteCount);
/external/okhttp/okio/src/main/java/okio/
H A DGzipSource.java105 // We can skip everything else in the first 10 bytes.
116 source.skip(8);
128 source.skip(xlen);
139 source.skip(index + 1);
150 source.skip(index + 1);
/external/ppp/pppd/include/
H A Dpcap-int.h63 int skip; member in struct:pcap_md
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkIStream.cpp158 size_t skipped = this->fSkStream->skip(
169 size_t skipped = this->fSkStream->skip(
184 LONGLONG skip = this->fSkStream->getLength() local
186 size_t skipped = this->fSkStream->skip(static_cast<size_t>(skip));
188 if (skipped != skip) {
/external/glide/library/src/main/java/com/bumptech/glide/
H A DDrawableRequestBuilder.java184 public DrawableRequestBuilder<ModelType> skipMemoryCache(boolean skip) { argument
185 super.skipMemoryCache(skip);
190 public DrawableRequestBuilder<ModelType> skipDiskCache(boolean skip) { argument
191 super.skipDiskCache(skip);
196 public DrawableRequestBuilder<ModelType> skipCache(boolean skip) { argument
197 super.skipCache(skip);
H A DGifRequestBuilder.java161 public GifRequestBuilder<ModelType, TranscodeType> skipMemoryCache(boolean skip) { argument
162 super.skipMemoryCache(skip);
167 public GifRequestBuilder<ModelType, TranscodeType> skipDiskCache(boolean skip) { argument
168 super.skipDiskCache( skip);
173 public GifRequestBuilder<ModelType, TranscodeType> skipCache(boolean skip) { argument
174 super.skipCache(skip);

Completed in 833 milliseconds

1234567891011>>