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:kStateBytes
(Results
1 - 10
of
10
) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H
A
D
randen.h
36
static constexpr size_t
kStateBytes
= RandenTraits::
kStateBytes
;
member in absl::random_internal::Randen
45
// (kCapacityBytes ..
kStateBytes
) may be consumed as PRNG state.
48
static_assert(N * sizeof(T) ==
kStateBytes
,
variable
49
"Randen::Generate() requires
kStateBytes
of state");
73
static_assert(N * sizeof(T) == RandenTraits::
kStateBytes
,
member in absl::random_internal::Randen::RandenTraits
74
"Randen::Absorb() requires
kStateBytes
of state");
H
A
D
randen_traits.h
58
static constexpr size_t
kStateBytes
= 256; // 2048-bit
member
65
static constexpr size_t kSeedBytes =
kStateBytes
- kCapacityBytes;
H
A
D
randen_slow_test.cc
30
RandenTraits::
kStateBytes
- RandenTraits::kCapacityBytes;
31
constexpr size_t kStateSizeT = RandenTraits::
kStateBytes
/ sizeof(uint64_t);
H
A
D
randen_hwaes_test.cc
32
RandenTraits::
kStateBytes
- RandenTraits::kCapacityBytes;
33
constexpr size_t kStateSizeT = RandenTraits::
kStateBytes
/ sizeof(uint64_t);
H
A
D
pool_urbg.cc
52
static constexpr size_t kState = RandenTraits::
kStateBytes
/ sizeof(uint32_t);
211
RandenTraits::
kStateBytes
/ sizeof(uint32_t);
in InitPoolURBG()
H
A
D
randen_test.cc
27
constexpr size_t kStateSizeT = Randen::
kStateBytes
/ sizeof(uint64_t);
H
A
D
randen_benchmarks.cc
44
static constexpr size_t kStateSizeT = Randen::
kStateBytes
/ sizeof(uint64_t);
H
A
D
randen_engine.h
218
Randen::
kStateBytes
/ sizeof(result_type);
H
A
D
randen_hwaes.cc
425
static_assert(RandenTraits::
kStateBytes
/ sizeof(Vector128) == 16,
H
A
D
randen_slow.cc
428
i < RandenTraits::
kStateBytes
/ sizeof(uint64_t); ++i) {
in Absorb()
Completed in 4 milliseconds