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:g_displayLevel
(Results
1 - 3
of
3
) sorted by relevance
/third_party/lz4/programs/
H
A
D
bench.c
88
#define DISPLAYLEVEL(l, ...) if (
g_displayLevel
>=l) { DISPLAY(__VA_ARGS__); }
89
static U32
g_displayLevel
= 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
variable
91
#define DISPLAYUPDATE(l, ...) if (
g_displayLevel
>=l) { \
92
if ((clock() - g_time > refreshRate) || (
g_displayLevel
>=4)) \
94
if (
g_displayLevel
>=4) fflush(stdout); } }
128
void BMK_setNotificationLevel(unsigned level) {
g_displayLevel
=level; }
in BMK_setNotificationLevel()
585
if (
g_displayLevel
== 1) {
in BMK_benchMem()
642
if (
g_displayLevel
== 1 && !g_additionalParam)
in BMK_benchCLevel()
H
A
D
lz4io.c
94
#define DISPLAYLEVEL(l, ...) if (
g_displayLevel
>=l) { DISPLAY(__VA_ARGS__); }
95
static int
g_displayLevel
= 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
variable
97
#define DISPLAYUPDATE(l, ...) if (
g_displayLevel
>=l) { \
99
|| (
g_displayLevel
>=4) ) { \
102
if (
g_displayLevel
>=4) fflush(stderr); \
257
g_displayLevel
= level;
in LZ4IO_setNotificationLevel()
258
return
g_displayLevel
;
in LZ4IO_setNotificationLevel()
359
if (
g_displayLevel
<= 1) { /* No interaction possible */
in LZ4IO_openDstFile()
1709
if (
g_displayLevel
< 3) {
in LZ4IO_displayCompressedFilesInfo()
1731
if (
g_displayLevel
<
in LZ4IO_displayCompressedFilesInfo()
[all...]
/third_party/lz4/tests/
H
A
D
fuzzer.c
96
#define DISPLAYLEVEL(l, ...) if (
g_displayLevel
>=l) { DISPLAY(__VA_ARGS__); }
97
static int
g_displayLevel
= 2;
variable
114
if ((FUZ_GetClockSpan(g_time) > g_refreshRate) || (
g_displayLevel
>=4)) {
in FUZ_displayUpdate()
349
if (
g_displayLevel
>=4) { \
in FUZ_test()
1778
if (!strcmp(argument, "--no-prompt")) { use_pause=0; seedset=1;
g_displayLevel
=1; continue; }
in main()
1788
g_displayLevel
++;
in main()
Completed in 10 milliseconds