/external/swiftshader/src/Renderer/ |
SetupProcessor.hpp | 57 struct Gradient 68 Gradient color[2][4]; 69 Gradient texture[8][4]; 70 Gradient fog; 73 Gradient gradient[MAX_FRAGMENT_INPUTS][4]; member in union:sw::SetupProcessor::States::__anon40246
|
/external/skia/modules/sksg/include/ |
SkSGGradient.h | 23 * Gradient base class. 25 class Gradient : public PaintNode { 46 Gradient() = default; 55 class LinearGradient final : public Gradient { 74 using INHERITED = Gradient; 77 class RadialGradient final : public Gradient { 100 using INHERITED = Gradient;
|
/external/skqp/modules/sksg/include/ |
SkSGGradient.h | 23 * Gradient base class. 25 class Gradient : public PaintNode { 46 Gradient() = default; 55 class LinearGradient final : public Gradient { 74 using INHERITED = Gradient; 77 class RadialGradient final : public Gradient { 100 using INHERITED = Gradient;
|
/external/tensorflow/tensorflow/c/eager/ |
tape.h | 18 // Language-agnostic gradient tape. Does not perform backpropagation, just 61 // Gradient is the type returned by gradient functions. In Python TF it's either 75 template <typename Gradient, typename BackwardFunction, typename TapeTensor> 80 // Returns the number of elements in the gradient tensor. 81 virtual int64 NumElements(Gradient* tensor) const = 0; 85 virtual Gradient* AggregateGradients( 86 gtl::ArraySlice<Gradient*> gradient_tensors) const = 0; 89 virtual Gradient* Zeros(const TapeTensor& tensor) const = 0; 92 virtual Gradient* Ones(const TapeTensor& tensor) const = 0 [all...] |
/external/swiftshader/src/Device/ |
SetupProcessor.hpp | 55 struct Gradient 62 Gradient gradient[MAX_FRAGMENT_INPUTS][4]; member in struct:sw::SetupProcessor::States
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
test_rendering.c | 105 static void Gradient(short *block, unsigned int start, unsigned int stop, int horizontal, unsigned int intra_unsigned) 221 Gradient 238 Gradient 249 Gradient
|
/external/skia/modules/sksg/src/ |
SkSGGradient.cpp | 15 void Gradient::onApplyToPaint(SkPaint* paint) const {
|
/external/skqp/modules/sksg/src/ |
SkSGGradient.cpp | 15 void Gradient::onApplyToPaint(SkPaint* paint) const {
|
/external/skia/modules/skottie/src/ |
SkottieAdapter.h | 22 class Gradient; 177 GradientAdapter(sk_sp<sksg::Gradient>, size_t stopCount); 182 sk_sp<sksg::Gradient> fGradient;
|
SkottieAdapter.cpp | 180 GradientAdapter::GradientAdapter(sk_sp<sksg::Gradient> grad, size_t stopCount) 192 SkDebugf("!! Invalid gradient stop array size: %zu\n", fColorStops.size()); 197 std::vector<sksg::Gradient::ColorStop> stops;
|
SkottieShapeLayer.cpp | 148 sk_sp<sksg::Gradient> AttachGradient(const skjson::ObjectValue& jgrad, 158 sk_sp<sksg::Gradient> gradient_node;
|
/external/skqp/modules/skottie/src/ |
SkottieAdapter.h | 20 class Gradient; 175 GradientAdapter(sk_sp<sksg::Gradient>, size_t stopCount); 180 sk_sp<sksg::Gradient> fGradient;
|
SkottieAdapter.cpp | 178 GradientAdapter::GradientAdapter(sk_sp<sksg::Gradient> grad, size_t stopCount) 190 SkDebugf("!! Invalid gradient stop array size: %zu\n", fColorStops.size()); 195 std::vector<sksg::Gradient::ColorStop> stops;
|
SkottieShapeLayer.cpp | 148 sk_sp<sksg::Gradient> AttachGradient(const skjson::ObjectValue& jgrad, 158 sk_sp<sksg::Gradient> gradient_node;
|
/external/tensorflow/tensorflow/contrib/opt/python/training/ |
sign_decay.py | 117 "SGDR: Stochastic Gradient Descent with Warm Restarts"
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
sgdr_learning_rate_decay.py | 30 """Implements Stochastic Gradient Descent with Warm Restarts (SGDR). 32 As described in "SGDR: Stochastic Gradient Descent
|
/external/skia/tests/ |
GradientTest.cpp | 298 // A linear gradient interval can, due to numerical imprecision (likely in the divide) 454 nullptr, // hits the legacy gradient impl 541 DEF_TEST(Gradient, reporter) {
|
/external/skqp/tests/ |
GradientTest.cpp | 298 // A linear gradient interval can, due to numerical imprecision (likely in the divide) 454 nullptr, // hits the legacy gradient impl 541 DEF_TEST(Gradient, reporter) {
|
/external/tensorflow/tensorflow/python/ops/ |
functional_ops.py | 526 def Gradient(inputs, f, name=None): 527 r"""Computes the gradient function for function f via backpropagation. 531 f: The function we want to compute the gradient for. 534 produces M outputs. Its gradient function 'g', which is a function [all...] |
/external/python/apitools/samples/fusiontables_sample/fusiontables_v1/ |
fusiontables_v1_messages.py | 529 strokeColorStyler: Column-value, gradient or buckets styler that is used 611 fillColorStyler: Column-value, gradient, or bucket styler that is used to 616 strokeColorStyler: Column-value, gradient or buckets styler that is used 710 GradientValue: Gradient function that interpolates a range of colors based 717 gradient: Gradient function that interpolates a range of colors based on 722 "fusiontables#gradient" if the styling of the row is to be based on 723 applying the gradient function on the column value; or 729 """Gradient function that interpolates a range of colors based on column 760 gradient = _messages.MessageField('GradientValue', 3 variable in class:StyleFunction [all...] |
/external/tensorflow/tensorflow/python/kernel_tests/ |
functional_ops_test.py | [all...] |
/external/tensorflow/tensorflow/go/op/ |
wrappers.go | 129 // This operation has a gradient and thus allows for training `min` and `max` [all...] |