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_BLOCKSIZE
(Results
1 - 3
of
3
) sorted by relevance
/third_party/FreeBSD/sys/dev/random/
H
A
D
yarrow.c
75
/* This algorithm (and code) presumes that RANDOM_KEYSIZE is twice as large as
RANDOM_BLOCKSIZE
*/
76
CTASSERT(
RANDOM_BLOCKSIZE
== sizeof(uint128_t));
77
CTASSERT(RANDOM_KEYSIZE == 2*
RANDOM_BLOCKSIZE
);
111
RANDOM_CHECK_UINT(fastthresh, (
RANDOM_BLOCKSIZE
*8)/4, (
RANDOM_BLOCKSIZE
*8)); /* Bit counts */
112
RANDOM_CHECK_UINT(slowthresh, (
RANDOM_BLOCKSIZE
*8)/4, (
RANDOM_BLOCKSIZE
*8)); /* Bit counts */
190
yarrow_state.ys_pool[RANDOM_YARROW_FAST].ysp_thresh = (3*(
RANDOM_BLOCKSIZE
*8))/4;
in random_yarrow_init_alg()
191
yarrow_state.ys_pool[RANDOM_YARROW_SLOW].ysp_thresh = (
RANDOM_BLOCKSIZE
*8);
in random_yarrow_init_alg()
314
randomdev_encrypt(&yarrow_state.ys_key, &yarrow_state.ys_counter, &temp,
RANDOM_BLOCKSIZE
);
in random_yarrow_reseed_internal()
[all...]
H
A
D
hash.h
39
#define
RANDOM_BLOCKSIZE
16 /* (in bytes) == 128 bits */
macro
40
#define RANDOM_BLOCKSIZE_WORDS (
RANDOM_BLOCKSIZE
/sizeof(uint32_t))
41
#define RANDOM_KEYS_PER_BLOCK (RANDOM_KEYSIZE/
RANDOM_BLOCKSIZE
)
H
A
D
unit_test.h
69
#define
RANDOM_BLOCKSIZE
16
macro
Completed in 2 milliseconds