/third_party/ltp/testcases/kernel/io/ltp-aiodio/ |
H A D | dio_read.c | 34 static char *iobuf; variable 131 iobuf = SAFE_MEMALIGN(alignment, buffsize); in setup() 150 do_buffered_writes(fd, iobuf, filesize, writesize, 1); in run() 161 do_buffered_writes(fd, iobuf, filesize, writesize, 0); in run() 167 fail = do_direct_reads(filename, iobuf, filesize, readsize); in run()
|
/third_party/skia/third_party/externals/freetype/builds/amiga/src/base/ |
H A D | ftsystem.c | 68 UBYTE iobuf[IOBUF_SIZE]; member 321 CopyMem( &sysfile->iobuf[offset - sysfile->iobuf_start], buffer, count ); in ft_amiga_stream_io() 330 read_bytes = Read( sysfile->file, sysfile->iobuf, IOBUF_SIZE ); in ft_amiga_stream_io() 339 CopyMem( sysfile->iobuf, buffer, count ); in ft_amiga_stream_io() 364 CopyMem( &buffer[read_bytes - bufsize] , sysfile->iobuf, bufsize ); in ft_amiga_stream_io()
|
/third_party/skia/src/codec/ |
H A D | SkWuffsCodec.cpp | 202 wuffs_base__io_buffer iobuf); 345 wuffs_base__io_buffer iobuf) in SkWuffsCodec() 380 // Initialize fIOBuffer's fields, copying any outstanding data from iobuf to 381 // fIOBuffer, as iobuf's backing array may not be valid for the lifetime of 383 SkASSERT(iobuf.data.len == SK_WUFFS_CODEC_BUFFER_SIZE); 384 memmove(fBuffer, iobuf.data.ptr, iobuf.meta.wi); 386 fIOBuffer.meta = iobuf.meta; 934 wuffs_base__io_buffer iobuf = in SkWuffsCodec_MakeFromStream() local 967 reset_and_decode_image_config(decoder.get(), &imgcfg, &iobuf, strea in SkWuffsCodec_MakeFromStream() 339 SkWuffsCodec(SkEncodedInfo&& encodedInfo, std::unique_ptr<SkStream> stream, std::unique_ptr<wuffs_gif__decoder, decltype(&sk_free)> dec, std::unique_ptr<uint8_t, decltype(&sk_free)> workbuf_ptr, size_t workbuf_len, wuffs_base__image_config imgcfg, wuffs_base__io_buffer iobuf) SkWuffsCodec() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | asn_mime.c | 574 char iobuf[4096]; in SMIME_text() local 596 while ((len = BIO_read(in, iobuf, sizeof(iobuf))) > 0) in SMIME_text() 597 BIO_write(out, iobuf, len); in SMIME_text()
|
/third_party/openssl/crypto/asn1/ |
H A D | asn_mime.c | 568 char iobuf[4096]; in SMIME_text() local 590 while ((len = BIO_read(in, iobuf, sizeof(iobuf))) > 0) in SMIME_text() 591 BIO_write(out, iobuf, len); in SMIME_text()
|
/third_party/ffmpeg/libavformat/ |
H A D | hdsenc.c | 49 uint8_t iobuf[32768]; member 369 ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), in hds_write_header()
|
H A D | smoothstreamingenc.c | 63 uint8_t iobuf[32768]; member 337 ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), 1, os, NULL, ism_write, ism_seek); in ism_write_header()
|
/third_party/ffmpeg/libavformat/tests/ |
H A D | movenc.c | 49 uint8_t iobuf[32768]; variable 182 int iobuf_size = force_iobuf_size ? force_iobuf_size : sizeof(iobuf); in init_fps() 189 ctx->pb = avio_alloc_context(iobuf, iobuf_size, 1, NULL, NULL, io_write, NULL); in init_fps()
|