HomeSort by relevance Sort by last modified time
    Searched refs:Const (Results 1 - 25 of 687) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Const.java 14 public class Const implements IExpression {
18 public Const(final double value) {
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 6 struct Const {
7 Const(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be const}}
8 Const& operator=(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be const}}
21 const AssignmentRet2& operator=(AssignmentRet2&&) = default; // expected-error {{explicitly-defaulted mo (…)
    [all...]
  /external/mesa3d/src/compiler/glsl/
standalone.cpp 132 static const struct standalone_options *options;
142 ctx->Const.GLSLVersion = options->glsl_version;
144 ctx->Const.MaxComputeWorkGroupCount[0] = 65535;
145 ctx->Const.MaxComputeWorkGroupCount[1] = 65535;
146 ctx->Const.MaxComputeWorkGroupCount[2] = 65535;
147 ctx->Const.MaxComputeWorkGroupSize[0] = 1024;
148 ctx->Const.MaxComputeWorkGroupSize[1] = 1024;
149 ctx->Const.MaxComputeWorkGroupSize[2] = 64;
150 ctx->Const.MaxComputeWorkGroupInvocations = 1024;
151 ctx->Const.MaxComputeSharedMemorySize = 32768
    [all...]
standalone_scaffolding.cpp 39 _mesa_warning(struct gl_context *ctx, const char *fmt, ...)
83 const char *)
103 _mesa_program_state_flags(const gl_state_index state[STATE_LENGTH])
109 _mesa_program_state_string(const gl_state_index state[STATE_LENGTH])
209 ctx->Const.GLSLVersion = 120;
212 ctx->Const.MaxLights = 8;
213 ctx->Const.MaxClipPlanes = 6;
214 ctx->Const.MaxTextureUnits = 2;
215 ctx->Const.MaxTextureCoordUnits = 2;
216 ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs = 16
    [all...]
glsl_parser_extras.cpp 44 const char *
52 static const unsigned known_desktop_glsl_versions[] =
54 static const unsigned known_desktop_gl_versions[] =
81 this->forced_language_version = ctx->Const.ForceGLSLVersion;
82 this->zero_init = ctx->Const.GLSLZeroInit;
96 this->Const.MaxLights = ctx->Const.MaxLights;
97 this->Const.MaxClipPlanes = ctx->Const.MaxClipPlanes;
98 this->Const.MaxTextureUnits = ctx->Const.MaxTextureUnits
    [all...]
builtin_variables.cpp 36 static const struct gl_builtin_uniform_element gl_NumSamples_elements[] = {
41 static const struct gl_builtin_uniform_element gl_PatchVerticesIn_elements[] = {
45 static const struct gl_builtin_uniform_element gl_DepthRange_elements[] = {
51 static const struct gl_builtin_uniform_element gl_ClipPlane_elements[] = {
55 static const struct gl_builtin_uniform_element gl_Point_elements[] = {
65 static const struct gl_builtin_uniform_element gl_FrontMaterial_elements[] = {
73 static const struct gl_builtin_uniform_element gl_BackMaterial_elements[] = {
81 static const struct gl_builtin_uniform_element gl_LightSource_elements[] = {
100 static const struct gl_builtin_uniform_element gl_LightModel_elements[] = {
104 static const struct gl_builtin_uniform_element gl_FrontLightModelProduct_elements[] =
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.c 149 extern const struct tnl_pipeline_stage *intel_pipeline[];
153 const struct gl_config * mesaVis,
197 ctx->Const.MaxTextureUnits = I915_TEX_UNITS;
198 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = I915_TEX_UNITS;
199 ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits = I915_TEX_UNITS;
200 ctx->Const.MaxTextureCoordUnits = I915_TEX_UNITS;
201 ctx->Const.MaxVarying = I915_TEX_UNITS;
202 ctx->Const.Program[MESA_SHADER_VERTEX].MaxOutputComponents =
203 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxInputComponents = ctx->Const.MaxVarying * 4
    [all...]
i830_context.c 51 extern const struct tnl_pipeline_stage *intel_pipeline[];
55 const struct gl_config * mesaVis,
99 intel->ctx.Const.MaxTextureUnits = I830_TEX_UNITS;
100 intel->ctx.Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = I830_TEX_UNITS;
101 intel->ctx.Const.MaxTextureCoordUnits = I830_TEX_UNITS;
106 ctx->Const.MaxTextureLevels = 12;
107 ctx->Const.Max3DTextureLevels = 9;
108 ctx->Const.MaxCubeTextureLevels = 11;
109 ctx->Const.MaxTextureRectSize = (1 << 11);
110 ctx->Const.MaxTextureUnits = I830_TEX_UNITS
    [all...]
  /external/turbine/java/com/google/turbine/binder/
ConstEvaluator.java 40 import com.google.turbine.model.Const;
41 import com.google.turbine.model.Const.Value;
79 private final Env<FieldSymbol, Const.Value> values;
91 Env<FieldSymbol, Const.Value> values,
103 public Const eval(Tree t) {
107 Const.Value a = (Const.Value) ((Tree.Literal) t).value();
113 return new Const.CharValue(((com.google.turbine.model.Const.CharValue) a).value());
115 return new Const.IntValue(((com.google.turbine.model.Const.IntValue) a).value())
    [all...]
  /external/turbine/java/com/google/turbine/binder/bound/
AnnotationValue.java 21 import com.google.turbine.model.Const;
24 public class AnnotationValue extends Const {
27 private final ImmutableMap<String, Const> values;
29 public AnnotationValue(ClassSymbol sym, ImmutableMap<String, Const> values) {
50 public ImmutableMap<String, Const> values() {
ClassValue.java 19 import com.google.turbine.model.Const;
23 public class ClassValue extends Const {
EnumConstantValue.java 20 import com.google.turbine.model.Const;
23 public class EnumConstantValue extends Const {
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_context.c 72 static const GLubyte *r200GetString( struct gl_context *ctx, GLenum name )
99 extern const struct tnl_pipeline_stage _r200_render_stage;
100 extern const struct tnl_pipeline_stage _r200_tcl_stage;
102 static const struct tnl_pipeline_stage *r200_pipeline[] = {
175 const struct gl_config *glVisual,
264 ctx->Const.MaxTextureUnits = driQueryOptioni (&rmesa->radeon.optionCache,
266 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = ctx->Const.MaxTextureUnits;
267 ctx->Const.MaxTextureCoordUnits = ctx->Const.MaxTextureUnits
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
gradients_test.cc 32 using ops::Const;
88 for (const bool expected : {false, true}) {
89 const Scope& scope = expected ? scope_expected_ : scope_test_;
91 auto x = Const(scope, {{1.0, 2.0}, {3.0, 4.0}});
92 auto y = Const(scope, {{1.0, 0.0}, {0.0, 1.0}});
99 auto dz = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
104 auto dz = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
114 for (const bool expected : {false, true}) {
115 const Scope& scope = expected ? scope_expected_ : scope_test_;
117 auto x = Const(scope, {{1.0, 2.0}, {3.0, 4.0}})
    [all...]
  /external/tensorflow/tensorflow/cc/ops/
const_op.h 26 /// @defgroup const_op Const Op
29 Output Const(const Scope& scope, const Input::Initializer& val);
31 Output ConstFromProto(const Scope& scope, const TensorProto& proto);
33 NodeBuilder::NodeOut AsNodeOut(const Scope& scope, const Input& inp);
36 Output Const(const Scope& scope, const Input::Initializer& val)
    [all...]
const_op_test.cc 27 void ExpectNodeEqual(const Node* n, gtl::ArraySlice<T> values,
38 void ExpectTypeAndShape(const Node* n, DataType expected_dtype,
53 auto c = ops::Const(root, 42.0f);
61 auto c = ops::Const(root, {{2.0}, {3.0}});
70 auto c1 = ops::Const(root, {});
74 auto c2 = ops::Const(root, {{}});
78 auto c3 = ops::Const(root, {{{}, {}}});
82 auto c4 = ops::Const<int>(root, {{{}}});
86 ops::Const(root, {{}, {{}}});
92 auto c = ops::Const(root, 42.0, {2, 2})
    [all...]
  /external/mesa3d/prebuilt-intermediates/main/
get_hash.h 1 typedef const unsigned short table_t[1024];
3 static const int prime_factor = 89, prime_step = 281;
5 static const struct value_desc values[] = {
25 { GL_ALIASED_LINE_WIDTH_RANGE, CONTEXT_FLOAT2(Const.MinLineWidth), NO_EXTRA },
26 { GL_MAX_ELEMENTS_VERTICES, CONTEXT_INT(Const.MaxArrayLockSize), NO_EXTRA },
27 { GL_MAX_ELEMENTS_INDICES, CONTEXT_INT(Const.MaxArrayLockSize), NO_EXTRA },
28 { GL_MAX_TEXTURE_SIZE, LOC_CUSTOM, TYPE_INT, offsetof(struct gl_context, Const.MaxTextureLevels), NO_EXTRA },
29 { GL_MAX_VIEWPORT_DIMS, CONTEXT_INT2(Const.MaxViewportWidth), NO_EXTRA },
31 { GL_ALIASED_POINT_SIZE_RANGE, CONTEXT_FLOAT2(Const.MinPointSize), NO_EXTRA },
48 { GL_SUBPIXEL_BITS, CONTEXT_INT(Const.SubPixelBits), NO_EXTRA }
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_context.c 72 extern const struct tnl_pipeline_stage _radeon_render_stage;
73 extern const struct tnl_pipeline_stage _radeon_tcl_stage;
75 static const struct tnl_pipeline_stage *radeon_pipeline[] = {
141 const struct gl_config *glVisual,
227 ctx->Const.MaxTextureUnits = driQueryOptioni (&rmesa->radeon.optionCache,
229 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = ctx->Const.MaxTextureUnits;
230 ctx->Const.MaxTextureCoordUnits = ctx->Const.MaxTextureUnits;
231 ctx->Const.MaxCombinedTextureImageUnits = ctx->Const.MaxTextureUnits
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_context.c 81 const char *const brw_vendor_string = "Intel Open Source Technology Center";
83 static const char *
84 get_bsw_model(const struct intel_screen *screen)
96 const char *
97 brw_get_renderer_string(const struct intel_screen *screen)
99 const char *chipset;
127 static const GLubyte *
130 const struct brw_context *const brw = brw_context(ctx)
    [all...]
  /external/turbine/java/com/google/turbine/type/
AnnoInfo.java 25 import com.google.turbine.model.Const;
35 private final ImmutableMap<String, Const> values;
38 SourceFile source, ClassSymbol sym, Anno tree, ImmutableMap<String, Const> values) {
61 public ImmutableMap<String, Const> values() {
70 public AnnoInfo withValues(ImmutableMap<String, Const> values) {
  /external/tensorflow/tensorflow/cc/gradients/
data_flow_grad_test.cc 28 using ops::Const;
37 void RunTest(const OutputList& xs, const std::vector<TensorShape>& x_shapes,
38 const OutputList& ys, const std::vector<TensorShape>& y_shapes) {
52 auto partitions = Const(scope_, {{2, 1, 0}, {1, 2, 0}});
62 std::vector<Output> indices = {Const(scope_, 2), Const(scope_, {1, 0})};
  /external/tensorflow/tensorflow/core/kernels/fuzzing/
example_proto_fast_parsing_fuzz.cc 30 void BuildGraph(const Scope& scope) final {
35 auto in_expanded = ExpandDims(scope, input, Const<int>(scope, 0));
37 auto names = Const(scope, {"noname"});
38 std::vector<Output> dense_keys = {Const(scope, {"a"})};
40 std::vector<Output> dense_defaults = {Const(scope, {1.0f})};
51 void FuzzImpl(const uint8_t* data, size_t size) final {
55 string(reinterpret_cast<const char*>(data), size);
  /external/turbine/java/com/google/turbine/bytecode/
ConstantPoolReader.java 20 import com.google.turbine.model.Const;
126 Const.Value constant(int index) {
131 return new Const.LongValue(reader.readLong());
133 return new Const.FloatValue(reader.readFloat());
135 return new Const.DoubleValue(reader.readDouble());
137 return new Const.IntValue(reader.readInt());
139 return new Const.StringValue(utf8(reader.readUnsignedShort()));
  /external/libunwind/doc/
libunwind-ia64.tex 25 macro \Const{UNW\_TARGET\_IA64} as 1 and the macro \Const{UNW\_TARGET}
51 call will fail with a return-value of \texttt{-}\Const{UNW\_EBADREG}.
85 \item[\Const{UNW\_IA64\_IP}:] Contains the instruction pointer (IP, or
89 instruction pointed to by \Const{UNW\_IA64\_IP}. Bits 0 and 1 of
94 \item[\Const{UNW\_IA64\_SP}:] Contains the (memory) stack-pointer
96 \item[\Const{UNW\_IA64\_BSP}:] Contains the register backing-store
99 instruction at \Const{UNW\_IA64\_IP} was about to begin execution.
107 \item[\Const{UNW\_IA64\_GR}:] The base-index for general (integer)
110 the index \Const{UNW\_IA64\_GR}\texttt{+4} should be used
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/
ScopeTest.java 129 Const<Integer> c1 = Const.create(s, 42);
130 assertEquals("Const", c1.output().op().name());
131 Const<Integer> c2 = Const.create(s, 7);
133 Const<Integer> c3 = Const.create(s.withName("four"), 4);
135 Const<Integer> c4 = Const.create(s.withName("four"), 4);
145 assertEquals("child/Const", Const.create(child, 42).output().op().name())
    [all...]

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 91011>>