Home
last modified time | relevance | path

Searched defs:Uniform (Results 1 – 25 of 100) sorted by relevance

1234

/external/skia/src/gpu/ganesh/gl/
DGrGLProgramDataManager.h81 struct Uniform { struct
92 SkTArray<Uniform, true> fUniforms; argument
/external/skia/src/gpu/ganesh/
DGrUniformDataManager.h56 struct Uniform { struct
73 void* getBufferPtrAndMarkDirty(const Uniform& uni) const; argument
DGrShaderVar.h27 Uniform, enumerator
/external/skia/src/sksl/ir/
DSkSLProgram.h34 struct Uniform { struct
35 std::string fName;
36 SkSL::Type::NumberKind fKind;
37 int fColumns;
38 int fRows;
39 int fSlot;
/external/skia/include/effects/
DSkRuntimeEffect.h63 struct Uniform { struct
79 // Uniform is declared as an array. 'count' contains array length. argument
100 std::string_view name;
101 size_t offset;
102 Type type;
103 int count;
104 uint32_t flags;
106 bool isArray() const { return SkToBool(this->flags & kArray_Flag); } in isArray()
107 bool isColor() const { return SkToBool(this->flags & kColor_Flag); } in isColor()
/external/cronet/third_party/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/tensorflow/third_party/absl/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/angle/third_party/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/openscreen/third_party/abseil/src/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/libtextclassifier/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/webrtc/third_party/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/
Ddistributions.h123 Uniform(TagType tag, in Uniform() function
143 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
166 Uniform(TagType tag, in Uniform() function
190 Uniform(URBG&& urbg, // NOLINT(runtime/references) in Uniform() function
212 Uniform(URBG&& urbg) { // NOLINT(runtime/references) in Uniform() function
/external/skia/src/gpu/graphite/
DUniform.h26 constexpr Uniform(const char* name, SkSLType type) : Uniform(name, type, kNonArray) {} in Uniform() function
28 constexpr Uniform(const char* name, SkSLType type, int count) in Uniform() function
/external/deqp/framework/opengl/simplereference/
DsglrShaderProgram.hpp96 struct Uniform struct
98 Uniform (const std::string& name_, glu::DataType type_) : name(name_), type(type_) { } in Uniform() argument
100 std::string name;
101 glu::DataType type;
/external/tensorflow/tensorflow/core/lib/random/
Dsimple_philox.cc23 uint32 SimplePhilox::Uniform(uint32 n) { in Uniform() function in tensorflow::random::SimplePhilox
/external/leveldb/util/
Drandom.h49 uint32_t Uniform(int n) { return Next() % n; } in Uniform() function
/external/cronet/net/third_party/quiche/src/quiche/http2/test_tools/
Dhttp2_random.h42 uint32_t Uniform(uint32_t n) { return Rand64() % n; } in Uniform() function
/external/rust/crates/rand/src/distributions/
Duniform.rs179 pub struct Uniform<X: SampleUniform>(X::Sampler); struct
181 impl<X: SampleUniform> Uniform<X> { impl
203 impl<X: SampleUniform> Distribution<X> for Uniform<X> { implementation
304 impl<X: SampleUniform> From<Range<X>> for Uniform<X> { implementation
310 impl<X: SampleUniform> From<RangeInclusive<X>> for Uniform<X> { implementation
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DGlProgram.java292 private static final class Uniform { class in GlProgram
331 private Uniform(String name, int location, int type) { in Uniform() method in GlProgram.Uniform
/external/tensorflow/tensorflow/python/ops/distributions/
Duniform.py33 class Uniform(distribution.Distribution): class
/external/tensorflow/tensorflow/core/kernels/
Dstateless_random_gamma_op_gpu.cu.cc55 typedef random::UniformDistribution<random::PhiloxRandom, double> Uniform; in FillKernel() typedef
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_probe_benchmark.cc334 struct Uniform { struct
336 T operator()(T) const { in operator ()()
440 std::string Name(Random<T, Uniform>*) { in Name() argument
/external/cronet/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_probe_benchmark.cc334 struct Uniform { struct
336 T operator()(T) const { in operator ()()
440 std::string Name(Random<T, Uniform>*) { in Name() argument
/external/webrtc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_probe_benchmark.cc334 struct Uniform { struct
336 T operator()(T) const { in operator ()()
440 std::string Name(Random<T, Uniform>*) { in Name() argument

1234