HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 151 - 175 of 428) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/mesa/swrast/
s_copypix.c 514 ctx->Driver.MapRenderbuffer(ctx, srcRb, 0, 0,
542 ctx->Driver.MapRenderbuffer(ctx, srcRb, srcX, srcY,
549 ctx->Driver.MapRenderbuffer(ctx, dstRb, dstX, dstY,
553 ctx->Driver.UnmapRenderbuffer(ctx, srcRb);
566 ctx->Driver.UnmapRenderbuffer(ctx, srcRb);
568 ctx->Driver.UnmapRenderbuffer(ctx, dstRb);
609 ctx->Driver.MapRenderbuffer(ctx, rb,
672 ctx->Driver.UnmapRenderbuffer(ctx, rb);
s_texrender.c 40 rb = ctx->Driver.NewRenderbuffer(ctx, name);
s_blit.c 220 ctx->Driver.MapRenderbuffer(ctx, readRb, 0, 0,
248 ctx->Driver.MapRenderbuffer(ctx, readRb,
256 ctx->Driver.MapRenderbuffer(ctx, drawRb,
261 ctx->Driver.UnmapRenderbuffer(ctx, readRb);
348 ctx->Driver.UnmapRenderbuffer(ctx, readRb);
350 ctx->Driver.UnmapRenderbuffer(ctx, drawRb);
564 ctx->Driver.MapRenderbuffer(ctx, readRb,
584 ctx->Driver.MapRenderbuffer(ctx, readRb,
594 ctx->Driver.MapRenderbuffer(ctx, drawRb,
598 ctx->Driver.UnmapRenderbuffer(ctx, readRb)
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 43 * The code below is used when the driver does not support primitive
158 * This function breaks up calls into the driver so primitive restart
159 * support is not required in the driver.
185 ctx->Driver.MapBufferRange(ctx, 0, ib->obj->Size, GL_MAP_READ_BIT,
196 ctx->Driver.UnmapBuffer(ctx, ib->obj);
vbo_rebase.c 111 * have to be handled within the driver.
164 ctx->Driver.MapBufferRange(ctx, 0, ib->obj->Size, GL_MAP_READ_BIT,
186 ctx->Driver.UnmapBuffer(ctx, ib->obj);
vbo_exec_api.c 78 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
100 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
101 exec->vtx.prim[0].mode = exec->ctx->Driver.CurrentExecPrimitive;
273 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END &&
397 ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES;
409 if (unlikely(!(ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT))) \
410 ctx->Driver.BeginVertices( ctx ); \
435 ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES; \
807 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END) {
817 if (ctx->Driver.PrepareExecBegin
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_api.c 78 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
100 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) {
101 exec->vtx.prim[0].mode = exec->ctx->Driver.CurrentExecPrimitive;
273 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END &&
397 ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES;
409 if (unlikely(!(ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT))) \
410 ctx->Driver.BeginVertices( ctx ); \
435 ctx->Driver.NeedFlush |= FLUSH_STORED_VERTICES; \
807 if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END) {
817 if (ctx->Driver.PrepareExecBegin
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_cmdbuf.h 110 radeon->glCtx->Driver.Flush(radeon->glCtx); /* +r6/r7 */
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texrender.c 40 rb = ctx->Driver.NewRenderbuffer(ctx, name);
s_blit.c 220 ctx->Driver.MapRenderbuffer(ctx, readRb, 0, 0,
248 ctx->Driver.MapRenderbuffer(ctx, readRb,
256 ctx->Driver.MapRenderbuffer(ctx, drawRb,
261 ctx->Driver.UnmapRenderbuffer(ctx, readRb);
348 ctx->Driver.UnmapRenderbuffer(ctx, readRb);
350 ctx->Driver.UnmapRenderbuffer(ctx, drawRb);
564 ctx->Driver.MapRenderbuffer(ctx, readRb,
584 ctx->Driver.MapRenderbuffer(ctx, readRb,
594 ctx->Driver.MapRenderbuffer(ctx, drawRb,
598 ctx->Driver.UnmapRenderbuffer(ctx, readRb)
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 10 // Construct a compiler invocation object for command line driver arguments
16 #include "clang/Driver/Compilation.h"
17 #include "clang/Driver/Driver.h"
18 #include "clang/Driver/Options.h"
19 #include "clang/Driver/Tool.h"
45 // FIXME: Find a cleaner way to force the driver into restricted modes.
49 driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(),
55 std::unique_ptr<driver::Compilation> C(TheDriver.BuildCompilation(Args))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_cmdbuf.h 110 radeon->glCtx->Driver.Flush(radeon->glCtx); /* +r6/r7 */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
pytree_idempotency.py 20 from pgen2 import driver namespace
25 gr = driver.load_grammar("Grammar.txt")
26 dr = driver.Driver(gr, convert=pytree.convert)
support.py 14 from lib2to3.pgen2 import driver namespace
19 grammar = driver.load_grammar(grammar_path)
20 driver = driver.Driver(grammar, convert=pytree.convert) variable
23 return driver.parse_string(reformat(string), debug=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
pytree_idempotency.py 20 from pgen2 import driver namespace
25 gr = driver.load_grammar("Grammar.txt")
26 dr = driver.Driver(gr, convert=pytree.convert)
support.py 14 from lib2to3.pgen2 import driver namespace
19 grammar = driver.load_grammar(grammar_path)
20 driver = driver.Driver(grammar, convert=pytree.convert) variable
23 return driver.parse_string(reformat(string), debug=True)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
drawpix.c 72 /* We're not using the current vertex program, and the driver may install
165 ctx->Driver.DrawPixels(ctx, x, y, width, height, format, type,
227 /* We're not using the current vertex program, and the driver may install
271 ctx->Driver.CopyPixels( ctx, srcx, srcy, width, height, destx, desty,
347 ctx->Driver.Bitmap( ctx, x, y, width, height, &ctx->Unpack, bitmap );
framebuffer.c 98 * This is the default function for ctx->Driver.NewFramebuffer().
268 * This will typically be called via ctx->Driver.ResizeBuffers() or directly
269 * from a device driver.
327 * the current window is. If it's a new size, we'll call the driver's
328 * ResizeBuffers function. The driver will then resize its color buffers
342 if (!ctx->Driver.GetBufferSize) {
352 /* ask device driver for size of output buffer */
353 ctx->Driver.GetBufferSize( buffer, &newWidth, &newHeight );
355 /* see if size of device driver's color buffer (window) has changed */
357 if (ctx->Driver.ResizeBuffers
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_context.c 76 /* Set a few default values in the driver struct.
78 tnl->Driver.Render.PrimTabElts = _tnl_render_tab_elts;
79 tnl->Driver.Render.PrimTabVerts = _tnl_render_tab_verts;
80 tnl->Driver.NotifyMaterialChange = _tnl_validate_shine_tables;
  /external/clang/include/clang/Driver/
Driver.h 1 //===--- Driver.h - Clang GCC Compatible Driver -----------------*- C++ -*-===//
15 #include "clang/Driver/Phases.h"
16 #include "clang/Driver/Types.h"
17 #include "clang/Driver/Util.h"
39 namespace driver { namespace in namespace:clang
49 /// Driver - Encapsulate logic for constructing compilation processes
50 /// from a set of gcc-driver-like command line arguments.
51 class Driver {
71 /// The name the driver was invoked as
    [all...]
  /external/mesa3d/src/mesa/main/
drawpix.c 72 /* We're not using the current vertex program, and the driver may install
165 ctx->Driver.DrawPixels(ctx, x, y, width, height, format, type,
227 /* We're not using the current vertex program, and the driver may install
271 ctx->Driver.CopyPixels( ctx, srcx, srcy, width, height, destx, desty,
347 ctx->Driver.Bitmap( ctx, x, y, width, height, &ctx->Unpack, bitmap );
framebuffer.c 98 * This is the default function for ctx->Driver.NewFramebuffer().
268 * This will typically be called via ctx->Driver.ResizeBuffers() or directly
269 * from a device driver.
327 * the current window is. If it's a new size, we'll call the driver's
328 * ResizeBuffers function. The driver will then resize its color buffers
342 if (!ctx->Driver.GetBufferSize) {
352 /* ask device driver for size of output buffer */
353 ctx->Driver.GetBufferSize( buffer, &newWidth, &newHeight );
355 /* see if size of device driver's color buffer (window) has changed */
357 if (ctx->Driver.ResizeBuffers
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.c 76 /* Set a few default values in the driver struct.
78 tnl->Driver.Render.PrimTabElts = _tnl_render_tab_elts;
79 tnl->Driver.Render.PrimTabVerts = _tnl_render_tab_verts;
80 tnl->Driver.NotifyMaterialChange = _tnl_validate_shine_tables;
  /external/clang/lib/Driver/
SanitizerArgs.cpp 9 #include "clang/Driver/SanitizerArgs.h"
10 #include "clang/Driver/Driver.h"
11 #include "clang/Driver/DriverDiagnostic.h"
12 #include "clang/Driver/Options.h"
13 #include "clang/Driver/ToolChain.h"
21 using namespace clang::driver;
47 const Driver &D = TC.getDriver();
256 unsigned SanitizerArgs::parse(const Driver &D, const llvm::opt::Arg *A,
269 bool SanitizerArgs::parse(const Driver &D, const llvm::opt::ArgList &Args
    [all...]
  /external/lldb/tools/driver/
IOChannel.cpp 198 Driver *driver
203 m_driver (driver),
406 Driver::eBroadcastBitReadyForInput |
407 Driver::eBroadcastBitThreadShouldExit);
426 if (event_type & Driver::eBroadcastBitReadyForInput)
460 else if (event_type & Driver::eBroadcastBitThreadShouldExit)
505 m_read_thread = SBHostOS::ThreadCreate ("<lldb.driver.commandline_io>", IOChannel::IOReadThread, this,

Completed in 2352 milliseconds

1 2 3 4 5 67 8 91011>>