HomeSort by relevance Sort by last modified time
    Searched refs:New64 (Results 1 - 25 of 35) sorted by null

1 2

  /external/tensorflow/tensorflow/core/lib/random/
random.h 26 uint64 New64();
random_test.cc 29 uint64 x = New64();
philox_random_test_utils.h 29 inline uint64 GetTestSeed() { return New64(); }
random.cc 34 uint64 New64() {
  /external/tensorflow/tensorflow/core/distributed_runtime/
request_id.cc 25 request_id = random::New64();
cluster_function_library_runtime.cc 182 const uint64 step_id = (random::New64() & ((1uLL << 56) - 1)) | (1uLL << 56);
  /external/tensorflow/tensorflow/core/util/
guarded_philox_random.cc 38 seed = random::New64();
39 seed2 = random::New64();
tensor_slice_writer.cc 88 tmpname_(strings::StrCat(filename, ".tempstate", random::New64())),
  /external/tensorflow/tensorflow/core/platform/default/
tracing_impl.h 44 inline uint64 Tracing::UniqueId() { return random::New64(); }
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder_test.cc 90 random::PhiloxRandom gen(random::New64(), random::New64());
97 random::PhiloxRandom gen(random::New64(), random::New64());
range_coder_ops_test.cc 216 random::PhiloxRandom philox(random::New64(), random::New64());
234 random::PhiloxRandom philox(random::New64(), random::New64());
269 random::PhiloxRandom philox(random::New64(), random::New64());
415 random::PhiloxRandom philox(random::New64(), random::New64());
454 random::PhiloxRandom philox(random::New64(), random::New64());
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
device.cc 46 da.set_incarnation(random::New64());
  /external/tensorflow/tensorflow/core/kernels/data/
captured_function.h 86 return -std::abs(static_cast<int64>(random::New64()));
random_dataset_op.cc 44 seed = random::New64();
45 seed2 = random::New64();
shuffle_dataset_op.cc 332 seed = random::New64();
333 seed2 = random::New64();
464 seed = random::New64();
465 seed2 = random::New64();
  /external/tensorflow/tensorflow/core/platform/cloud/
retrying_utils.cc 72 const int64 random_micros = random::New64() % 1000000;
  /prebuilts/go/darwin-x86/src/hash/fnv/
fnv_test.go 73 testGolden(t, New64(), golden64)
112 {"64", func() hash.Hash { return New64() }, golden64},
161 testIntegrity(t, New64())
226 benchmarkKB(b, New64())
  /prebuilts/go/linux-x86/src/hash/fnv/
fnv_test.go 73 testGolden(t, New64(), golden64)
112 {"64", func() hash.Hash { return New64() }, golden64},
161 testIntegrity(t, New64())
226 benchmarkKB(b, New64())
  /external/tensorflow/tensorflow/core/kernels/
sdca_ops_test.cc 108 return (random::New64() % 2) == 0 ? 0.0f : 1.0f;
117 return (random::New64() % 2) == 0 ? 0.0f : 1.0f;
fractional_avg_pool_op.cc 56 seed_ = random::New64();
57 seed2_ = random::New64();
fractional_max_pool_op.cc 59 seed_ = random::New64();
60 seed2_ = random::New64();
random_shuffle_queue_op.cc 100 seed = random::New64();
101 seed2 = random::New64();
  /prebuilts/go/darwin-x86/src/hash/
marshal_test.go 45 {"fnv64", func() hash.Hash { return fnv.New64() }, fromHex("666e7603cc64e0e97692c637")},
  /prebuilts/go/linux-x86/src/hash/
marshal_test.go 45 {"fnv64", func() hash.Hash { return fnv.New64() }, fromHex("666e7603cc64e0e97692c637")},
  /external/tensorflow/tensorflow/cc/gradients/
math_grad_test.cc 210 return v[random::New64() % v.size()];
214 return v[random::New64() % v.size()];
605 const int b = 1 + (random::New64() % 4);
642 int Rand() { return 1 + (random::New64() % 10); }

Completed in 327 milliseconds

1 2