Home
last modified time | relevance | path

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

12345678

/aosp_15_r20/prebuilts/go/linux-x86/src/image/
Dnames.go24 type Uniform struct { struct
25 C color.Color
28 func (c *Uniform) RGBA() (r, g, b, a uint32) {
32 func (c *Uniform) ColorModel() color.Model {
36 func (c *Uniform) Convert(color.Color) color.Color {
40 func (c *Uniform) Bounds() Rectangle { return Rectangle{Point{-1e9, -1e9}, Point{1e9, 1e9}} }
42 func (c *Uniform) At(x, y int) color.Color { return c.C }
44 func (c *Uniform) RGBA64At(x, y int) color.RGBA64 {
50 func (c *Uniform) Opaque() bool {
/aosp_15_r20/external/skia/include/effects/
H A DSkRuntimeEffect.h62 struct SK_API Uniform { struct
78 // Uniform is declared as an array. 'count' contains array length. argument
99 std::string_view name;
100 size_t offset;
101 Type type;
102 int count;
103 uint32_t flags;
105 bool isArray() const { return SkToBool(this->flags & kArray_Flag); } in isArray()
106 bool isColor() const { return SkToBool(this->flags & kColor_Flag); } in isColor()
/aosp_15_r20/external/skia/src/sksl/ir/
H A DSkSLProgram.h33 struct Uniform { struct
34 std::string fName;
35 SkSL::Type::NumberKind fKind;
36 int fColumns;
37 int fRows;
38 int fSlot;
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/random/
H A 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
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/random/
H A 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
/aosp_15_r20/external/abseil-cpp/absl/random/
H A 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
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/random/
H A 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
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/random/
H A 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
/aosp_15_r20/external/rust/android-crates-io/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
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/random/
H A 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
/aosp_15_r20/external/skia/src/gpu/ganesh/gl/
H A DGrGLProgramDataManager.h78 struct Uniform { struct
89 skia_private::TArray<Uniform, true> fUniforms; argument
/aosp_15_r20/external/skia/src/gpu/ganesh/
H A DGrUniformDataManager.h58 struct Uniform { struct
75 void* getBufferPtrAndMarkDirty(const Uniform& uni) const; argument
/aosp_15_r20/external/deqp/framework/opengl/simplereference/
H A DsglrShaderProgram.hpp112 struct Uniform struct
114 Uniform(const std::string &name_, glu::DataType type_) : name(name_), type(type_) in Uniform() argument
118 std::string name;
119 glu::DataType type;
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/rand-0.8.5/src/distributions/
H A 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
/aosp_15_r20/external/rust/android-crates-io/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
/aosp_15_r20/external/skia/src/gpu/graphite/
H A DUniform.h28 : Uniform(name, type, count, /*isPaintColor=*/false) {} in Uniform() function
49 constexpr Uniform(const char* name, SkSLType type, int count, bool isPaintColor) in Uniform() function
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
H A 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
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/container/internal/
H A Draw_hash_set_probe_benchmark.cc341 struct Uniform { struct
343 T operator()(T) const { in operator ()()
447 std::string Name(Random<T, Uniform>*) { in Name() argument
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/container/internal/
H A 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
/aosp_15_r20/external/abseil-cpp/absl/container/internal/
H A Draw_hash_set_probe_benchmark.cc341 struct Uniform { struct
343 T operator()(T) const { in operator ()()
447 std::string Name(Random<T, Uniform>*) { in Name() argument
/aosp_15_r20/external/rust/android-crates-io/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
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/container/internal/
H A Draw_hash_set_probe_benchmark.cc341 struct Uniform { struct
343 T operator()(T) const { in operator ()()
447 std::string Name(Random<T, Uniform>*) { in Name() argument
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/container/internal/
H A 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
/aosp_15_r20/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp286 struct Uniform struct
288 string name;
289 glu::VarType type;
291 Uniform(const char *const name_, const glu::VarType &type_) : name(name_), type(type_) in Uniform() argument
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
H A DGlUtil.java501 private static final class Uniform { class in GlUtil
540 private Uniform(String name, int location, int type) { in Uniform() method in GlUtil.Uniform

12345678