OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Random
(Results
1 - 25
of
631
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_random.cpp
1
cout << 100 * Matrix2i::
Random
() << endl;
MatrixBase_random_int.cpp
1
cout << VectorXi::
Random
(2) << endl;
MatrixBase_random_int_int.cpp
1
cout << MatrixXi::
Random
(2,3) << endl;
Cwise_product.cpp
1
Array33i a = Array33i::
Random
(), b = Array33i::
Random
();
MatrixBase_cwiseProduct.cpp
1
Matrix3i a = Matrix3i::
Random
(), b = Matrix3i::
Random
();
MatrixBase_setOnes.cpp
1
Matrix4i m = Matrix4i::
Random
();
MatrixBase_setZero.cpp
1
Matrix4i m = Matrix4i::
Random
();
MatrixBase_adjoint.cpp
1
Matrix2cf m = Matrix2cf::
Random
();
MatrixBase_diagonal.cpp
1
Matrix3i m = Matrix3i::
Random
();
MatrixBase_inverse.cpp
1
Matrix3d m = Matrix3d::
Random
();
MatrixBase_prod.cpp
1
Matrix3d m = Matrix3d::
Random
();
MatrixBase_replicate.cpp
1
MatrixXi m = MatrixXi::
Random
(2,3);
MatrixBase_replicate_int_int.cpp
1
Vector3i v = Vector3i::
Random
();
PartialRedux_maxCoeff.cpp
1
Matrix3d m = Matrix3d::
Random
();
PartialRedux_minCoeff.cpp
1
Matrix3d m = Matrix3d::
Random
();
PartialRedux_norm.cpp
1
Matrix3d m = Matrix3d::
Random
();
PartialRedux_prod.cpp
1
Matrix3d m = Matrix3d::
Random
();
PartialRedux_squaredNorm.cpp
1
Matrix3d m = Matrix3d::
Random
();
PartialRedux_sum.cpp
1
Matrix3d m = Matrix3d::
Random
();
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
random.h
12
class
Random
{
15
explicit
Random
(int64 seed) {}
17
virtual ~
Random
() {}
random.cc
5
#include "google/cacheinvalidation/deps/
random
.h"
9
double
Random
::RandDouble() {
13
uint64
Random
::RandUint64() {
/libcore/benchmarks/src/benchmarks/regression/
BigIntegerBenchmark.java
20
import java.util.
Random
;
26
Random
r = new
Random
();
35
Random
r = new
Random
();
44
Random
r = new
Random
();
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
RandomizedInvalidationClientNameGenerator.java
9
import java.util.
Random
;
12
* Generates a fully
random
client ID.
19
private static final
Random
RANDOM
= new
Random
();
24
* Generates a
random
ID prefixed with the string "BadID".
34
RANDOM
.nextBytes(randomBytes);
/external/guava/guava-tests/test/com/google/common/io/
RandomAmountInputStream.java
22
import java.util.
Random
;
24
/** Returns a
random
portion of the requested bytes on each call. */
26
private final
Random
random
;
field in class:RandomAmountInputStream
28
public RandomAmountInputStream(InputStream in,
Random
random
) {
30
this.
random
=
random
;
34
return super.read(b, off,
random
.nextInt(len) + 1);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
random.c
18
* File:
random
.c *
20
* Description: Signed 16 bits
random
generator *
27
Word16
Random
(Word16 * seed)
Completed in 1237 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>