Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:IOBUF_SIZE
(Results
1 - 3
of
3
) sorted by relevance
/third_party/skia/third_party/externals/freetype/builds/amiga/src/base/
H
A
D
ftsystem.c
58
#define
IOBUF_SIZE
512
macro
68
UBYTE iobuf[
IOBUF_SIZE
];
327
if ( count <=
IOBUF_SIZE
)
in ft_amiga_stream_io()
330
read_bytes = Read( sysfile->file, sysfile->iobuf,
IOBUF_SIZE
);
in ft_amiga_stream_io()
349
** to do a single big read, and then copy the last
IOBUF_SIZE
in ft_amiga_stream_io()
361
bufsize = ( read_bytes >
IOBUF_SIZE
) ?
IOBUF_SIZE
: read_bytes;
in ft_amiga_stream_io()
/third_party/ffmpeg/libavcodec/
H
A
D
pngenc.c
40
#define
IOBUF_SIZE
4096
macro
61
uint8_t buf[
IOBUF_SIZE
];
287
if (s->bytestream_end - s->bytestream >
IOBUF_SIZE
+ 100)
in png_write_row()
288
png_write_image_data(avctx, s->buf,
IOBUF_SIZE
);
in png_write_row()
289
zstream->avail_out =
IOBUF_SIZE
;
in png_write_row()
513
zstream->avail_out =
IOBUF_SIZE
;
in encode_frame()
552
len =
IOBUF_SIZE
- zstream->avail_out;
in encode_frame()
556
zstream->avail_out =
IOBUF_SIZE
;
in encode_frame()
618
12 * (((int64_t)enc_row_size +
IOBUF_SIZE
- 1) /
IOBUF_SIZE
) // IDA
in encode_png()
[all...]
/third_party/toybox/toys/other/
H
A
D
bzcat.c
55
#define
IOBUF_SIZE
4096
macro
89
char outbuf[
IOBUF_SIZE
];
120
if (0 >= (bd->inbufCount = read(bd->in_fd, bd->inbuf,
IOBUF_SIZE
)))
in get_bits()
564
if (bd->outbufPos ==
IOBUF_SIZE
) flush_bunzip_outbuf(bd, out_fd);
in write_bunzip_data()
612
if (!len) i +=
IOBUF_SIZE
;
in start_bunzip()
Completed in 4 milliseconds