HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 51 - 75 of 283) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/lib/Driver/
ToolChains.h 15 #include "clang/Driver/Action.h"
16 #include "clang/Driver/Multilib.h"
17 #include "clang/Driver/ToolChain.h"
25 namespace driver { namespace in namespace:clang
77 /// Driver, and has logic for fuzzing that where appropriate.
81 const Driver &D;
103 explicit GCCInstallationDetector(const Driver &D) : IsValid(false), D(D) {}
164 const Driver &D;
172 CudaInstallationDetector(const Driver &D) : IsValid(false), D(D) {}
197 Generic_GCC(const Driver &D, const llvm::Triple &Triple
    [all...]
Android.mk 17 Driver.cpp \
CrossWindowsToolChain.cpp 11 #include "clang/Driver/Driver.h"
12 #include "clang/Driver/Options.h"
15 using namespace clang::driver;
16 using namespace clang::driver::toolchains;
18 CrossWindowsToolChain::CrossWindowsToolChain(const Driver &D,
53 const Driver &D = getDriver();
  /external/mesa3d/src/mesa/main/
readpix.c 78 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
101 ctx->Driver.UnmapRenderbuffer(ctx, rb);
139 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
164 ctx->Driver.UnmapRenderbuffer(ctx, rb);
187 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
216 ctx->Driver.UnmapRenderbuffer(ctx, rb);
269 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
312 ctx->Driver.UnmapRenderbuffer(ctx, rb);
338 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
375 ctx->Driver.UnmapRenderbuffer(ctx, rb)
    [all...]
blend.c 252 if (ctx->Driver.BlendFuncSeparate) {
253 ctx->Driver.BlendFuncSeparate(ctx, sfactorRGB, dfactorRGB,
314 if (ctx->Driver.BlendFuncSeparatei) {
315 ctx->Driver.BlendFuncSeparatei(ctx, buf, sfactorRGB, dfactorRGB,
381 if (ctx->Driver.BlendEquationSeparate)
382 (*ctx->Driver.BlendEquationSeparate)( ctx, mode, mode );
419 if (ctx->Driver.BlendEquationSeparatei)
420 ctx->Driver.BlendEquationSeparatei(ctx, buf, mode, mode);
439 "glBlendEquationSeparateEXT not supported by driver");
474 if (ctx->Driver.BlendEquationSeparate
    [all...]
bufferobj.c 315 ASSERT(ctx->Driver.DeleteBuffer);
316 ctx->Driver.DeleteBuffer(ctx, oldObj);
578 srcPtr = dstPtr = ctx->Driver.MapBufferRange(ctx, 0, src->Size,
588 srcPtr = ctx->Driver.MapBufferRange(ctx, readOffset, size,
590 dstPtr = ctx->Driver.MapBufferRange(ctx, writeOffset, size,
601 ctx->Driver.UnmapBuffer(ctx, src);
603 ctx->Driver.UnmapBuffer(ctx, dst);
683 ASSERT(ctx->Driver.NewBufferObject);
684 buf = ctx->Driver.NewBufferObject(ctx, buffer, target);
737 /* Pass BindBuffer call to device driver */
    [all...]
texgetimage.c 95 ctx->Driver.MapTextureImage(ctx, texImage, img,
109 ctx->Driver.UnmapTextureImage(ctx, texImage, img);
139 ctx->Driver.MapTextureImage(ctx, texImage, img,
156 ctx->Driver.UnmapTextureImage(ctx, texImage, img);
184 ctx->Driver.MapTextureImage(ctx, texImage, img,
209 ctx->Driver.UnmapTextureImage(ctx, texImage, img);
253 ctx->Driver.MapTextureImage(ctx, texImage, 0,
261 ctx->Driver.UnmapTextureImage(ctx, texImage, 0);
377 ctx->Driver.MapTextureImage(ctx, texImage, img,
411 ctx->Driver.UnmapTextureImage(ctx, texImage, img)
    [all...]
arrayobj.c 152 ASSERT(ctx->Driver.DeleteArrayObject);
153 ctx->Driver.DeleteArrayObject(ctx, oldObj);
371 newObj = (*ctx->Driver.NewArrayObject)(ctx, id);
395 /* Pass BindVertexArray call to device driver */
396 if (ctx->Driver.BindArrayObject && newObj)
397 ctx->Driver.BindArrayObject(ctx, newObj);
505 obj = (*ctx->Driver.NewArrayObject)( ctx, name );
clear.c 71 * change, flushes the vertices and notifies the driver via the
147 * etc. If the rasterization mode is set to GL_RENDER then requests the driver
204 /* Build the bitmask to send to device driver's Clear function.
232 ASSERT(ctx->Driver.Clear);
233 ctx->Driver.Clear(ctx, bufferMask);
335 * XXX in the future we may have a new ctx->Driver.ClearBuffer()
340 ctx->Driver.Clear(ctx, BUFFER_BIT_STENCIL);
360 ctx->Driver.Clear(ctx, mask);
426 ctx->Driver.Clear(ctx, mask);
498 * XXX in the future we may have a new ctx->Driver.ClearBuffer(
    [all...]
drawtex.c 53 ASSERT(ctx->Driver.DrawTex);
54 ctx->Driver.DrawTex(ctx, x, y, z, width, height);
points.c 60 if (ctx->Driver.PointSize)
61 ctx->Driver.PointSize(ctx, size);
221 if (ctx->Driver.PointParameterfv)
222 (*ctx->Driver.PointParameterfv)(ctx, pname, params);
state.c 91 * to the current/active programs. Then call ctx->Driver.BindProgram() to
92 * tell the driver which programs to use.
207 /* Let the driver know what's happening:
211 if (ctx->Driver.BindProgram) {
212 ctx->Driver.BindProgram(ctx, GL_FRAGMENT_PROGRAM_ARB,
219 if (ctx->Driver.BindProgram) {
220 ctx->Driver.BindProgram(ctx, MESA_GEOMETRY_PROGRAM,
227 if (ctx->Driver.BindProgram) {
228 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
284 /* Compute scale and bias values. This is really driver-specifi
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tris.c 905 tnl->Driver.Render.PrimTabElts[GL_POLYGON] (ctx, 0, n,
913 tnl->Driver.Render.PrimitiveNotify(ctx, prim);
921 tnl->Driver.Render.Line(ctx, ii, jj);
1013 tnl->Driver.Render.Points = rast_tab[index].points;
1014 tnl->Driver.Render.Line = rast_tab[index].line;
1015 tnl->Driver.Render.Triangle = rast_tab[index].triangle;
1016 tnl->Driver.Render.Quad = rast_tab[index].quad;
1019 tnl->Driver.Render.PrimTabVerts = intel_render_tab_verts;
1020 tnl->Driver.Render.PrimTabElts = intel_render_tab_elts;
1021 tnl->Driver.Render.ClippedLine = line; /* from tritmp.h *
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_cliptmp.h 122 tnl_interp_func interp = tnl->Driver.Render.Interp;
170 tnl->Driver.Render.CopyPV( ctx, newvert, v1 );
180 tnl->Driver.Render.ClippedLine( ctx, v0, v1 );
191 tnl_interp_func interp = tnl->Driver.Render.Interp;
243 tnl->Driver.Render.CopyPV( ctx, inlist[0], pv );
259 tnl->Driver.Render.ClippedPolygon( ctx, inlist, n );
271 tnl_interp_func interp = tnl->Driver.Render.Interp;
306 tnl->Driver.Render.CopyPV( ctx, inlist[0], pv );
310 tnl->Driver.Render.ClippedPolygon( ctx, inlist, n );
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.c 6 initial release of the Radeon 8500 driver under the XFree86 license.
221 * many places within the driver.
291 if (ctx->Driver.Enable != NULL)
292 ctx->Driver.Enable(ctx, GL_STENCIL_TEST, ctx->Stencil.Enabled);
300 if (ctx->Driver.FrontFace)
301 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
308 if (ctx->Driver.Enable) {
309 ctx->Driver.Enable(ctx, GL_DEPTH_TEST,
312 ctx->Driver.Enable(ctx, GL_STENCIL_TEST,
324 if (ctx->Driver.Viewport)
    [all...]
radeon_fbo.c 537 if (ctx->Driver.Flush)
538 ctx->Driver.Flush(ctx); /* +r6/r7 */
582 if (ctx->Driver.Flush)
583 ctx->Driver.Flush(ctx); /* +r6/r7 */
753 if (ctx->Driver.Flush)
754 ctx->Driver.Flush(ctx); /* +r6/r7 */
910 if (ctx->Driver.Flush)
911 ctx->Driver.Flush(ctx); /* +r6/r7 */
950 radeon->glCtx->Driver.NewFramebuffer = radeon_new_framebuffer;
951 radeon->glCtx->Driver.NewRenderbuffer = radeon_new_renderbuffer
    [all...]
radeon_span.c 8 initial release of the Radeon 8500 driver under the XFree86 license.
64 ctx->Driver.MapRenderbuffer(ctx, rb, 0, 0, rb->Width, rb->Height,
81 ctx->Driver.UnmapRenderbuffer(ctx, rb);
  /external/mesa3d/src/mesa/swrast/
s_context.h 39 * by the device driver.
201 /** Driver interface:
203 struct swrast_device_driver Driver;
345 * driver's opportunity to map renderbuffers and textures.
351 if (swrast->Driver.SpanRenderStart)
352 swrast->Driver.SpanRenderStart(ctx);
361 if (swrast->Driver.SpanRenderFinish)
362 swrast->Driver.SpanRenderFinish(ctx);
  /external/mesa3d/src/mesa/vbo/
vbo_save_loopback.c 153 ctx->Driver.CurrentExecPrimitive |= VBO_SAVE_PRIM_WEAK;
155 ctx->Driver.CurrentExecPrimitive &= ~VBO_SAVE_PRIM_WEAK;
184 (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END))
vbo_save_draw.c 73 ctx->Driver.GetBufferSubData( ctx, offset,
122 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
124 ctx->Driver.CurrentExecPrimitive = prim->mode;
234 ctx->Driver.MapBufferRange(ctx, 0,
247 ctx->Driver.UnmapBuffer(ctx, list->vertex_store->bufferobj);
280 if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END &&
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/clang/include/clang/Driver/
ToolChain.h 14 #include "clang/Driver/Action.h"
15 #include "clang/Driver/Multilib.h"
16 #include "clang/Driver/Types.h"
17 #include "clang/Driver/Util.h"
39 namespace driver { namespace in namespace:clang
41 class Driver;
69 const Driver &D;
98 ToolChain(const Driver &D, const llvm::Triple &T,
127 const Driver &getDriver() const { return D; }
161 /// the compiler driver as `ProgName`
    [all...]
  /external/clang/include/clang/
Makefile 2 DIRS := AST Basic Driver Parse Sema Serialization
  /external/mesa3d/src/mesa/swrast_setup/
ss_triangle.c 261 tnl->Driver.Render.Triangle = tri_tab[ind];
262 tnl->Driver.Render.Quad = quad_tab[ind];
263 tnl->Driver.Render.Line = swsetup_line;
264 tnl->Driver.Render.Points = swsetup_points;

Completed in 433 milliseconds

1 23 4 5 6 7 8 91011>>