Home
last modified time | relevance | path

Searched refs:randomness (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
DFormDataBuilder.cpp130 …unsigned randomness = static_cast<unsigned>(randomNumber() * (std::numeric_limits<unsigned>::max()… in generateUniqueBoundaryString() local
131 randomBytes.append(alphaNumericEncodingMap[(randomness >> 24) & 0x3F]); in generateUniqueBoundaryString()
132 randomBytes.append(alphaNumericEncodingMap[(randomness >> 16) & 0x3F]); in generateUniqueBoundaryString()
133 randomBytes.append(alphaNumericEncodingMap[(randomness >> 8) & 0x3F]); in generateUniqueBoundaryString()
134 randomBytes.append(alphaNumericEncodingMap[randomness & 0x3F]); in generateUniqueBoundaryString()
/external/webkit/Source/JavaScriptCore/wtf/
DCryptographicallyRandomNumber.cpp102 unsigned char randomness[128]; in stir() local
103 size_t length = sizeof(randomness); in stir()
104 cryptographicallyRandomValuesFromOS(randomness, length); in stir()
105 addRandomData(randomness, length); in stir()
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3ext.h189 void (*randomness)(int,void*); member
368 #define sqlite3_randomness sqlite3_api->randomness
/external/sqlite/dist/orig/
Dsqlite3ext.h204 void (*randomness)(int,void*); member
411 #define sqlite3_randomness sqlite3_api->randomness
Dsqlite3.c91177 void (*randomness)(int,void*);
91384 #define sqlite3_randomness sqlite3_api->randomness
/external/sqlite/dist/
Dsqlite3ext.h204 void (*randomness)(int,void*); member
411 #define sqlite3_randomness sqlite3_api->randomness
Dsqlite3.c91213 void (*randomness)(int,void*);
91420 #define sqlite3_randomness sqlite3_api->randomness
/external/iproute2/doc/
Dapi-ip6-flowlabels.tex290 necessary flow label randomness.
/external/bison/
DNEWS1553 %parse-param {int *randomness}
1558 int yyparse (int *nastiness, int *randomness);
1563 int yyparse (int *nastiness, int *randomness);
/external/bison/doc/
Dbison.texi5945 %parse-param @{int *randomness@}
5953 int nastiness, randomness;
5954 @dots{} /* @r{Store proper data in @code{nastiness} and @code{randomness}.} */
5955 value = yyparse (&nastiness, &randomness);
5964 exp: @dots{} @{ @dots{}; *randomness += 1; @dots{} @}
5970 %parse-param @{int *randomness@}
5975 void yyerror (int *randomness, const char *msg);
5976 int yyparse (int *randomness);
5984 void yyerror (YYLTYPE *llocp, int *randomness, const char *msg);
5985 int yyparse (int *randomness);
Dbison.info5813 %parse-param {int *randomness}
5818 int nastiness, randomness;
5819 ... /* Store proper data in `nastiness' and `randomness'. */
5820 value = yyparse (&nastiness, &randomness);
5826 exp: ... { ...; *randomness += 1; ... }
5829 %parse-param {int *randomness}
5832 void yyerror (int *randomness, const char *msg);
5833 int yyparse (int *randomness);
5838 void yyerror (YYLTYPE *llocp, int *randomness, const char *msg);
5839 int yyparse (int *randomness);
/external/webkit/Source/WebKit/chromium/
DChangeLog5341 We need to get OS randomness from the WebKit client rather than try to
5366 This patch adds a WebKit client API to get cryptographic randomness.
5367 We'll use this API to gather seed randomness while inside the sandbox.
/external/e2fsprogs/
DRELEASE-NOTES3594 randomness in its non-destructive read/write test, instead of using a
3595 full 8 bits of randomness.
4774 Mke2fs now adds some randomness in s_max_mount_count so that multiple
/external/openssh/
Dconfigure.ac2388 # Which randomness source do we use?
/external/srtp/doc/
Drfc3711.txt157 pseudo-randomness is sufficient [RFC1750].
/external/webkit/Source/JavaScriptCore/
DChangeLog7224 get a cryptographic randomness when available. Instead, we should use
DChangeLog-2009-06-1611264 of randomness over and above cryptographically secure randomness is not
15818 <rdar://problem/6358108> Insecure randomness in Math.random() leads to user tracking
16714 period (more randomness). HTMLFormElement already contains this implementation
DChangeLog-2008-08-108377 I could move exception checks back into slow code paths, and saw less randomness in general.
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0620684 …up] Random crashes in http/tests/websocket/tests/workers/worker-handshake-challenge-randomness.html
21079 …up] Random crashes in http/tests/websocket/tests/workers/worker-handshake-challenge-randomness.html
DChangeLog45191 …:readStreamCallback when running websocket/tests/workers/worker-handshake-challenge-randomness.html