/external/swiftshader/third_party/subzero/src/ |
D | IceRNG.h | 65 uint64_t operator()(uint64_t Max) { return RNG.next(Max); } in operator() 67 explicit RandomNumberGeneratorWrapper(RandomNumberGenerator &RNG) in RandomNumberGeneratorWrapper() argument 68 : RNG(RNG) {} in RandomNumberGeneratorWrapper() 71 RandomNumberGenerator &RNG; 78 void RandomShuffle(RandomIt First, RandomIt Last, RandomFunc &&RNG) { in RandomShuffle() argument 80 std::swap(First[i], First[RNG(i + 1)]); in RandomShuffle()
|
D | IceGlobalContext.cpp | 505 RandomNumberGenerator RNG(getFlags().getRandomSeed(), in lowerGlobals() local 508 [&RNG](int N) { return (uint32_t)RNG.next(N); }); in lowerGlobals() 576 RandomNumberGenerator RNG(getFlags().getRandomSeed(), RPE_FunctionReordering); in emitItems() local 630 [&RNG](uint64_t N) { return (uint32_t)RNG.next(N); }); in emitItems() 896 RandomNumberGenerator RNG(getFlags().getRandomSeed(), in getJumpTables() local 899 [&RNG](uint64_t N) { return (uint32_t)RNG.next(N); }); in getJumpTables()
|
D | IceRNG.cpp | 52 return RNG.next(MAX) < Probability * MAX; in getTrueWithProbability()
|
D | IceCfg.cpp | 51 RandomNumberGenerator RNG(getFlags().getRandomSeed(), RPE_ConstantBlinding, in Cfg() local 54 (uint32_t)RNG.next((uint64_t)std::numeric_limits<uint32_t>::max() + 1); in Cfg() 492 Ice::RandomNumberGenerator *RNG) { in getRandomPostOrder() argument 497 [RNG](int N) { return RNG->next(N); }); in getRandomPostOrder() 500 getRandomPostOrder(Next, ToVisit, PostOrder, RNG); in getRandomPostOrder() 514 RandomNumberGenerator RNG(getFlags().getRandomSeed(), in shuffleNodes() local 517 getRandomPostOrder(getEntryNode(), ToVisit, ReversedReachable, &RNG); in shuffleNodes() 1526 RandomNumberGenerator RNG(getFlags().getRandomSeed(), RPE_NopInsertion, in doNopInsertion() local 1529 Node->doNopInsertion(RNG); in doNopInsertion()
|
D | IceCfgNode.h | 105 void doNopInsertion(RandomNumberGenerator &RNG);
|
D | IceELFObjectWriter.cpp | 552 RandomNumberGenerator RNG(getFlags().getRandomSeed(), in writeConstantPool() local 555 [&RNG](uint64_t N) { return (uint32_t)RNG.next(N); }); in writeConstantPool()
|
D | IceTargetLowering.h | 219 void doNopInsertion(RandomNumberGenerator &RNG); 433 RandomNumberGenerator &RNG) = 0;
|
D | IceTargetLoweringX8632Traits.h | 621 RandomNumberGenerator RNG(getFlags().getRandomSeed(), 623 RandomNumberGeneratorWrapper RNGW(RNG);
|
D | IceTargetLowering.cpp | 378 void TargetLowering::doNopInsertion(RandomNumberGenerator &RNG) { in doNopInsertion() argument 386 randomlyInsertNop(Probability / 100.0, RNG); in doNopInsertion()
|
D | IceTargetLoweringX8664Traits.h | 665 RandomNumberGenerator RNG(getFlags().getRandomSeed(), 667 RandomNumberGeneratorWrapper RNGW(RNG);
|
D | IceCfgNode.cpp | 613 void CfgNode::doNopInsertion(RandomNumberGenerator &RNG) { in doNopInsertion() argument 627 Target->doNopInsertion(RNG); in doNopInsertion()
|
D | IceTargetLoweringMIPS32.h | 797 RandomNumberGenerator &RNG) override;
|
D | IceTargetLoweringARM32.h | 300 RandomNumberGenerator &RNG) override;
|
D | IceTargetLoweringX86BaseImpl.h | 6045 RandomNumberGenerator &RNG) { 6046 RandomNumberGeneratorWrapper RNGW(RNG); 8452 RandomNumberGenerator RNG(getFlags().getRandomSeed(), 8455 [&RNG](uint64_t N) { return (uint32_t)RNG.next(N); });
|
D | IceTargetLoweringX86Base.h | 320 RandomNumberGenerator &RNG) override;
|
/external/swiftshader/third_party/subzero/unittest/ |
D | IceELFSectionTest.cpp | 97 RandomNumberGeneratorWrapper RNG(R); in TEST() local 100 RandomShuffle(Strings.begin(), Strings.end(), RNG); in TEST()
|
/external/libxml2/optim/ |
D | TOTRY | 6 - recheck > 4Gb instances for parsing, and RNG validation.
|
/external/boringssl/src/crypto/fipsmodule/ |
D | FIPS.md | 32 ## RNG design 44 There is a second interface to the RNG which allows the caller to supply bytes that will be XORed i… 46 …RNG state be zeroed when the process exits. In order to implement this, all per-thread RNG states …
|
/external/dnsmasq/ |
D | CHANGELOG | 421 arc4random() RNG, which is secure, but on other platforms, 422 it relied on the C-library RNG, which may be 424 replaces the libc RNG with the SURF RNG, from Daniel
|
/external/v8/benchmarks/ |
D | README.txt | 24 Math.random() and new Date() to build an RNG pool has been removed.
|
/external/curl/lib/vtls/ |
D | cyassl.c | 905 RNG rng; in Curl_cyassl_random()
|
/external/libevent/ |
D | whatsnew-2.0.txt | 532 internal RNG to generate DNS transaction IDs, so you don't need to supply 565 6.3. Secure RNG support
|
D | ChangeLog | 50 o Avoid other RNG initialization FS reads when urandom file is specified (9695e9c, bb52471) 54 o Really remove RNG seeds from the stack (f5ced88) 807 o Seed the RNG using sysctl() as well as /dev/urandom (71fc3eb) 1018 o Make RNG work when we have arc4random() but not arc4random_buf() (4ec8fea)
|
/external/libxml2/ |
D | NEWS | 484 Fix an unimplemented part in RNG value validation (Daniel Veillard), 711 558452 RNG compilation of optional multiple child (Daniel Veillard), 736 Fix the problem of revalidating a doc with RNG (Daniel Veillard), 1160 - improvements: structured interfaces for schemas and RNG error reports 1268 patterns with too many steps, bug in RNG choice optimization, line number
|
/external/swiftshader/third_party/subzero/ |
D | DESIGN.rst | 1148 a random number generator (RNG). The RNG is seeded with a combination of a
|