HomeSort by relevance Sort by last modified time
    Searched refs:Temporaries (Results 1 - 8 of 8) 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);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
order.go 17 // Introduce temporaries as needed by runtime routines.
20 // by copying them to temporaries as needed.
30 // should be moved into this file, so that the temporaries can be cleaned
32 // nodes can be made explicit and then have their temporaries cleaned.
37 // But it won't reuse temporaries as aggressively as it might, and
175 // of ordinary stack variables, those are not 'isaddrokay'. Temporaries are okay,
177 // temporaries' lifetimes.
199 // Poptemp pops temporaries off the stack until reaching the mark,
269 // insert new temporaries from order
388 // Ordermapassign appends n to order->out, introducing temporaries
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
order.go 17 // Introduce temporaries as needed by runtime routines.
20 // by copying them to temporaries as needed.
30 // should be moved into this file, so that the temporaries can be cleaned
32 // nodes can be made explicit and then have their temporaries cleaned.
37 // But it won't reuse temporaries as aggressively as it might, and
175 // of ordinary stack variables, those are not 'isaddrokay'. Temporaries are okay,
177 // temporaries' lifetimes.
199 // Poptemp pops temporaries off the stack until reaching the mark,
269 // insert new temporaries from order
388 // Ordermapassign appends n to order->out, introducing temporaries
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 334 /// Temporaries - Temporary lvalues materialized within this stack frame.
335 MapTy Temporaries;
343 MapTy::iterator I = Temporaries.find(Key);
344 return I == Temporaries.end() ? nullptr : &I->second;
    [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 414 milliseconds