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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
clip.c 41 if (_math_matrix_is_dirty(ctx->ProjectionMatrixStack.Top))
42 _math_matrix_analyse( ctx->ProjectionMatrixStack.Top );
47 ctx->ProjectionMatrixStack.Top->inv);
78 if (_math_matrix_is_dirty(ctx->ModelviewMatrixStack.Top))
79 _math_matrix_analyse( ctx->ModelviewMatrixStack.Top );
82 ctx->ModelviewMatrixStack.Top->inv );
matrix.c 55 * \param top top clipping plane coordinate.
62 * the top matrix of the current matrix stack and sets
67 GLdouble bottom, GLdouble top,
77 top == bottom)
83 _math_matrix_frustum( ctx->CurrentStack->Top,
85 (GLfloat) bottom, (GLfloat) top,
97 * \param top top clipping plane coordinate.
104 * the top matrix of the current matrix stack and set
    [all...]
  /external/mesa3d/src/mesa/main/
clip.c 41 if (_math_matrix_is_dirty(ctx->ProjectionMatrixStack.Top))
42 _math_matrix_analyse( ctx->ProjectionMatrixStack.Top );
47 ctx->ProjectionMatrixStack.Top->inv);
78 if (_math_matrix_is_dirty(ctx->ModelviewMatrixStack.Top))
79 _math_matrix_analyse( ctx->ModelviewMatrixStack.Top );
82 ctx->ModelviewMatrixStack.Top->inv );
matrix.c 55 * \param top top clipping plane coordinate.
62 * the top matrix of the current matrix stack and sets
67 GLdouble bottom, GLdouble top,
77 top == bottom)
83 _math_matrix_frustum( ctx->CurrentStack->Top,
85 (GLfloat) bottom, (GLfloat) top,
97 * \param top top clipping plane coordinate.
104 * the top matrix of the current matrix stack and set
    [all...]
  /external/clang/test/Modules/Inputs/
category_top.h 4 @interface Foo(Top)
5 -(void)top;
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 199 Top.init(DAG, SchedModel);
206 delete Top.HazardRec;
208 Top.HazardRec = TM.getInstrInfo()->CreateTargetMIHazardRecognizer(Itin, DAG);
211 delete Top.ResourceModel;
213 Top.ResourceModel = new VLIWResourceModel(TM, DAG->getSchedModel());
229 Top.MaxMinLatency = std::max(MinLatency, Top.MaxMinLatency);
234 Top.releaseNode(SU, SU->TopReadyCycle);
489 if (Top.ResourceModel->isResourceAvailable(SU))
528 /// Pick the best candidate from the top queue
    [all...]
HexagonMachineScheduler.h 94 /// top-level schedule() driver.
194 // State of the top and bottom scheduled instruction boundaries.
195 SchedBoundary Top;
199 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both)
207 DAG(0), SchedModel(0), Top(TopQID, "TopQ"), Bot(BotQID, "BotQ") {}
220 return Top.ResourceModel->getTotalPackets() +
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_normals.c 62 if (_math_matrix_is_general_scale(ctx->ModelviewMatrixStack.Top))
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
109 if (_math_matrix_has_rotation(ctx->ModelviewMatrixStack.Top)) {
t_vb_texmat.c 72 ctx->TextureMatrixStack[i].Top,
  /external/mesa3d/src/mesa/tnl/
t_vb_normals.c 62 if (_math_matrix_is_general_scale(ctx->ModelviewMatrixStack.Top))
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
109 if (_math_matrix_has_rotation(ctx->ModelviewMatrixStack.Top)) {
t_vb_texmat.c 72 ctx->TextureMatrixStack[i].Top,
  /external/chromium_org/third_party/skia/src/images/
SkMovie_gif.cpp 135 uint32_t* dst = bm->getAddr32(imageDesc.Left, imageDesc.Top + row);
155 if (frame->ImageDesc.Top + copyHeight > height) {
156 copyHeight = height - frame->ImageDesc.Top;
181 uint32_t* dst = bm->getAddr32(frame->ImageDesc.Left, frame->ImageDesc.Top);
188 if (frame->ImageDesc.Top + copyHeight > height) {
189 copyHeight = height - frame->ImageDesc.Top;
199 static void fillRect(SkBitmap* bm, GifWord left, GifWord top, GifWord width, GifWord height,
204 uint32_t* dst = bm->getAddr32(left, top);
211 if (top + copyHeight > bmHeight) {
212 copyHeight = bmHeight - top;
    [all...]
SkImageDecoder_libgif.cpp 214 if ( (desc.Top | desc.Left) < 0 ||
216 desc.Top + desc.Height > height) {
265 if ((desc.Top | desc.Left) > 0 ||
281 scanline += desc.Top * rowBytes + desc.Left;
  /external/skia/src/images/
SkMovie_gif.cpp 135 uint32_t* dst = bm->getAddr32(imageDesc.Left, imageDesc.Top + row);
155 if (frame->ImageDesc.Top + copyHeight > height) {
156 copyHeight = height - frame->ImageDesc.Top;
181 uint32_t* dst = bm->getAddr32(frame->ImageDesc.Left, frame->ImageDesc.Top);
188 if (frame->ImageDesc.Top + copyHeight > height) {
189 copyHeight = height - frame->ImageDesc.Top;
199 static void fillRect(SkBitmap* bm, GifWord left, GifWord top, GifWord width, GifWord height,
204 uint32_t* dst = bm->getAddr32(left, top);
211 if (top + copyHeight > bmHeight) {
212 copyHeight = bmHeight - top;
    [all...]
SkImageDecoder_libgif.cpp 214 if ( (desc.Top | desc.Left) < 0 ||
216 desc.Top + desc.Height > height) {
265 if ((desc.Top | desc.Left) > 0 ||
281 scanline += desc.Top * rowBytes + desc.Left;
  /external/llvm/include/llvm/ADT/
DepthFirstIterator.h 75 // VisitStack - Used to maintain the ordering. Top = current block
103 std::pair<PointerIntTy, ChildItTy> &Top = VisitStack.back();
104 NodeType *Node = Top.first.getPointer();
105 ChildItTy &It = Top.second;
106 if (!Top.first.getInt()) {
109 Top.first.setInt(1);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
5 (* top ::= definition | external | expression | ';' *)
10 (* ignore top-level semicolons. *)
25 (* Evaluate a top-level expression into an anonymous function. *)
27 print_endline "parsed a top-level expr";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
7 (* top ::= definition | external | expression | ';' *)
12 (* ignore top-level semicolons. *)
29 (* Evaluate a top-level expression into an anonymous function. *)
31 print_endline "parsed a top-level expr";
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.h 38 // Return true of this is the top of the path
39 bool Top() const;
  /external/chromium_org/v8/src/
typing.h 81 return store_.Top();
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 2 * Top-Level parsing and JIT Driver
8 (* top ::= definition | external | expression | ';' *)
13 (* ignore top-level semicolons. *)
30 (* Evaluate a top-level expression into an anonymous function. *)
32 print_endline "parsed a top-level expr";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 2 * Top-Level parsing and JIT Driver
8 (* top ::= definition | external | expression | ';' *)
13 (* ignore top-level semicolons. *)
30 (* Evaluate a top-level expression into an anonymous function. *)
32 print_endline "parsed a top-level expr";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 2 * Top-Level parsing and JIT Driver
8 (* top ::= definition | external | expression | ';' *)
13 (* ignore top-level semicolons. *)
30 (* Evaluate a top-level expression into an anonymous function. *)
32 print_endline "parsed a top-level expr";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 2 * Top-Level parsing and JIT Driver
8 (* top ::= definition | external | expression | ';' *)
13 (* ignore top-level semicolons. *)
30 (* Evaluate a top-level expression into an anonymous function. *)
32 print_endline "parsed a top-level expr";
  /external/llvm/lib/Analysis/
CFG.cpp 42 std::pair<const BasicBlock*, succ_const_iterator> &Top = VisitStack.back();
43 const BasicBlock *ParentBB = Top.first;
44 succ_const_iterator &I = Top.second;

Completed in 238 milliseconds

1 2 3 4 5 6 7