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

1 2 3

  /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 {{an explicitly-defaulted (…)
    [all...]
  /external/mesa3d/src/glsl/
ir_variable.cpp 34 add_variable(const char *name, enum ir_variable_mode mode, int slot,
35 const glsl_type *type, exec_list *instructions,
69 const char *name, const glsl_type *type)
76 add_builtin_variable(const builtin_variable *proto, exec_list *instructions,
82 const glsl_type *const type = symtab->get_type(proto->type);
93 const char *name, int value)
95 ir_variable *const var = add_variable(name, ir_var_auto,
109 state->Const.MaxVertexAttribs)
    [all...]
glsl_compiler.cpp 54 ctx->Const.MaxLights = 8;
55 ctx->Const.MaxClipPlanes = 8;
56 ctx->Const.MaxTextureUnits = 2;
61 ctx->Const.MaxTextureCoordUnits = 4;
63 ctx->Const.VertexProgram.MaxAttribs = 16;
64 ctx->Const.VertexProgram.MaxUniformComponents = 512;
65 ctx->Const.MaxVarying = 8;
66 ctx->Const.MaxVertexTextureImageUnits = 0;
67 ctx->Const.MaxCombinedTextureImageUnits = 2;
68 ctx->Const.MaxTextureImageUnits = 2
    [all...]
glsl_parser_extras.cpp 39 _mesa_glsl_parse_state::_mesa_glsl_parse_state(const struct gl_context *ctx,
69 this->Const.MaxLights = ctx->Const.MaxLights;
70 this->Const.MaxClipPlanes = ctx->Const.MaxClipPlanes;
71 this->Const.MaxTextureUnits = ctx->Const.MaxTextureUnits;
72 this->Const.MaxTextureCoords = ctx->Const.MaxTextureCoordUnits;
73 this->Const.MaxVertexAttribs = ctx->Const.VertexProgram.MaxAttribs
    [all...]
glsl_parser_extras.h 46 _mesa_glsl_parse_state(const struct gl_context *ctx, GLenum target,
95 } Const;
116 const glsl_type **user_structures;
140 const struct gl_extensions *extensions;
177 const char *fmt, ...);
184 extern void _mesa_glsl_warning(const YYLTYPE *locp,
186 const char *fmt, ...);
189 const char *string);
206 extern bool _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp,
207 const char *behavior
    [all...]
  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 28 template<typename T, T N> struct Const { static const T value = N; };
30 template<typename T, T N> struct IncrementHelper<Const<T, N>> { using Result = Const<T, N+1>; };
33 using Arr = int[TwoHundredAndFiftySix<Increment, Const<int, 0>>::value];
deduction.cpp 6 static const unsigned value = 0;
11 static const unsigned value = 1;
21 static const bool value = false;
26 static const bool value = true;
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
80 int array1[is_same<Replace<const _1, int, float>::type, const int>::value? 1 : -1];
82 int array3[is_same<Replace<vector<const _1>, int, float>::type, vector<const int> >::value? 1 : -1]
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 34 CONST = 1, // value is a constant
44 const Value *Const; // valid for constants
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
66 kind = CONST;
67 u.Const = C;
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
  /external/valgrind/main/VEX/priv/
ir_opt.c 353 if (ex->Iex.Const.con->tag == Ico_F64i) {
356 IRExpr_Const(ex->Iex.Const.con)));
900 && e1->Iex.Const.con->tag == Ico_U32
901 && e2->Iex.Const.con->tag == Ico_U32
902 && e1->Iex.Const.con->Ico.U32
903 == e2->Iex.Const.con->Ico.U32 );
924 && e->Iex.Const.con->tag == Ico_U32
925 && e->Iex.Const.con->Ico.U32 == 0);
932 && e->Iex.Const.con->tag == Ico_U64
933 && e->Iex.Const.con->Ico.U64 == 0)
    [all...]
ir_match.c 89 return eqIRConst(p->Iex.Const.con, e->Iex.Const.con);
host_amd64_isel.c 275 && e->Iex.Const.con->tag == Ico_U64
276 && e->Iex.Const.con->Ico.U64 == 0ULL;
282 && e->Iex.Const.con->tag == Ico_U32
283 && e->Iex.Const.con->Ico.U32 == 0;
389 vassert(e->Iex.Const.con->tag == Ico_U64);
390 if (fitsIn32Bits(e->Iex.Const.con->Ico.U64)) {
393 AMD64RMI_Imm(toUInt(e->Iex.Const.con->Ico.U64)),
397 return AMD64Instr_Imm64(e->Iex.Const.con->Ico.U64, dst);
520 && guard->Iex.Const.con->tag == Ico_U1
521 && guard->Iex.Const.con->Ico.U1 == True)
    [all...]
host_s390_isel.c 224 if (arg2->tag == Iex_Const && arg2->Iex.Const.con->tag == Ico_U64) {
225 ULong value = arg2->Iex.Const.con->Ico.U64;
331 switch (expr->Iex.Const.con->tag) {
332 case Ico_U1: value = expr->Iex.Const.con->Ico.U1; break;
333 case Ico_U8: value = expr->Iex.Const.con->Ico.U8; break;
334 case Ico_U16: value = expr->Iex.Const.con->Ico.U16; break;
335 case Ico_U32: value = expr->Iex.Const.con->Ico.U32; break;
336 case Ico_U64: value = expr->Iex.Const.con->Ico.U64; break;
392 && guard->Iex.Const.con->tag == Ico_U1
393 && guard->Iex.Const.con->Ico.U1 == True)
    [all...]
host_x86_isel.c 109 && e->Iex.Const.con->tag == Ico_U8
110 && e->Iex.Const.con->Ico.U8 == 0;
116 && e->Iex.Const.con->tag == Ico_U32
117 && e->Iex.Const.con->Ico.U32 == 0;
123 && e->Iex.Const.con->tag == Ico_U64
124 && e->Iex.Const.con->Ico.U64 == 0ULL;
560 && guard->Iex.Const.con->tag == Ico_U1
561 && guard->Iex.Const.con->Ico.U1 == True) {
904 vassert(e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U8);
905 nshift = e->Iex.Binop.arg2->Iex.Const.con->Ico.U8
    [all...]
host_ppc_isel.c 725 && guard->Iex.Const.con->tag == Ico_U1
726 && guard->Iex.Const.con->Ico.U1 == True) {
834 && guard->Iex.Const.con->tag == Ico_U1
835 && guard->Iex.Const.con->Ico.U1 == True) {
    [all...]
guest_s390_helpers.c 695 return expr->tag == Iex_Const && expr->Iex.Const.con->tag == Ico_U64;
737 cond = cond_expr->Iex.Const.con->Ico.U64;
738 cc_op = cc_op_expr->Iex.Const.con->Ico.U64;
898 mask = cc_dep2->Iex.Const.con->Ico.U64;
972 mask16 = cc_dep2->Iex.Const.con->Ico.U64;
    [all...]
host_arm_isel.c 450 && guard->Iex.Const.con->tag == Ico_U1
451 && guard->Iex.Const.con->Ico.U1 == True) {
561 && guard->Iex.Const.con->tag == Ico_U1
562 && guard->Iex.Const.con->Ico.U1 == True) {
678 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U32) {
679 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
744 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U32) {
745 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
796 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U32) {
797 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32
    [all...]
  /external/openssl/crypto/md5/asm/
md5-x86_64.pl 26 lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
51 lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
75 lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
99 lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
  /external/mesa3d/src/pixelflinger2/
shader.cpp 50 ctx->Const.MaxLights = 8;
51 ctx->Const.MaxClipPlanes = 8;
52 ctx->Const.MaxTextureUnits = 2;
57 ctx->Const.MaxTextureCoordUnits = 4;
59 ctx->Const.VertexProgram.MaxAttribs = 16;
60 ctx->Const.VertexProgram.MaxUniformComponents = 512;
61 ctx->Const.MaxVarying = 8;
62 ctx->Const.MaxVertexTextureImageUnits = 0;
63 ctx->Const.MaxCombinedTextureImageUnits = 2;
64 ctx->Const.MaxTextureImageUnits = 2
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-function-mockers_test.cc 51 // mock for a function with const arguments, so we don't test such
65 using testing::Const;
85 float g, double h, unsigned i, char* j, const string& k)
89 virtual string TakesConstReference(const int& n) = 0;
91 virtual bool TakesConst(const int x) = 0;
101 virtual char OverloadedOnConstness() const = 0;
104 virtual int TypeWithComma(const std::map<int, string>& a_map) = 0;
110 float g, double h, unsigned i, char* j, const string& k) = 0;
111 STDMETHOD_(char, CTConst)(int x) const = 0;
128 double, unsigned, char*, const string& str))
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
const.js 2 "This test checks that const declarations in JavaScript work and are readonly."
6 shouldThrow("const redef='a'; const redef='a';");
8 const x = "RIGHT";
12 const z = "RIGHT", y = "RIGHT";
16 const one = 1;
51 shouldBe("function f() { const one = 1; one++; return one; } f();", "1");
52 shouldBe("function f() { const oneString = '1'; return oneString++; } f();", "1");
53 shouldBe("function f() { const one = 1; return one++; } f();", "1");
56 shouldBe("function f() { const one = 1; one--; return one; } f();", "1")
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 97 Const RN 8
215 MOV Const,#4
216 MUL curQP,curQP,Const ;// curQP=4*curQP
  /external/clang/lib/AST/
DeclCXX.cpp 72 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
86 CXXRecordDecl *CXXRecordDecl::CreateLambda(const ASTContext &C, DeclContext *DC,
97 CXXRecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
104 CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
125 SmallVector<const CXXBaseSpecifier *, 8> VBases;
132 const CXXBaseSpecifier *Base = Bases[i];
314 static bool SawBase(const CXXRecordDecl *, void *) {
318 bool CXXRecordDecl::hasAnyDependentBases() const {
325 bool CXXRecordDecl::hasConstCopyConstructor() const {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 79 LatticeValueTy getLatticeValue() const {
86 bool isUndefined() const { return getLatticeValue() == undefined; }
87 bool isConstant() const {
90 bool isOverdefined() const { return getLatticeValue() == overdefined; }
92 Constant *getConstant() const {
133 ConstantInt *getConstantInt() const {
156 const TargetData *TD;
157 const TargetLibraryInfo *TLI;
208 SCCPSolver(const TargetData *td, const TargetLibraryInfo *tli
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 45 bool isScalar() const { return V1.getInt() == Scalar; }
46 bool isComplex() const { return V1.getInt() == Complex; }
47 bool isAggregate() const { return V1.getInt() == Aggregate; }
49 bool isVolatileQualified() const { return V2.getInt(); }
52 llvm::Value *getScalarVal() const {
59 std::pair<llvm::Value *, llvm::Value *> getComplexVal() const {
64 llvm::Value *getAggregateAddr() const {
84 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
121 const CGBitFieldInfo *BitFieldInfo;
126 // 'const' is unused her
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 317 } Const;
389 ML_(cmp_for_DiAddrRange_range) ( const void* keyV, const void* elemV );

Completed in 1634 milliseconds

1 2 3