Searched refs:randomness (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DCryptographicallyRandomNumber.cpp105 unsigned char randomness[128]; local
106 size_t length = sizeof(randomness);
107 (*sourceFunction)(randomness, length);
108 addRandomData(randomness, length);
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DFormDataBuilder.cpp132 uint32_t randomness = cryptographicallyRandomNumber(); local
133 randomBytes.append(alphaNumericEncodingMap[(randomness >> 24) & 0x3F]);
134 randomBytes.append(alphaNumericEncodingMap[(randomness >> 16) & 0x3F]);
135 randomBytes.append(alphaNumericEncodingMap[(randomness >> 8) & 0x3F]);
136 randomBytes.append(alphaNumericEncodingMap[randomness & 0x3F]);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gmail/
H A Dbackground.js101 var randomness = Math.random() * 2;
103 var multiplier = Math.max(randomness * exponent, 1);
/external/chromium_org/third_party/sqlite/src/src/
H A Dsqlite3ext.h187 void (*randomness)(int,void*); member in struct:sqlite3_api_routines
387 #define sqlite3_randomness sqlite3_api->randomness
/external/sqlite/dist/orig/
H A Dsqlite3ext.h204 void (*randomness)(int,void*); member in struct:sqlite3_api_routines
425 #define sqlite3_randomness sqlite3_api->randomness
H A Dsqlite3.c1231 ** of good-quality randomness into zOut. The return value is
1232 ** the actual number of bytes of randomness obtained.
2515 ** ^A call to this routine stores N bytes of randomness into buffer P.
2519 ** call had N less than one, then the PRNG is seeded using randomness
2522 ** the pseudo-randomness is generated
21642 ** not need to contain a lot of randomness since we are not
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h204 void (*randomness)(int,void*); member in struct:sqlite3_api_routines
425 #define sqlite3_randomness sqlite3_api->randomness
H A Dsqlite3.c1231 ** of good-quality randomness into zOut. The return value is
1232 ** the actual number of bytes of randomness obtained.
2515 ** ^A call to this routine stores N bytes of randomness into buffer P.
2519 ** call had N less than one, then the PRNG is seeded using randomness
2522 ** the pseudo-randomness is generated
21642 ** not need to contain a lot of randomness since we are not
[all...]
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex290 necessary flow label randomness.
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c1431 ** of good-quality randomness into zOut. The return value is
1432 ** the actual number of bytes of randomness obtained.
2642 ** ^A call to this routine stores N bytes of randomness into buffer P.
2645 ** the application) the PRNG is seeded using randomness obtained
2647 ** ^On all subsequent invocations, the pseudo-randomness is generated
19558 ** randomness any more. But we will leave this code in all the same.
19580 ** not need to contain a lot of randomness since we are not
23734 ** Write up to nBuf bytes of randomness into zBuf.
23752 /* 8 bytes; timezone and weekday don't increase the randomness much */
26796 /* note that the quality of the randomness does
[all...]

Completed in 1581 milliseconds