/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | sfwoff.h | 32 woff_open_font( FT_Stream stream,
|
/third_party/skia/include/docs/ |
H A D | SkXPSDocument.h | 21 SK_API sk_sp<SkDocument> MakeDocument(SkWStream* stream,
|
/third_party/skia/client_utils/android/ |
H A D | FrontBufferedStream.h | 16 * Specialized stream that buffers the first X bytes of a stream, 18 * stream APIs, once more bytes than can fit in the buffer are read, 19 * no more buffering is done. This stream is designed for a use case 21 * X bytes (inclusive), and the wrapped stream is not necessarily 27 * Creates a new stream that wraps and buffers an SkStream. 28 * @param stream SkStream to buffer. If stream is NULL, NULL is 31 * stream, so it should no be longer used directly. 32 * FrontBufferedStream will delete stream upo [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_yadif_cuda.c | 42 CUstream stream; member 112 0, s->stream, args, NULL)); in call_kernel() 256 s->stream = s->hwctx->stream; in config_output()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_mulaw.c | 335 if (pcm->stream == SND_PCM_STREAM_PLAYBACK) { in snd_pcm_mulaw_hw_params() 459 err = snd_pcm_new(&pcm, SND_PCM_TYPE_MULAW, name, slave->stream, slave->mode); in snd_pcm_mulaw_open() 514 * \param stream Stream type 523 snd_pcm_stream_t stream, int mode) in _snd_pcm_mulaw_open() 558 err = snd_pcm_open_slave(&spcm, root, sconf, stream, mode, conf); in _snd_pcm_mulaw_open() 521 _snd_pcm_mulaw_open(snd_pcm_t **pcmp, const char *name, snd_config_t *root, snd_config_t *conf, snd_pcm_stream_t stream, int mode) _snd_pcm_mulaw_open() argument
|
H A D | pcm_adpcm.c | 424 if (pcm->stream == SND_PCM_STREAM_PLAYBACK) { in snd_pcm_adpcm_hw_params() 571 err = snd_pcm_new(&pcm, SND_PCM_TYPE_ADPCM, name, slave->stream, slave->mode); in snd_pcm_adpcm_open() 626 * \param stream Stream type 635 snd_pcm_stream_t stream, int mode) in _snd_pcm_adpcm_open() 670 err = snd_pcm_open_slave(&spcm, root, sconf, stream, mode, conf); in _snd_pcm_adpcm_open() 633 _snd_pcm_adpcm_open(snd_pcm_t **pcmp, const char *name, snd_config_t *root, snd_config_t *conf, snd_pcm_stream_t stream, int mode) _snd_pcm_adpcm_open() argument
|
H A D | pcm_alaw.c | 321 if (pcm->stream == SND_PCM_STREAM_PLAYBACK) { in snd_pcm_alaw_hw_params() 446 err = snd_pcm_new(&pcm, SND_PCM_TYPE_ALAW, name, slave->stream, slave->mode); in snd_pcm_alaw_open() 501 * \param stream Stream type 510 snd_pcm_stream_t stream, int mode) in _snd_pcm_alaw_open() 545 err = snd_pcm_open_slave(&spcm, root, sconf, stream, mode, conf); in _snd_pcm_alaw_open() 508 _snd_pcm_alaw_open(snd_pcm_t **pcmp, const char *name, snd_config_t *root, snd_config_t *conf, snd_pcm_stream_t stream, int mode) _snd_pcm_alaw_open() argument
|
/third_party/backends/lib/ |
H A D | md5.c | 69 md5_stream (FILE *stream, void *resblock); 146 md5_stream (FILE *stream, void *resblock) in md5_stream() argument 169 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream); in md5_stream() 174 if (n == 0 && ferror (stream)) in md5_stream()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | PseudoLocales.java | 23 import java.util.stream.IntStream; 83 Arrays.stream(values()).collect(toImmutableMap(PseudoType::getLocaleId, identity())); 230 Arrays.stream(paths) in matchAnyLdmlPrefix() 233 return p -> collect.stream().anyMatch(e -> e.test(p)); in matchAnyLdmlPrefix() 364 // Not pretty, but there's no nice way to "pair up" successive stream elements without in toCodePointFunction()
|
/third_party/json/include/nlohmann/detail/input/ |
H A D | input_adapters.hpp | 91 // clear stream flags; we use underlying streambuf I/O, do not in ~input_stream_adapter() 130 /// the associated input stream 428 inline input_stream_adapter input_adapter(std::istream& stream) 430 return input_stream_adapter(stream); 433 inline input_stream_adapter input_adapter(std::istream&& stream) 435 return input_stream_adapter(stream);
|
/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | glsl_scraper.py | 54 self.stream = io.StringIO() 61 self.stream.write(s) 64 self.glsl = self.stream.getvalue() 65 self.stream = None
|
/third_party/node/lib/internal/ |
H A D | worker.js | 328 const { stream, chunks } = message; 329 const readable = this[kParentSideStdio][stream]; 337 const { stream } = message; 338 return this[kParentSideStdio][stream][kStdioWantsMoreDataCallback]();
|
/third_party/node/src/ |
H A D | stream_pipe.cc | 42 return static_cast<StreamBase*>(readable_listener_.stream()); in source() 46 return static_cast<StreamBase*>(writable_listener_.stream()); in sink() 126 stream()->ReadStop(); in OnStreamRead() 168 stream()->RemoveStreamListener(this); in OnStreamAfterWrite()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | symbol.h | 171 int (*handler)(struct stream *, struct token **, struct token *); 334 extern struct symbol *create_symbol(int stream, const char *name, int type, int namespace); 336 extern void init_builtins(int stream); 337 extern void init_linearized_builtins(int stream);
|
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-js.cc | 232 Utf16CharacterStream* stream = parse_info()->character_stream(); in ExecuteJobImpl() local 234 if (stream->can_access_heap()) { in ExecuteJobImpl() 237 stream->Seek(compilation_info()->literal()->start_position()); in ExecuteJobImpl() 238 wasm::AsmJsParser parser(&translate_zone, stack_limit(), stream); in ExecuteJobImpl()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_pipeline_state.cpp | 120 entries[*num_entries].Stream = output->stream; in fill_so_declaration() 129 entries[*num_entries].Stream = output->stream; in fill_so_declaration() 132 assert((var->data.stream & ~NIR_STREAM_PACKED) == output->stream); in fill_so_declaration()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | FormatSpec.java | 31 import java.util.stream.Collectors; 32 import java.util.stream.IntStream; 454 return getGroups().stream() in getXmlCapturingPattern() 552 return template.getGroups().stream().mapToInt(lengthFn).sum(); in getLength()
|
H A D | RangesTableSchema.java | 24 import static java.util.stream.Collectors.joining; 54 import java.util.stream.Stream; 362 lengthSet.stream() in formatLength() 365 return r.asRanges().stream().map(RangesTableSchema::formatRange).collect(joining(",")); in formatLength()
|
/third_party/rust/crates/log/src/kv/ |
H A D | value.rs | 426 fn stream(&self, stream: &mut self::sval::value::Stream) -> self::sval::value::Result { in stream() functions 427 self::sval::value::Value::stream(&self.inner, stream) in stream()
|
/third_party/python/Lib/ |
H A D | pkgutil.py | 40 def read_code(stream): 45 magic = stream.read(4) 49 stream.read(12) # Skip rest of the header 50 return marshal.load(stream)
|
/third_party/python/Lib/test/ |
H A D | pythoninfo.py | 122 stream = getattr(sys, name) 123 if stream is None: 125 encoding = getattr(stream, 'encoding', None) 128 errors = getattr(stream, 'errors', None)
|
/third_party/skia/src/codec/ |
H A D | SkHeifCodec.cpp | 119 SkHeifStreamWrapper(SkStream* stream) : fStream(stream) {} in SkHeifStreamWrapper() 159 std::unique_ptr<SkCodec> SkHeifCodec::MakeFromStream(std::unique_ptr<SkStream> stream, in MakeFromStream() argument 168 if (!heifDecoder->init(new SkHeifStreamWrapper(stream.release()), &heifInfo)) { in MakeFromStream()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFBitmap.cpp | 26 // write a single byte to a stream n times. 133 emit_image_stream(doc, ref, [&buffer](SkWStream* stream) { buffer.writeToAndReset(stream); }, in do_deflated_alpha() 190 emit_image_stream(doc, ref, [&buffer](SkWStream* stream) { buffer.writeToAndReset(stream); }, in do_deflated_image()
|
/third_party/skia/tests/ |
H A D | ColorSpaceTest.cpp | 50 std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); in test_path() 51 REPORTER_ASSERT(r, nullptr != stream); in test_path() 52 if (!stream) { in test_path() 56 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); in test_path()
|
H A D | PDFPrimitivesTest.cpp | 291 SkDynamicMemoryWStream stream; in DEF_TEST() local 292 auto doc = SkPDF::MakeDocument(&stream); in DEF_TEST() 447 SkNullWStream stream; in DEF_TEST() local 448 auto doc = SkPDF::MakeDocument(&stream); in DEF_TEST()
|