HomeSort by relevance Sort by last modified time
    Searched refs:Temporaries (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/mesa/program/
prog_execute.h 63 GLfloat Temporaries[MAX_PROGRAM_TEMPS][4];
prog_execute.c 122 return machine->Temporaries[reg];
198 return machine->Temporaries[reg];
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 169 memset(machine->Temporaries, 0, MAX_PROGRAM_TEMPS * 4 * sizeof(GLfloat));
  /external/mesa3d/src/mesa/tnl/
t_vb_program.c 242 ASSIGN_4V(machine->Temporaries[i], 0.0F, 0.0F, 0.0F, 0.0F);
  /external/clang/lib/AST/
ExprConstant.cpp 333 /// Temporaries - Temporary lvalues materialized within this stack frame.
334 MapTy Temporaries;
342 MapTy::iterator I = Temporaries.find(Key);
343 return I == Temporaries.end() ? nullptr : &I->second;
835 /// the ending of the lifetime of temporaries created within it.
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 843 namespace Temporaries {
864 static_assert(S().f(), ""); // expected-error {{constant expression}} expected-note {{in call to '&Temporaries::S()->f()'}}
865 static_assert(S().g(), ""); // expected-error {{constant expression}} expected-note {{in call to '&Temporaries::S()->g()'}}
882 constexpr int k = NonLiteral().f(); // expected-error {{constant expression}} expected-note {{non-literal type 'Temporaries::NonLiteral'}}
    [all...]

Completed in 73 milliseconds