HomeSort by relevance Sort by last modified time
    Searched refs:Const (Results 1 - 25 of 267) 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/mesa/drivers/dri/i965/
brw_context.c 76 const struct gl_config *mesaVis,
87 const unsigned req_version = major_version * 10 + minor_version;
163 ctx->Const.MaxDualSourceDrawBuffers = 1;
164 ctx->Const.MaxDrawBuffers = BRW_MAX_DRAW_BUFFERS;
165 ctx->Const.MaxTextureImageUnits = BRW_MAX_TEX_UNIT;
166 ctx->Const.MaxTextureCoordUnits = 8; /* Mesa limit */
167 ctx->Const.MaxTextureUnits = MIN2(ctx->Const.MaxTextureCoordUnits,
168 ctx->Const.MaxTextureImageUnits);
169 ctx->Const.MaxVertexTextureImageUnits = BRW_MAX_TEX_UNIT
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_context.c 49 extern const struct tnl_pipeline_stage *intel_pipeline[];
52 i830CreateContext(const struct gl_config * mesaVis,
87 intel->ctx.Const.MaxTextureUnits = I830_TEX_UNITS;
88 intel->ctx.Const.MaxTextureImageUnits = I830_TEX_UNITS;
89 intel->ctx.Const.MaxTextureCoordUnits = I830_TEX_UNITS;
94 ctx->Const.MaxTextureLevels = 12;
95 ctx->Const.Max3DTextureLevels = 9;
96 ctx->Const.MaxCubeTextureLevels = 11;
97 ctx->Const.MaxTextureRectSize = (1 << 11);
98 ctx->Const.MaxTextureUnits = I830_TEX_UNITS
    [all...]
i915_context.c 143 extern const struct tnl_pipeline_stage *intel_pipeline[];
147 const struct gl_config * mesaVis,
179 const unsigned max_version =
182 const unsigned req_version = major_version * 10 + minor_version;
213 ctx->Const.MaxTextureUnits = I915_TEX_UNITS;
214 ctx->Const.MaxTextureImageUnits = I915_TEX_UNITS;
215 ctx->Const.MaxTextureCoordUnits = I915_TEX_UNITS;
216 ctx->Const.MaxVarying = I915_TEX_UNITS;
217 ctx->Const.MaxCombinedTextureImageUnits =
218 ctx->Const.MaxVertexTextureImageUnits
    [all...]
  /external/mesa3d/src/glsl/
standalone_scaffolding.cpp 46 const char *, int)
84 ctx->Const.GLSLVersion = 120;
87 ctx->Const.MaxLights = 8;
88 ctx->Const.MaxClipPlanes = 6;
89 ctx->Const.MaxTextureUnits = 2;
90 ctx->Const.MaxTextureCoordUnits = 2;
91 ctx->Const.VertexProgram.MaxAttribs = 16;
93 ctx->Const.VertexProgram.MaxUniformComponents = 512;
94 ctx->Const.MaxVarying = 8; /* == gl_MaxVaryingFloats / 4 */
95 ctx->Const.MaxVertexTextureImageUnits = 0
    [all...]
glsl_parser_extras.cpp 74 this->Const.MaxLights = ctx->Const.MaxLights;
75 this->Const.MaxClipPlanes = ctx->Const.MaxClipPlanes;
76 this->Const.MaxTextureUnits = ctx->Const.MaxTextureUnits;
77 this->Const.MaxTextureCoords = ctx->Const.MaxTextureCoordUnits;
78 this->Const.MaxVertexAttribs = ctx->Const.VertexProgram.MaxAttribs
    [all...]
builtin_variables.cpp 45 const char *type;
46 const char *name;
49 static const builtin_variable builtin_core_vs_variables[] = {
54 static const builtin_variable builtin_core_fs_variables[] = {
60 static const builtin_variable builtin_100ES_fs_variables[] = {
64 static const builtin_variable builtin_110_fs_variables[] = {
68 static const builtin_variable builtin_110_deprecated_fs_variables[] = {
74 static const builtin_variable builtin_110_deprecated_vs_variables[] = {
96 static const builtin_variable builtin_120_fs_variables[] = {
100 static const builtin_variable builtin_130_vs_variables[] =
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_context.c 71 extern const struct tnl_pipeline_stage _radeon_render_stage;
72 extern const struct tnl_pipeline_stage _radeon_tcl_stage;
74 static const struct tnl_pipeline_stage *radeon_pipeline[] = {
165 const struct gl_config *glVisual,
269 ctx->Const.MaxTextureUnits = driQueryOptioni (&rmesa->radeon.optionCache,
271 ctx->Const.MaxTextureImageUnits = ctx->Const.MaxTextureUnits;
272 ctx->Const.MaxTextureCoordUnits = ctx->Const.MaxTextureUnits;
273 ctx->Const.MaxCombinedTextureImageUnits = ctx->Const.MaxTextureUnits
    [all...]
  /external/mesa3d/src/mesa/main/
context.c 546 ctx->Const.MaxUniformBlockSize / 4 *
552 * Initialize fields of gl_constants (aka ctx->Const.*).
562 ctx->Const.MaxTextureMbytes = MAX_TEXTURE_MBYTES;
563 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
564 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
565 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
566 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
567 ctx->Const.MaxArrayTextureLayers = MAX_ARRAY_TEXTURE_LAYERS;
568 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
569 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS
    [all...]
version.c 38 const char *env_var = "MESA_GL_VERSION_OVERRIDE";
39 const char *version;
65 const char *env_var = "MESA_GLSL_VERSION_OVERRIDE";
66 const char *version;
74 n = sscanf(version, "%u", &ctx->Const.GLSLVersion);
88 static const int max = 100;
90 const GLboolean ver_1_3 = (ctx->Extensions.ARB_texture_border_clamp &&
94 const GLboolean ver_1_4 = (ver_1_3 &&
105 const GLboolean ver_1_5 = (ver_1_4 &&
108 const GLboolean ver_2_0 = (ver_1_5 &
    [all...]
clip.c 52 _mesa_ClipPlane( GLenum plane, const GLdouble *eq )
60 if (p < 0 || p >= (GLint) ctx->Const.MaxClipPlanes) {
107 if (p < 0 || p >= (GLint) ctx->Const.MaxClipPlanes) {
  /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[] = {
199 const struct gl_config *glVisual,
306 ctx->Const.MaxTextureUnits = driQueryOptioni (&rmesa->radeon.optionCache,
308 ctx->Const.MaxTextureImageUnits = ctx->Const.MaxTextureUnits;
309 ctx->Const.MaxTextureCoordUnits = ctx->Const.MaxTextureUnits
    [all...]
  /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...]
unw_step.tex 37 \item[\Const{UNW\_EUNSPEC}] An unspecified error occurred.
38 \item[\Const{UNW\_ENOINFO}] \Prog{Libunwind} was unable to locate the
40 \item[\Const{UNW\_EBADVERSION}] The unwind-info needed to complete the
43 \item[\Const{UNW\_EINVALIDIP}] The instruction-pointer
46 \item[\Const{UNW\_EBADFRAME}] The next stack frame is invalid.
47 \item[\Const{UNW\_ESTOPUNWIND}] Returned if a call to
48 \Func{find\_proc\_info}() returned -\Const{UNW\_ESTOPUNWIND}.
unw_set_caching_policy.tex 24 \item[\Const{UNW\_CACHE\_NONE}] Turns off caching completely. This
27 \item[\Const{UNW\_CACHE\_GLOBAL}] Enables caching using a global cache
30 cache, as if \Const{UNW\_CACHE\_PER\_THREAD} had been specified.
31 \item[\Const{UNW\_CACHE\_PER\_THREAD}] Enables caching using
34 as if \Const{UNW\_CACHE\_GLOBAL} had been specified.
62 \item[\Const{UNW\_ENOMEM}] The desired caching policy could not be
  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 29 template<typename T, T N> struct Const { static const T value = N; };
31 template<typename T, T N> struct IncrementHelper<Const<T, N>> { using Result = Const<T, N+1>; };
34 using Arr = int[TwoHundredAndFiftySix<Increment, Const<int, 0>>::value];
  /frameworks/base/media/java/android/media/
Cea708CaptionRenderer.java 281 if (mCommand == Const.CODE_C0_EXT1) {
286 } else if (mCommand >= Const.CODE_C0_RANGE_START
287 && mCommand <= Const.CODE_C0_RANGE_END) {
292 } else if (mCommand >= Const.CODE_C1_RANGE_START
293 && mCommand <= Const.CODE_C1_RANGE_END) {
298 } else if (mCommand >= Const.CODE_G0_RANGE_START
299 && mCommand <= Const.CODE_G0_RANGE_END) {
304 } else if (mCommand >= Const.CODE_G1_RANGE_START
305 && mCommand <= Const.CODE_G1_RANGE_END) {
317 if (mCommand >= Const.CODE_C0_SKIP2_RANGE_STAR
    [all...]
  /external/valgrind/VEX/priv/
ir_opt.c 376 if (ex->Iex.Const.con->tag == Ico_F64i) {
379 IRExpr_Const(ex->Iex.Const.con)));
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 34 CONST = 1, // value is a constant
43 const Value *Const; // valid for constants
66 SDDbgValue(MDNode *Var, MDNode *Expr, const Value *C, uint64_t off,
69 kind = CONST;
70 u.Const = C;
82 DbgValueKind getKind() const { return kind; }
85 MDNode *getVariable() const { return Var; }
88 MDNode *getExpression() const { return Expr; }
91 SDNode *getSDNode() const { assert (kind==SDNODE); return u.s.Node;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c 116 for (int i = 0; i < ctx->Const.MaxTextureImageUnits; i++) {
157 for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++) {
187 for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++) {
207 for (i = 0; i < ctx->Const.MaxTextureImageUnits; i++) {
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
ExpressionParser.java 22 import org.jacoco.examples.expressions.Const;
82 e = new Const(tokenizer.nval);
  /external/mesa3d/src/mesa/tnl/
t_vb_texmat.c 69 for (i = 0 ; i < ctx->Const.MaxTextureCoordUnits ; i++) {
97 for (i = 0 ; i < ctx->Const.MaxTextureCoordUnits ; i++)
120 const struct tnl_pipeline_stage _tnl_texture_transform_stage =
  /external/opencv3/3rdparty/jinja2/
meta.py 74 if not isinstance(node.template, nodes.Const):
78 # something const, only yield the strings and ignore
80 if isinstance(template_name, nodes.Const):
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_context.c 141 nv04_context_create(struct nouveau_screen *screen, const struct gl_config *visual,
160 ctx->Const.MaxTextureLevels = 11;
161 ctx->Const.MaxTextureCoordUnits = NV04_TEXTURE_UNITS;
162 ctx->Const.MaxTextureImageUnits = NV04_TEXTURE_UNITS;
163 ctx->Const.MaxTextureUnits = NV04_TEXTURE_UNITS;
164 ctx->Const.MaxTextureMaxAnisotropy = 2;
165 ctx->Const.MaxTextureLodBias = 15;
202 const struct nouveau_driver nv04_driver = {

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011