/external/mesa3d/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/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_cmdbuf.h | 110 radeon->glCtx->Driver.Flush(radeon->glCtx); /* +r6/r7 */
|
/external/mesa3d/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...] |
/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/net/tools/fetch/ |
fetch_client.cc | 34 // Test Driver 35 class Driver { 37 Driver() 51 static base::LazyInstance<Driver> g_driver(base::LINKER_INITIALIZED);
|
/external/chromium_org/net/tools/fetch/ |
fetch_client.cc | 40 // Test Driver 41 class Driver { 43 Driver() 57 static base::LazyInstance<Driver> g_driver = LAZY_INSTANCE_INITIALIZER;
|
/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...] |
texobj.c | 70 * Called via ctx->Driver.NewTextureObject, unless overridden by a device 71 * driver. 177 if (ctx->Driver.TexParameter) { 180 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_S, fparam_wrap); 181 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_T, fparam_wrap); 182 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_R, fparam_wrap); 183 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_MIN_FILTER, fparam_filter); 192 * Called via ctx->Driver.DeleteTexture() if not overriden by a driver. 212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i]) [all...] |
context.c | 173 if (ctx->Driver.Flush) { 174 ctx->Driver.Flush(ctx); 890 * Note that the driver needs to pass in its dd_function_table here since 908 * \param driverFunctions table of device driver functions for this context 910 * \param driverContext pointer to driver-specific context data 937 /* Plug in driver functions and context pointer here. 939 * we'll call ctx->Driver.NewTextureObject() to create the default 942 ctx->Driver = *driverFunctions; [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" 38 namespace driver { namespace in namespace:clang 47 /// Driver - Encapsulate logic for constructing compilation processes 48 /// from a set of gcc-driver-like command line arguments. 49 class Driver { 69 /// 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...] |
texobj.c | 70 * Called via ctx->Driver.NewTextureObject, unless overridden by a device 71 * driver. 177 if (ctx->Driver.TexParameter) { 180 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_S, fparam_wrap); 181 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_T, fparam_wrap); 182 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_R, fparam_wrap); 183 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_MIN_FILTER, fparam_filter); 192 * Called via ctx->Driver.DeleteTexture() if not overriden by a driver. 212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i]) [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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_state_init.c | 5 initial release of the Radeon 8500 driver under the XFree86 license. [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_state_init.c | 5 initial release of the Radeon 8500 driver under the XFree86 license. [all...] |