Searched defs:Constant (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/test/Sema/
H A Dformat-strings-enum.c15 typedef enum { Constant = 0 } TestEnum; enumerator in enum:__anon3210
16 // Note that in C, the type of 'Constant' is 'int'. In C++ it is 'TestEnum'.
21 printf("%d", Constant); // no-warning
24 printf("%lld", Constant); // expected-warning{{format specifies type 'long long'}}
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
H A DConstant.java27 public class Constant { class
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-nodeduct.cpp9 template<typename T, T* Address> struct Constant { }; struct
10 Constant<void(int), &f<int> > constant0;
/external/clang/test/CodeGenCXX/
H A Dcxx1z-initializer-aggregate.cpp3 namespace Constant { namespace
/external/llvm/include/llvm/IR/
H A DConstant.h1 //===-- llvm/Constant.h - Constant class definition -------------*- C++ -*-===//
10 // This file contains the declaration of the Constant class.
40 /// @brief LLVM Constant Representation
41 class Constant : public User { class in namespace:llvm
42 void operator=(const Constant &) = delete;
43 Constant(const Constant &) = delete;
47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) function in class:llvm::Constant
98 Constant *getAggregateElemen
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DConstant.java32 public abstract class Constant implements VisitorAccepter class in inherits:VisitorAccepter
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstant.h1 //===-- llvm/Constant.h - Constant class definition -------------*- C++ -*-===//
10 // This file contains the declaration of the Constant class.
40 /// @brief LLVM Constant Representation
41 class Constant : public User { class in namespace:llvm
42 void operator=(const Constant &); // Do not implement
43 Constant(const Constant &); // Do not implement
46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) function in class:llvm::Constant
97 void getVectorElements(SmallVectorImpl<Constant*>
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DConstant.h1 //===-- llvm/Constant.h - Constant class definition -------------*- C++ -*-===//
10 // This file contains the declaration of the Constant class.
41 /// @brief LLVM Constant Representation
42 class Constant : public User { class in namespace:llvm
46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) function in class:llvm::Constant
50 void operator=(const Constant &) = delete;
51 Constant(const Constant &) = delete;
100 Constant *getAggregateElemen
[all...]
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/core/
H A DConstant.java34 public final class Constant<T> extends PrimitiveOp implements Operand<T> { class in inherits:PrimitiveOp,Operand
43 * Constant.create(scope, 7); // returns a constant scalar tensor 7
50 public static <T> Constant<T> create(Scope scope, Object object, Class<T> type) {
69 public static Constant<Integer> create(Scope scope, long[] shape, IntBuffer data) {
88 public static Constant<Float> create(Scope scope, long[] shape, FloatBuffer data) {
107 public static Constant<Double> create(Scope scope, long[] shape, DoubleBuffer data) {
126 public static Constant<Long> create(Scope scope, long[] shape, LongBuffer data) {
135 * <p>Creates a Constant with the provided shape of any type where the constant data has been
147 public static <T> Constant<T> create(Scope scope, Class<T> type, long[] shape, ByteBuffer data) {
153 private static <T> Constant<
168 private Constant(Operation operation) { method in class:Constant
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
H A DConstant.java39 class Constant { class
45 * (for Constant Integer, Long, Float, Double, STR, UTF8, Class, NameType,
94 public Constant() { method in class:Constant
97 public Constant(final Constant i) { method in class:Constant
229 if (!(o instanceof Constant)) {
232 Constant c = (Constant) o;
/external/tensorflow/tensorflow/core/kernels/
H A Dmerge_v2_checkpoints_op_test.cc47 Tensor Constant(T v, TensorShape shape) { function in namespace:tensorflow::__anon26508
74 {Constant<float>(0, TensorShape({10}))});
76 {Constant<int64>(1, TensorShape({1, 16, 18})),
77 Constant<bool>(true, TensorShape({}))});
98 test::ExpectTensorEqual<float>(Constant<float>(0, TensorShape({10})),
105 Constant<int64>(1, TensorShape({1, 16, 18})), val1);
110 test::ExpectTensorEqual<bool>(Constant<bool>(true, TensorShape({})),
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DConstant.java20 public final class Constant { class
31 public final static Constant LINEBR = new Constant(LINEBR_S);
32 public final static Constant FULL_LINEBR = new Constant(FULL_LINEBR_S);
33 public final static Constant NULL_OR_LINEBR = new Constant(NULL_OR_LINEBR_S);
34 public final static Constant NULL_BL_LINEBR = new Constant(NULL_BL_LINEBR_S);
35 public final static Constant NULL_BL_T_LINEB
45 private Constant(String content) { method in class:Constant
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PTX/MCTargetDesc/
H A DPTXBaseInfo.h26 Constant = 1, enumerator in enum:llvm::PTXStateSpace::__anon22894
/external/tensorflow/tensorflow/contrib/keras/api/keras/initializers/
H A D__init__.py22 from tensorflow.python.keras._impl.keras.initializers import Constant namespace
/external/tensorflow/tensorflow/python/keras/initializers/
H A D__init__.py22 from tensorflow.python.keras._impl.keras.initializers import Constant namespace
/external/tensorflow/tensorflow/python/keras/_impl/keras/
H A Dinitializers.py25 from tensorflow.python.ops.init_ops import Constant namespace
176 constant = Constant
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DConstant.java24 public class Constant { class
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h35 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
174 DenseBase<Derived>::Constant(Index rows, Index cols, const Scalar& value) function in class:Eigen::DenseBase
196 DenseBase<Derived>::Constant(Index size, const Scalar& value) function in class:Eigen::DenseBase
212 DenseBase<Derived>::Constant(const Scalar& value) function in class:Eigen::DenseBase
312 * \sa setConstant(), Constant(), class CwiseNullaryOp
322 * \sa fill(), setConstant(Index,const Scalar&), setConstant(Index,Index,const Scalar&), setZero(), setOnes(), Constant(), class CwiseNullaryOp, setZero(), setOnes()
327 return derived() = Constant(rows(), cols(), val);
337 * \sa MatrixBase::setConstant(const Scalar&), setConstant(Index,Index,const Scalar&), class CwiseNullaryOp, MatrixBase::Constant(const Scalar&)
356 * \sa MatrixBase::setConstant(const Scalar&), setConstant(Index,const Scalar&), class CwiseNullaryOp, MatrixBase::Constant(const Scalar&)
429 return Constant(row
[all...]
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h137 Constant, enumerator in enum:llvm::StackMaps::Location::LocationType
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h35 Constant.Int = i;
39 Constant.CFP = CFP;
43 Constant.CIP = CIP;
62 } Constant; member in struct:llvm::DebugLocEntry::Value
71 int64_t getInt() const { return Constant.Int; }
72 const ConstantFP *getConstantFP() const { return Constant.CFP; }
73 const ConstantInt *getConstantInt() const { return Constant.CIP; }
87 Constant.CIP->dump();
89 Constant.CFP->dump();
114 /// share the same Loc/Constant an
[all...]
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp288 case MCExpr::Constant: {
292 const MCConstantExpr *Constant = cast<MCConstantExpr>(Expr); local
294 if (!Constant->evaluateAsAbsolute(TargetAddress)) {
1195 // Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
/external/mesa3d/src/compiler/nir/
H A Dnir_algebraic.py76 return Constant(val, name_base)
82 % if isinstance(val, Constant):
115 Constant=Constant,
121 class Constant(Value): class in inherits:Value
337 if isinstance(val, (Constant, Variable)):
367 if isinstance(val, Constant):
398 if isinstance(val, Constant):
444 if isinstance(val, Constant):
/external/tensorflow/tensorflow/core/graph/
H A Dquantize_training_test.cc49 Node* Constant(gtl::ArraySlice<T> values, TensorShape shape) { function in class:tensorflow::__anon26314::QuantizeTrainingTest
50 return test::graph::Constant(g_.get(), test::AsTensor(values, shape));
87 Node* a = Constant<float>({1.0, 2.0, 3.0, 4.0}, {2, 2});
88 Node* b = Constant<float>({1.0, 2.0, 3.0, 4.0}, {2, 2});
138 Node* a = Constant<float>({1.0, 2.0, 3.0, 4.0}, {2, 2});
139 Node* b = Constant<float>({1.0, 2.0, 3.0, 4.0}, {2, 2});
181 Node* a = Constant<float>({1.0, 2.0, 3.0, 4.0}, {2, 2});
182 Node* b = Constant<float>({1.0, 2.0, 3.0, 4.0}, {2, 2});
183 Node* c = Constant<float>({0.0, 1.0, 1.0, 0.0}, {2, 2});
186 Node* d = Constant<floa
[all...]
/external/tensorflow/tensorflow/python/ops/
H A Dinit_ops.py121 @tf_export("keras.initializers.Constant", "initializers.constant",
123 class Constant(Initializer): class in inherits:Initializer
581 constant_initializer = Constant
/external/v8/src/compiler/
H A Djs-graph.cc149 Node* JSGraph::Constant(Handle<Object> value) { function in class:v8::internal::compiler::JSGraph
153 return Constant(value->Number());
170 Node* JSGraph::Constant(double value) { function in class:v8::internal::compiler::JSGraph
177 Node* JSGraph::Constant(int32_t value) { function in class:v8::internal::compiler::JSGraph
183 Node* JSGraph::Constant(uint32_t value) { function in class:v8::internal::compiler::JSGraph

Completed in 4730 milliseconds

123