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

  /external/chromium_org/third_party/mesa/src/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/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...]
  /art/compiler/optimizing/
builder.cc 43 class Temporaries : public ValueObject {
45 Temporaries(HGraph* graph, size_t count) : graph_(graph), count_(count), index_(0) {
61 // The total number of temporaries that will be used.
342 Temporaries temps(graph_, is_instance_call ? 1 : 0);
408 Temporaries temps(graph_, 1);
439 Temporaries temps(graph_, 3);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fragprog.c 169 memset(machine->Temporaries, 0, MAX_PROGRAM_TEMPS * 4 * sizeof(GLfloat));
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 169 memset(machine->Temporaries, 0, MAX_PROGRAM_TEMPS * 4 * sizeof(GLfloat));
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_program.c 242 ASSIGN_4V(machine->Temporaries[i], 0.0F, 0.0F, 0.0F, 0.0F);
  /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 313 /// Temporaries - Temporary lvalues materialized within this stack frame.
314 MapTy Temporaries;
322 MapTy::iterator I = Temporaries.find(Key);
323 return I == Temporaries.end() ? nullptr : &I->second;
759 /// the ending of the lifetime of temporaries created within it.
837 APValue &Result = Temporaries[Key];
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 841 namespace Temporaries {
862 static_assert(S().f(), ""); // expected-error {{constant expression}} expected-note {{in call to '&Temporaries::S()->f()'}}
863 static_assert(S().g(), ""); // expected-error {{constant expression}} expected-note {{in call to '&Temporaries::S()->g()'}}
880 constexpr int k = NonLiteral().f(); // expected-error {{constant expression}} expected-note {{non-literal type 'Temporaries::NonLiteral'}}
    [all...]

Completed in 267 milliseconds