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:random
(Results
1 - 25
of
51
) sorted by relevance
1
2
3
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
allocation_inspector.cpp
36
// Let
random
be a uniformly distributed
random
number between 0 and 1, beacuse Inverse transform sampling
37
// can generate exponential probability distribution with a uniform distribution, so nextSample = (- ln
random
) / λ.
40
double
random
= base::RandomGenerator::NextDouble();
in GetNextStepSize()
local
41
double stepSize = -std::log(
random
) * rate_;
in GetNextStepSize()
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks-interop-freestyle/interop/bu_a2j/
H
A
D
test_import.js
17
return Math.
random
() * Number.MAX_SAFE_INTEGER;
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H
A
D
std_math.cpp
20
#include <
random
>
/arkcompiler/ets_runtime/test/aottest/builtins_parseint/
H
A
D
builtins_parseint.js
21
let n = parseInt(Math.
random
() * str.length + '');
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H
A
D
utils.py
20
import
random
namespace
183
random
.seed(test_id)
184
return
random
.randint(1, total_groups)
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/interfaces/interface_method_returns_value/js_interface/
H
A
D
index.js
96
let index = Math.round(Math.
random
() * randomValues.length);
125
let index = Math.round(Math.
random
() * randomValues.length);
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks/js/
H
A
D
StringTest.js
40
this.str += String.fromCharCode((25 * Math.
random
()) + 97);
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/
H
A
D
XTools.js
74
return Math.floor(Math.
random
() * (max - min)) + min;
/arkcompiler/runtime_core/static_core/compiler/tests/codegen/
H
A
D
codegen_test.h
19
#include <
random
>
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
time_utils_test.cpp
19
#include <
random
>
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/
H
A
D
stubbuilder.js
871
return Math.round(n1 + Math.
random
() * (n2 - n1));
873
return Math.round(Math.
random
() * n1)
875
return Math.round(Math.
random
() * 255)
/arkcompiler/runtime_core/static_core/scripts/
H
A
D
compiler_bisect.py
21
import
random
namespace
221
random
.shuffle(values)
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H
A
D
helpers.py
22
import
random
namespace
60
random
.choice(
/arkcompiler/runtime_core/compiler/tests/aarch32/
H
A
D
register32_test.cpp
15
#include <
random
>
/arkcompiler/runtime_core/compiler/tests/amd64/
H
A
D
register64_test.cpp
16
#include <
random
>
H
A
D
callconv64_test.cpp
16
#include <
random
>
/arkcompiler/runtime_core/compiler/tests/aarch64/
H
A
D
register64_test.cpp
16
#include <
random
>
H
A
D
callconv64_test.cpp
16
#include <
random
>
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/
H
A
D
register32_test.cpp
15
#include <
random
>
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/
H
A
D
register64_test.cpp
16
#include <
random
>
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/
H
A
D
register64_test.cpp
16
#include <
random
>
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H
A
D
type_converter_tests.cpp
19
#include <
random
>
/arkcompiler/ets_runtime/test/moduletest/container/
H
A
D
container_hashmap.js
54
let ss = Math.floor(Math.
random
()*10);
/arkcompiler/runtime_core/libpandabase/tests/
H
A
D
type_converter_tests.cpp
19
#include <
random
>
H
A
D
mem_range_test.cpp
19
#include <
random
>
36
// support function to generate
random
uintptr_t
136
// function to conduct num_iter
random
tests with addresses in given bounds
182
// set of
random
tests with different address ranges
195
//
random
tests in interesting ranges
199
// tests in
random
ranges
Completed in 10 milliseconds
1
2
3