/aosp_15_r20/external/pytorch/test/dynamo/ |
H A D | test_python_autograd.py | 28 class Variable: class 43 def __mul__(self, rhs: "Variable") -> "Variable": 47 def __add__(self, rhs: "Variable") -> "Variable": 75 def grad(L, desired_results: List[Variable]) -> List[Variable]: 116 def operator_mul(self: Variable, rhs: Variable) -> Variable: 130 def propagate(dL_doutputs: List[Variable]): 147 def operator_add(self: Variable, rhs: Variable) -> Variable: 153 def propagate(dL_doutputs: List[Variable]): 167 def operator_sum(self: Variable, name: Optional[str]) -> "Variable": 171 def propagate(dL_doutputs: List[Variable]): [all …]
|
/aosp_15_r20/frameworks/compile/slang/ |
D | slang_rs_reflection_state.h | 697 struct Variable { struct 698 Variable() : mInitializers(nullptr) { } in Variable() function 699 ~Variable() { delete [] mInitializers; } in ~Variable() 702 void operator=(const Variable &) = delete; 704 std::string mName; 705 llvm::StringRef mType; 706 clang::APValue *mInitializers; 707 size_t mInitializerCount; 708 size_t mAllocSize; 709 bool mIsConst;
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/gl/ |
H A D | variable.h | 32 struct Variable { struct 33 using ValueType = 37 std::string name; 38 ValueType value;
|
/aosp_15_r20/build/blueprint/parser/ |
H A D | ast.go | 397 type Variable struct { struct 398 Name string 399 NamePos scanner.Position 400 Type_ Type 403 func (x *Variable) Pos() scanner.Position { return x.NamePos } 404 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } 406 func (x *Variable) Copy() Expression { 411 func (x *Variable) Eval(scope *Scope) (Expression, error) { 419 func (x *Variable) PrintfInto(value string) error { 423 func (x *Variable) MarkReferencedVariables(scope *Scope) { [all …]
|
/aosp_15_r20/build/soong/androidmk/parser/ |
H A D | ast.go | 101 type Variable struct { struct 102 Name *MakeString 105 func (x *Variable) Pos() Pos { return x.Name.Pos() } 106 func (x *Variable) End() Pos { return x.Name.End() } 108 func (x *Variable) Dump() string {
|
/aosp_15_r20/external/tensorflow/tensorflow/dtensor/python/ |
H A D | save_restore.py | 88 tensors: List[Union[ops.Tensor, tf_variables.Variable]], 136 def enable_save_as_bf16(variables: List[tf_variables.Variable]): 156 name_tensor_dict: Dict[str, Union[ops.Tensor, tf_variables.Variable]], 229 tf_variables.Variable]]):
|
/aosp_15_r20/external/federated-compute/fcp/artifact_building/ |
H A D | federated_compute_plan_builder.py | 195 secagg_intermediate_update_vars: list[tf.Variable], 307 variables: list[tf.Variable], 308 tensors: list[tf.Variable], 729 Callable[[tff.StructType, tff.StructType, bool], list[tf.Variable]] 1482 Callable[[tff.StructType, tff.StructType, bool], list[tf.Variable]]
|
H A D | checkpoint_utils.py | 39 Callable[[tff.StructType, tff.StructType, bool], list[tf.Variable]] 223 var_list: Union[Iterable[tf.Variable], Mapping[str, tf.Variable]],
|
/aosp_15_r20/external/swiftshader/third_party/subzero/src/ |
H A D | IceTargetLowering.h | 521 std::function<Inst *(Variable *, Variable *)> insertScalarInstruction, in applyToThunkedArgs() 528 applyToThunkedArgs(std::function<Inst *(Variable *, Variable *, Variable *)> in applyToThunkedArgs() 538 std::function<Inst *(Variable *, Variable *, Variable *, Variable *)> in applyToThunkedArgs()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/tpu/ |
H A D | tpu_embedding_for_serving.py | 176 def _ragged_embedding_lookup_with_reduce(table: tf_variables.Variable, 210 tables: Dict[tpu_embedding_v2_utils.TableConfig, tf_variables.Variable], 324 weight: Optional[sparse_tensor.SparseTensor], table: tf_variables.Variable, 366 weight: Optional[ragged_tensor.RaggedTensor], table: tf_variables.Variable,
|
/aosp_15_r20/external/swiftshader/src/Vulkan/Debug/ |
H A D | Variable.hpp | 38 struct Variable struct 40 std::string name; 41 std::shared_ptr<Value> value; 44 operator bool() const { return value != nullptr; } in operator bool()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/ |
H A D | ProcessEnvironment.java | 179 private static class Variable class in ProcessEnvironment 182 protected Variable(String str, byte[] bytes) { in Variable() method in ProcessEnvironment.Variable 253 public StringEnvironment(Map<Variable,Value> m) {this.m = m;} in StringEnvironment() 331 public StringEntry(Map.Entry<Variable,Value> e) {this.e = e;} in StringEntry() 349 public StringEntrySet(Set<Map.Entry<Variable,Value>> s) {this.s = s;} in StringEntrySet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/3/libcore/ojluni/src/main/java/java/lang/ |
D | ProcessEnvironment.java | 179 private static class Variable class in ProcessEnvironment 182 protected Variable(String str, byte[] bytes) { in Variable() method in ProcessEnvironment.Variable 253 public StringEnvironment(Map<Variable,Value> m) {this.m = m;} in StringEnvironment() 331 public StringEntry(Map.Entry<Variable,Value> e) {this.e = e;} in StringEntry() 349 public StringEntrySet(Set<Map.Entry<Variable,Value>> s) {this.s = s;} in StringEntrySet()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/ |
D | ProcessEnvironment.java | 179 private static class Variable class in ProcessEnvironment 182 protected Variable(String str, byte[] bytes) { in Variable() method in ProcessEnvironment.Variable 253 public StringEnvironment(Map<Variable,Value> m) {this.m = m;} in StringEnvironment() 331 public StringEntry(Map.Entry<Variable,Value> e) {this.e = e;} in StringEntry() 349 public StringEntrySet(Set<Map.Entry<Variable,Value>> s) {this.s = s;} in StringEntrySet()
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/ |
H A D | gl4cEnhancedLayoutsTests.hpp | 381 struct Variable struct 385 typedef std::vector<Variable> Vector; 386 typedef std::vector<Variable *> PtrVector; 389 enum STORAGE 401 enum VARYING_DIRECTION 407 enum FLAVOUR 415 enum TYPE 422 struct Descriptor 459 Variable(const glw::GLchar *name, const glw::GLchar *qualifiers, glw::GLint expected_component, in Variable() argument 472 Variable(const glw::GLchar *name, const glw::GLchar *qualifiers, glw::GLint expected_component, in Variable() function [all …]
|
/aosp_15_r20/external/apache-commons-bcel/src/examples/Mini/ |
H A D | Variable.java | 26 public class Variable implements EnvEntry { class 34 public Variable(ASTIdent name) { in Variable() method in Variable 38 public Variable(ASTIdent name, boolean reserved) { in Variable() method in Variable
|
/aosp_15_r20/build/make/tools/product_config/src/com/android/build/config/ |
H A D | OutputChecker.java | 53 public static class Variable { class in OutputChecker 59 public Variable(String name, VarType type, Str original) { in Variable() method in OutputChecker.Variable 63 public Variable(String name, VarType type, Str original, Value updated) { in Variable() method in OutputChecker.Variable
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/val/ |
D | val_annotation_test.cpp | 359 TEST_P(StructDecorations, Variable) { in TEST_P() argument 490 TEST_P(ArrayDecorations, Variable) { in TEST_P() argument 556 TEST_P(BuiltInDecorations, Variable) { in TEST_P() argument 675 TEST_P(MemoryObjectDecorations, Variable) { in TEST_P() argument 809 TEST_P(VariableDecorations, Variable) { in TEST_P() argument
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/val/ |
H A D | val_annotation_test.cpp | 359 TEST_P(StructDecorations, Variable) { in TEST_P() argument 490 TEST_P(ArrayDecorations, Variable) { in TEST_P() argument 556 TEST_P(BuiltInDecorations, Variable) { in TEST_P() argument 675 TEST_P(MemoryObjectDecorations, Variable) { in TEST_P() argument 809 TEST_P(VariableDecorations, Variable) { in TEST_P() argument
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/val/ |
H A D | val_annotation_test.cpp | 402 TEST_P(StructDecorations, Variable) { in TEST_P() argument 533 TEST_P(ArrayDecorations, Variable) { in TEST_P() argument 599 TEST_P(BuiltInDecorations, Variable) { in TEST_P() argument 718 TEST_P(MemoryObjectDecorations, Variable) { in TEST_P() argument 852 TEST_P(VariableDecorations, Variable) { in TEST_P() argument
|
/aosp_15_r20/system/tools/aidl/ |
D | ast_java.h | 88 struct Variable : public Expression { struct 93 Variable() = default; argument
|
/aosp_15_r20/external/javassist/src/main/javassist/compiler/ast/ |
H A D | Variable.java | 24 public class Variable extends Symbol { class 29 public Variable(String sym, Declarator d) { in Variable() method in Variable
|
/aosp_15_r20/external/flatbuffers/src/ |
H A D | namer.h | 138 virtual std::string Variable(const std::string &s) const { in Variable() function 143 std::string Variable(const std::string &p, const T &s) const { in Variable() function 146 virtual std::string Variable(const std::string &p, in Variable() function
|
/aosp_15_r20/external/harfbuzz_ng/src/OT/Color/COLR/ |
H A D | COLR.hh | 246 struct Variable struct 248 static constexpr bool is_variable = true; 250 Variable<T>* copy (hb_serialize_context_t *c) const in copy() 256 void closurev1 (hb_colrv1_closure_context_t* c) const in closurev1() 264 bool subset (hb_subset_context_t *c, in subset() 286 bool sanitize (hb_sanitize_context_t *c) const in sanitize() 292 void paint_glyph (hb_paint_context_t *c) const in paint_glyph() 298 void get_color_stop (hb_paint_context_t *c, in get_color_stop() 305 hb_paint_extend_t get_extend () const in get_extend() 311 T value; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Core/ |
D | Value.h | 33 class Variable; variable 65 Variable enumerator
|