/aosp_15_r20/prebuilts/go/linux-x86/src/image/ |
D | names.go | 24 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 D | SkRuntimeEffect.h | 62 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 D | SkSLProgram.h | 33 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 D | distributions.h | 123 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 D | distributions.h | 123 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 D | distributions.h | 123 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 D | distributions.h | 123 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 D | distributions.h | 123 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/ |
D | distributions.h | 123 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 D | distributions.h | 123 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 D | GrGLProgramDataManager.h | 78 struct Uniform { struct 89 skia_private::TArray<Uniform, true> fUniforms; argument
|
/aosp_15_r20/external/skia/src/gpu/ganesh/ |
H A D | GrUniformDataManager.h | 58 struct Uniform { struct 75 void* getBufferPtrAndMarkDirty(const Uniform& uni) const; argument
|
/aosp_15_r20/external/deqp/framework/opengl/simplereference/ |
H A D | sglrShaderProgram.hpp | 112 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 D | uniform.rs | 179 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/ |
D | uniform.rs | 179 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 D | Uniform.h | 28 : 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 D | GlProgram.java | 292 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 D | raw_hash_set_probe_benchmark.cc | 341 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 D | raw_hash_set_probe_benchmark.cc | 334 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 D | raw_hash_set_probe_benchmark.cc | 341 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/ |
D | raw_hash_set_probe_benchmark.cc | 334 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 D | raw_hash_set_probe_benchmark.cc | 341 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 D | raw_hash_set_probe_benchmark.cc | 334 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 D | es31fProgramUniformTests.cpp | 286 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 D | GlUtil.java | 501 private static final class Uniform { class in GlUtil 540 private Uniform(String name, int location, int type) { in Uniform() method in GlUtil.Uniform
|