/external/mesa3d/src/mesa/drivers/common/ |
D | driverfuncs.c | 223 ctx->Driver.AlphaFunc(ctx, ctx->Color.AlphaFunc, ctx->Color.AlphaRef); in _mesa_init_driver_state() 225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_init_driver_state() 227 ctx->Driver.BlendEquationSeparate(ctx, in _mesa_init_driver_state() 231 ctx->Driver.BlendFuncSeparate(ctx, in _mesa_init_driver_state() 237 ctx->Driver.ColorMask(ctx, in _mesa_init_driver_state() 243 ctx->Driver.CullFace(ctx, ctx->Polygon.CullFaceMode); in _mesa_init_driver_state() 244 ctx->Driver.DepthFunc(ctx, ctx->Depth.Func); in _mesa_init_driver_state() 245 ctx->Driver.DepthMask(ctx, ctx->Depth.Mask); in _mesa_init_driver_state() 247 ctx->Driver.Enable(ctx, GL_ALPHA_TEST, ctx->Color.AlphaEnabled); in _mesa_init_driver_state() 248 ctx->Driver.Enable(ctx, GL_BLEND, ctx->Color.BlendEnabled); in _mesa_init_driver_state() [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_render.c | 86 tnl->Driver.Render.Points( ctx, start, count ) 126 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \ 127 const tnl_triangle_func TriangleFunc = tnl->Driver.Render.Triangle; \ 128 const tnl_quad_func QuadFunc = tnl->Driver.Render.Quad; \ 134 #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x ) 135 #define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx ) 157 tnl_render_func render_tris = tnl->Driver.Render.PrimTabElts[GL_TRIANGLES]; in clip_elt_triangles() 165 tnl->Driver.Render.PrimitiveNotify( ctx, GL_TRIANGLES ); in clip_elt_triangles() 197 tnl->Driver.Render.Points( ctx, start, count ) 214 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \ [all …]
|
/external/swiftshader/tests/VulkanUnitTests/ |
D | Driver.hpp | 20 class Driver class 23 Driver(); 24 ~Driver(); 61 Driver(const Driver &) = delete; 62 Driver(Driver &&) = delete; 63 Driver &operator=(const Driver &) = delete; 79 bool Driver::lookup(T *ptr, const char *name) in lookup()
|
D | Driver.cpp | 36 Driver::Driver() in Driver() function in Driver 48 Driver::~Driver() in ~Driver() 53 bool Driver::loadSwiftShader() in loadSwiftShader() 99 bool Driver::loadSystem() in loadSystem() 108 bool Driver::load(const char *path) in load() 143 void Driver::unload() in unload() 167 bool Driver::isLoaded() const in isLoaded() 172 bool Driver::resolve(VkInstance instance) in resolve() 194 void *Driver::lookup(const char *name) in lookup()
|
D | Device.hpp | 20 class Driver; 38 Driver const *driver, VkInstance instance, std::unique_ptr<Device> &out); 140 Driver const *driver, VkInstance instance, 144 Driver const *driver, VkPhysicalDevice device); 147 …Device(Driver const *driver, VkDevice device, VkPhysicalDevice physicalDevice, uint32_t queueFamil… 151 Driver const *driver, VkPhysicalDevice device); 153 Driver const *driver;
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_state.c | 510 ctx->Driver.AlphaFunc = nouveau_alpha_func; in nouveau_state_init() 511 ctx->Driver.BlendColor = nouveau_blend_color; in nouveau_state_init() 512 ctx->Driver.BlendEquationSeparate = nouveau_blend_equation_separate; in nouveau_state_init() 513 ctx->Driver.BlendFuncSeparate = nouveau_blend_func_separate; in nouveau_state_init() 514 ctx->Driver.ClipPlane = nouveau_clip_plane; in nouveau_state_init() 515 ctx->Driver.ColorMask = nouveau_color_mask; in nouveau_state_init() 516 ctx->Driver.ColorMaterial = nouveau_color_material; in nouveau_state_init() 517 ctx->Driver.CullFace = nouveau_cull_face; in nouveau_state_init() 518 ctx->Driver.FrontFace = nouveau_front_face; in nouveau_state_init() 519 ctx->Driver.DepthFunc = nouveau_depth_func; in nouveau_state_init() [all …]
|
D | nouveau_swtnl_t.c | 320 tnl->Driver.RunPipeline = _tnl_run_pipeline; in TAG() 321 tnl->Driver.Render.Interp = _tnl_interp; in TAG() 322 tnl->Driver.Render.CopyPV = _tnl_copy_pv; in TAG() 323 tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon; in TAG() 324 tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine; in TAG() 325 tnl->Driver.Render.BuildVertices = _tnl_build_vertices; in TAG() 327 tnl->Driver.Render.Start = swtnl_start; in TAG() 328 tnl->Driver.Render.Finish = swtnl_finish; in TAG() 329 tnl->Driver.Render.PrimitiveNotify = swtnl_primitive; in TAG() 330 tnl->Driver.Render.ResetLineStipple = swtnl_reset_stipple; in TAG() [all …]
|
D | nv04_render.c | 267 tnl->Driver.RunPipeline = _tnl_run_pipeline; in nv04_render_init() 268 tnl->Driver.Render.Interp = _tnl_interp; in nv04_render_init() 269 tnl->Driver.Render.CopyPV = _tnl_copy_pv; in nv04_render_init() 270 tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon; in nv04_render_init() 271 tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine; in nv04_render_init() 272 tnl->Driver.Render.BuildVertices = _tnl_build_vertices; in nv04_render_init() 274 tnl->Driver.Render.Start = swtnl_start; in nv04_render_init() 275 tnl->Driver.Render.Finish = swtnl_finish; in nv04_render_init() 276 tnl->Driver.Render.PrimitiveNotify = swtnl_primitive; in nv04_render_init() 277 tnl->Driver.Render.ResetLineStipple = swtnl_reset_stipple; in nv04_render_init() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | barrier.c | 58 ctx->Driver.TextureBarrier(ctx); in _mesa_TextureBarrierNV() 66 if (ctx->Driver.MemoryBarrier) in _mesa_MemoryBarrier() 67 ctx->Driver.MemoryBarrier(ctx, barriers); in _mesa_MemoryBarrier() 81 if (ctx->Driver.MemoryBarrier) { in memory_barrier_by_region() 92 ctx->Driver.MemoryBarrier(ctx, all_allowed_bits); in memory_barrier_by_region() 107 ctx->Driver.MemoryBarrier(ctx, barriers); in memory_barrier_by_region() 136 ctx->Driver.FramebufferFetchBarrier(ctx); in _mesa_BlendBarrier() 150 ctx->Driver.FramebufferFetchBarrier(ctx); in _mesa_FramebufferFetchBarrierEXT()
|
D | performance_query.c | 57 ctx->Driver.DeletePerfQuery(ctx, m); in free_performance_query() 77 if (ctx->Driver.InitPerfQueryInfo) in init_performance_query_info() 78 return ctx->Driver.InitPerfQueryInfo(ctx); in init_performance_query_info() 241 ctx->Driver.GetPerfQueryInfo(ctx, i, &name, &ignore, &ignore, &ignore); in _mesa_GetPerfQueryIdByNameINTEL() 281 ctx->Driver.GetPerfQueryInfo(ctx, queryIndex, in _mesa_GetPerfQueryInfoINTEL() 350 ctx->Driver.GetPerfQueryInfo(ctx, queryIndex, in _mesa_GetPerfCounterInfoINTEL() 364 ctx->Driver.GetPerfCounterInfo(ctx, queryIndex, counterIndex, in _mesa_GetPerfCounterInfoINTEL() 455 obj = ctx->Driver.NewPerfQueryObject(ctx, queryid_to_index(queryId)); in _mesa_CreatePerfQueryINTEL() 496 ctx->Driver.WaitPerfQuery(ctx, obj); in _mesa_DeletePerfQueryINTEL() 501 ctx->Driver.DeletePerfQuery(ctx, obj); in _mesa_DeletePerfQueryINTEL() [all …]
|
D | condrender.c | 102 if (ctx->Driver.BeginConditionalRender) in begin_conditional_render() 103 ctx->Driver.BeginConditionalRender(ctx, q, mode); in begin_conditional_render() 141 if (ctx->Driver.EndConditionalRender) in end_conditional_render() 142 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery); in end_conditional_render() 198 ctx->Driver.WaitQuery(ctx, q); in _mesa_check_conditional_render() 205 ctx->Driver.WaitQuery(ctx, q); in _mesa_check_conditional_render() 212 ctx->Driver.CheckQuery(ctx, q); in _mesa_check_conditional_render() 218 ctx->Driver.CheckQuery(ctx, q); in _mesa_check_conditional_render()
|
D | objectpurge.c | 66 if (ctx->Driver.BufferObjectPurgeable) in buffer_object_purgeable() 67 retval = ctx->Driver.BufferObjectPurgeable(ctx, bufObj, option); in buffer_object_purgeable() 95 if (ctx->Driver.RenderObjectPurgeable) in renderbuffer_purgeable() 96 retval = ctx->Driver.RenderObjectPurgeable(ctx, bufObj, option); in renderbuffer_purgeable() 124 if (ctx->Driver.TextureObjectPurgeable) in texture_object_purgeable() 125 retval = ctx->Driver.TextureObjectPurgeable(ctx, bufObj, option); in texture_object_purgeable() 206 if (ctx->Driver.BufferObjectUnpurgeable) in buffer_object_unpurgeable() 207 retval = ctx->Driver.BufferObjectUnpurgeable(ctx, bufObj, option); in buffer_object_unpurgeable() 236 if (ctx->Driver.RenderObjectUnpurgeable) in renderbuffer_unpurgeable() 237 retval = ctx->Driver.RenderObjectUnpurgeable(ctx, bufObj, option); in renderbuffer_unpurgeable() [all …]
|
D | stencil.c | 166 if (ctx->Driver.StencilFuncSeparate) { in _mesa_StencilFuncSeparateATI() 167 ctx->Driver.StencilFuncSeparate(ctx, GL_FRONT, in _mesa_StencilFuncSeparateATI() 169 ctx->Driver.StencilFuncSeparate(ctx, GL_BACK, in _mesa_StencilFuncSeparateATI() 207 if (ctx->Driver.StencilFuncSeparate && ctx->Stencil.TestTwoSide) { in stencil_func() 208 ctx->Driver.StencilFuncSeparate(ctx, GL_BACK, func, ref, mask); in stencil_func() 225 if (ctx->Driver.StencilFuncSeparate) { in stencil_func() 226 ctx->Driver.StencilFuncSeparate(ctx, in stencil_func() 292 if (ctx->Driver.StencilMaskSeparate && ctx->Stencil.TestTwoSide) { in _mesa_StencilMask() 293 ctx->Driver.StencilMaskSeparate(ctx, GL_BACK, mask); in _mesa_StencilMask() 304 if (ctx->Driver.StencilMaskSeparate) { in _mesa_StencilMask() [all …]
|
D | polygon.c | 69 if (ctx->Driver.CullFace) in cull_face() 70 ctx->Driver.CullFace(ctx, mode); in cull_face() 120 if (ctx->Driver.FrontFace) in front_face() 121 ctx->Driver.FrontFace(ctx, mode); in front_face() 218 if (ctx->Driver.PolygonMode) in polygon_mode() 219 ctx->Driver.PolygonMode(ctx, face, mode); in polygon_mode() 266 if (ctx->Driver.PolygonStipple) in _mesa_PolygonStipple() 267 ctx->Driver.PolygonStipple(ctx, pattern); in _mesa_PolygonStipple() 316 if (ctx->Driver.PolygonOffset) in _mesa_polygon_offset_clamp() 317 ctx->Driver.PolygonOffset( ctx, factor, units, clamp ); in _mesa_polygon_offset_clamp()
|
/external/llvm-project/lld/docs/ |
D | Driver.rst | 2 Driver title 53 #. Add the option to the desired :file:`lib/Driver/{flavor}Options.td`. 59 `lib/Driver/{Flavor}Driver.cpp` to call the targetInfo setter 68 #. Add an entry for the flavor in :file:`include/lld/Common/Driver.h` to 71 #. Add an entry in :file:`lib/Driver/UniversalDriver.cpp` to 72 :cpp:func:`lld::Driver::strToFlavor` and 76 #. Add a tablegen file called :file:`lib/Driver/{flavor}Options.td` that 79 must also be added to :file:`lib/Driver/CMakeLists.txt`. 81 #. Add a ``{flavor}Driver`` as a subclass of :cpp:class:`lld::Driver` 82 in :file:`lib/Driver/{flavor}Driver.cpp`.
|
/external/rust/crates/tokio/src/runtime/ |
D | driver.rs | 11 type IoDriver = crate::io::driver::Driver; 22 let io_driver = crate::io::driver::Driver::new()?; 56 type SignalDriver = crate::signal::unix::driver::Driver; 60 let driver = crate::signal::unix::driver::Driver::new(io_driver)?; 81 type ProcessDriver = crate::process::unix::driver::Driver; 84 crate::process::unix::driver::Driver::new(signal_driver) 101 type TimeDriver = crate::park::either::Either<crate::time::driver::Driver<IoStack>, IoStack>; 118 let driver = crate::time::driver::Driver::new(io_stack, clock); 150 pub(crate) struct Driver { struct 168 impl Driver { implementation [all …]
|
/external/mesa3d/src/gallium/targets/d3dadapter9/ |
D | description.c | 252 strncpy(drvid->Driver, "igdumd32.dll", sizeof(drvid->Driver)); in d3d_fill_driver_version() 257 strncpy(drvid->Driver, "vm3dum.dll", sizeof(drvid->Driver)); in d3d_fill_driver_version() 262 strncpy(drvid->Driver, "atiumdag.dll", sizeof(drvid->Driver)); in d3d_fill_driver_version() 267 strncpy(drvid->Driver, "nvd3dum.dll", sizeof(drvid->Driver)); in d3d_fill_driver_version()
|
/external/mesa3d/src/mesa/swrast_setup/ |
D | ss_context.c | 237 tnl->Driver.Render.Start = _swsetup_RenderStart; in _swsetup_Wakeup() 238 tnl->Driver.Render.Finish = _swsetup_RenderFinish; in _swsetup_Wakeup() 239 tnl->Driver.Render.PrimitiveNotify = _swsetup_RenderPrimitive; in _swsetup_Wakeup() 240 tnl->Driver.Render.Interp = _tnl_interp; in _swsetup_Wakeup() 241 tnl->Driver.Render.CopyPV = _tnl_copy_pv; in _swsetup_Wakeup() 242 tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon; /* new */ in _swsetup_Wakeup() 243 tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine; /* new */ in _swsetup_Wakeup() 248 tnl->Driver.Render.PrimTabVerts = _tnl_render_tab_verts; in _swsetup_Wakeup() 249 tnl->Driver.Render.PrimTabElts = _tnl_render_tab_elts; in _swsetup_Wakeup() 250 tnl->Driver.Render.ResetLineStipple = _swrast_ResetLineStipple; in _swsetup_Wakeup() [all …]
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | QueryDriverDatabase.cpp | 139 extractSystemIncludesAndTarget(PathRef Driver, llvm::StringRef Lang, in extractSystemIncludesAndTarget() argument 143 SPAN_ATTACH(Tracer, "driver", Driver); in extractSystemIncludesAndTarget() 146 if (!QueryDriverRegex.match(Driver)) { in extractSystemIncludesAndTarget() 147 vlog("System include extraction: not allowed driver {0}", Driver); in extractSystemIncludesAndTarget() 151 if (!llvm::sys::fs::exists(Driver)) { in extractSystemIncludesAndTarget() 152 elog("System include extraction: {0} does not exist.", Driver); in extractSystemIncludesAndTarget() 155 if (!llvm::sys::fs::can_execute(Driver)) { in extractSystemIncludesAndTarget() 156 elog("System include extraction: {0} is not executable.", Driver); in extractSystemIncludesAndTarget() 174 llvm::SmallVector<llvm::StringRef, 12> Args = {Driver, "-E", "-x", in extractSystemIncludesAndTarget() 206 if (int RC = llvm::sys::ExecuteAndWait(Driver, Args, /*Env=*/llvm::None, in extractSystemIncludesAndTarget() [all …]
|
D | CompileCommands.cpp | 132 static std::string resolveDriver(llvm::StringRef Driver, bool FollowSymlink, in resolveDriver() argument 136 llvm::sys::path::append(Result, llvm::sys::path::filename(Driver)); in resolveDriver() 142 if (!llvm::sys::path::is_absolute(Driver)) { in resolveDriver() 146 if (llvm::any_of(Driver, in resolveDriver() 148 return Driver.str(); in resolveDriver() 151 (Driver == "clang" || Driver == "clang++" || Driver == "gcc" || in resolveDriver() 152 Driver == "g++" || Driver == "cc" || Driver == "c++")) { in resolveDriver() 156 auto Absolute = llvm::sys::findProgramByName(Driver); in resolveDriver() 158 Driver = Storage = std::move(*Absolute); in resolveDriver() 162 return Driver.str(); in resolveDriver() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_swtcl.c | 427 tnl->Driver.Render.Start( ctx ); in radeon_run_render() 447 tnl->Driver.Render.Finish( ctx ); in radeon_run_render() 710 tnl->Driver.Render.Points = rast_tab[index].points; in radeonChooseRenderState() 711 tnl->Driver.Render.Line = rast_tab[index].line; in radeonChooseRenderState() 712 tnl->Driver.Render.ClippedLine = rast_tab[index].line; in radeonChooseRenderState() 713 tnl->Driver.Render.Triangle = rast_tab[index].triangle; in radeonChooseRenderState() 714 tnl->Driver.Render.Quad = rast_tab[index].quad; in radeonChooseRenderState() 717 tnl->Driver.Render.PrimTabVerts = radeon_render_tab_verts; in radeonChooseRenderState() 718 tnl->Driver.Render.PrimTabElts = radeon_render_tab_elts; in radeonChooseRenderState() 719 tnl->Driver.Render.ClippedPolygon = radeon_fast_clipped_poly; in radeonChooseRenderState() [all …]
|
/external/mesa3d/docs/gallium/ |
D | distro.rst | 13 Driver for Intel i915 and i945 chipsets. 24 Driver for the nVidia nv30 and nv40 families of GPUs. 29 Driver for the nVidia nv50 family of GPUs. 34 Driver for the nVidia nvc0 / fermi family of GPUs. 39 Driver for VMware virtualized guest operating system graphics processing. 44 Driver for the ATI/AMD r300, r400, and r500 families of GPUs. 49 Driver for the ATI/AMD r600, r700, Evergreen and Northern Islands families of GPUs. 54 Driver for the AMD Southern Islands family of GPUs. 59 Driver for Qualcomm Adreno a2xx, a3xx, and a4xx series of GPUs.
|
/external/clang/lib/Driver/ |
D | ToolChains.h | 83 const Driver &D; 105 explicit GCCInstallationDetector(const Driver &D) : IsValid(false), D(D) {} in GCCInstallationDetector() 165 const Driver &D; 180 CudaInstallationDetector(const Driver &D) : D(D) {} in CudaInstallationDetector() 215 Generic_GCC(const Driver &D, const llvm::Triple &Triple, 267 MachO(const Driver &D, const llvm::Triple &Triple, 400 Darwin(const Driver &D, const llvm::Triple &Triple, 570 DarwinClang(const Driver &D, const llvm::Triple &Triple, 610 Generic_ELF(const Driver &D, const llvm::Triple &Triple, in Generic_ELF() 620 CloudABI(const Driver &D, const llvm::Triple &Triple, [all …]
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
D | TestHelper_DriverManager.java | 20 import java.sql.Driver; 33 static Driver testDriver = null; 46 public static void setDriver(Driver theDriver) { in setDriver() 60 Driver aDriver; in checkDeregister()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_common.c | 267 if (ctx->Driver.Enable != NULL) in radeon_draw_buffer() 268 ctx->Driver.Enable(ctx, GL_STENCIL_TEST, ctx->Stencil.Enabled); in radeon_draw_buffer() 276 if (ctx->Driver.FrontFace) in radeon_draw_buffer() 277 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace); in radeon_draw_buffer() 284 if (ctx->Driver.Enable) { in radeon_draw_buffer() 285 ctx->Driver.Enable(ctx, GL_DEPTH_TEST, in radeon_draw_buffer() 287 ctx->Driver.Enable(ctx, GL_STENCIL_TEST, in radeon_draw_buffer() 304 if (ctx->Driver.DepthRange) in radeon_draw_buffer() 305 ctx->Driver.DepthRange(ctx); in radeon_draw_buffer() 310 if (ctx->Driver.FrontFace) in radeon_draw_buffer() [all …]
|