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:rand32
(Results
1 - 9
of
9
) sorted by relevance
/third_party/lz4/ossfuzz/
H
A
D
fuzz_helpers.h
77
uint32_t
rand32
= *state;
in FUZZ_rand()
local
78
rand32
*= prime1;
in FUZZ_rand()
79
rand32
+= prime2;
in FUZZ_rand()
80
rand32
= FUZZ_rotl32(
rand32
, 13);
in FUZZ_rand()
81
*state =
rand32
;
in FUZZ_rand()
82
return
rand32
>> 5;
in FUZZ_rand()
/third_party/lz4/programs/
H
A
D
datagen.c
63
U32
rand32
= *src;
in RDG_rand()
local
64
rand32
*= PRIME1;
in RDG_rand()
65
rand32
^= PRIME2;
in RDG_rand()
66
rand32
= RDG_rotl32(
rand32
, 13);
in RDG_rand()
67
*src =
rand32
;
in RDG_rand()
68
return
rand32
;
in RDG_rand()
/third_party/optimized-routines/string/bench/
H
A
D
memcpy.c
145
copy[i].dst = (
rand32
(0) & (max_size - 1));
in init_copies()
146
copy[i].dst &= ~dst_align_arr[
rand32
(0) & ALIGN_MASK];
in init_copies()
147
copy[i].src = (
rand32
(0) & (max_size - 1));
in init_copies()
148
copy[i].src &= ~src_align_arr[
rand32
(0) & ALIGN_MASK];
in init_copies()
149
copy[i].len = size_arr[
rand32
(0) & SIZE_MASK];
in init_copies()
169
rand32
(0x12345678);
in main()
H
A
D
strlen.c
122
int align = strlen_align_arr[
rand32
(0) & ALIGN_MASK];
in init_strlen_tests()
123
int exp_len = strlen_len_arr[
rand32
(0) & SIZE_MASK];
in init_strlen_tests()
134
rand32
(0x12345678);
in main()
/third_party/musl/libc-test/src/common/
H
A
D
rand.c
7
static uint32_t
rand32
(void)
in rand32()
function
14
uint64_t u =
rand32
();
in rand64()
15
return u<<32 |
rand32
();
in rand64()
23
return
rand32
() * 0x1p-32f;
in frandf()
/third_party/musl/libc-test/src/math/gen/
H
A
D
rnd.c
8
static uint32_t
rand32
(void)
in rand32()
function
15
uint64_t u =
rand32
();
in rand64()
16
return u<<32 |
rand32
();
in rand64()
19
static float frandf(){return
rand32
() * 0x1p-32f;}
in frandf()
/third_party/optimized-routines/string/include/
H
A
D
benchlib.h
23
rand32
(uint32_t seed)
in rand32()
function
/third_party/lz4/tests/
H
A
D
frametest.c
165
U32
rand32
= *src;
in FUZ_rand()
local
166
rand32
*= prime1;
in FUZ_rand()
167
rand32
+= prime2;
in FUZ_rand()
168
rand32
= FUZ_rotl32(
rand32
, 13);
in FUZ_rand()
169
*src =
rand32
;
in FUZ_rand()
170
return
rand32
>> 5;
in FUZ_rand()
H
A
D
fuzzer.c
136
U32
rand32
= *src;
in FUZ_rand()
local
137
rand32
*= PRIME1;
in FUZ_rand()
138
rand32
^= PRIME2;
in FUZ_rand()
139
rand32
= FUZ_rotl32(
rand32
, 13);
in FUZ_rand()
140
*src =
rand32
;
in FUZ_rand()
141
return
rand32
;
in FUZ_rand()
Completed in 9 milliseconds