/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state.h | 34 #include "pipe/p_state.h" 131 softpipe_init_blend_funcs(struct pipe_context *pipe); 134 softpipe_init_clip_funcs(struct pipe_context *pipe); 137 softpipe_init_sampler_funcs(struct pipe_context *pipe); 140 softpipe_init_rasterizer_funcs(struct pipe_context *pipe); 143 softpipe_init_shader_funcs(struct pipe_context *pipe); 146 softpipe_init_streamout_funcs(struct pipe_context *pipe); 149 softpipe_init_vertex_funcs(struct pipe_context *pipe); 159 softpipe_draw_vbo(struct pipe_context *pipe,
|
sp_tex_tile_cache.c | 47 sp_create_tex_tile_cache( struct pipe_context *pipe ) 57 tc->pipe = pipe; 77 tc->pipe->transfer_destroy(tc->pipe, tc->transfer); 80 tc->pipe->transfer_destroy(tc->pipe, tc->tex_trans); 94 tc->tex_trans_map = tc->pipe->transfer_map(tc->pipe, tc->tex_trans); 102 tc->pipe->transfer_unmap(tc->pipe, tc->tex_trans) [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_fs.c | 45 svga_create_fs_state(struct pipe_context *pipe, 48 struct svga_context *svga = svga_context(pipe); 79 svga_bind_fs_state(struct pipe_context *pipe, void *shader) 82 struct svga_context *svga = svga_context(pipe); 89 void svga_delete_fs_state(struct pipe_context *pipe, void *shader) 91 struct svga_context *svga = svga_context(pipe); 133 svga->pipe.create_fs_state = svga_create_fs_state; 134 svga->pipe.bind_fs_state = svga_bind_fs_state; 135 svga->pipe.delete_fs_state = svga_delete_fs_state;
|
svga_pipe_misc.c | 34 static void svga_set_scissor_state( struct pipe_context *pipe, 37 struct svga_context *svga = svga_context(pipe); 44 static void svga_set_polygon_stipple( struct pipe_context *pipe, 72 static void svga_set_framebuffer_state(struct pipe_context *pipe, 75 struct svga_context *svga = svga_context(pipe); 149 static void svga_set_clip_state( struct pipe_context *pipe, 152 struct svga_context *svga = svga_context(pipe); 164 static void svga_set_viewport_state( struct pipe_context *pipe, 167 struct svga_context *svga = svga_context(pipe); 178 svga->pipe.set_scissor_state = svga_set_scissor_state [all...] |
svga_pipe_flush.c | 26 #include "pipe/p_defines.h" 34 static void svga_flush( struct pipe_context *pipe, 37 struct svga_context *svga = svga_context(pipe); 59 debug_dump_surface_bmp(&svga->pipe, filename, fb->cbufs[i]); 64 debug_dump_surface_bmp(&svga->pipe, filename, fb->zsbuf); 74 svga->pipe.flush = svga_flush;
|
svga_resource.c | 61 svga->pipe.get_transfer = u_get_transfer_vtbl; 62 svga->pipe.transfer_map = u_transfer_map_vtbl; 63 svga->pipe.transfer_flush_region = u_transfer_flush_region_vtbl; 64 svga->pipe.transfer_unmap = u_transfer_unmap_vtbl; 65 svga->pipe.transfer_destroy = u_transfer_destroy_vtbl; 66 svga->pipe.transfer_inline_write = u_transfer_inline_write_vtbl;
|
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_flush.c | 43 #include "pipe/p_context.h" 44 #include "pipe/p_defines.h" 45 #include "pipe/p_screen.h" 86 st->pipe->flush( st->pipe, fence ); 100 st->pipe->screen->fence_finish(st->pipe->screen, fence, 102 st->pipe->screen->fence_reference(st->pipe->screen, &fence, NULL);
|
st_cb_syncobj.c | 35 #include "pipe/p_context.h" 36 #include "pipe/p_screen.h" 59 struct pipe_screen *screen = st_context(ctx)->pipe->screen; 69 struct pipe_context *pipe = st_context(ctx)->pipe; local 75 pipe->flush(pipe, &so->fence); 80 struct pipe_screen *screen = st_context(ctx)->pipe->screen; 93 struct pipe_screen *screen = st_context(ctx)->pipe->screen;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/ |
pp_run.c | 118 p->view = p->pipe->create_sampler_view(p->pipe, in, &v_tmp); 128 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, out, &p->surf); 145 pp_tgsi_to_state(struct pipe_context *pipe, const char *text, bool isvs, 160 return pipe->create_vs_state(pipe, &state); 162 return pipe->create_fs_state(pipe, &state); 181 util_draw_vertex_buffer(p->pipe, p->cso, p->vbuf, 0 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_upload_mgr.c | 32 #include "pipe/p_defines.h" 34 #include "pipe/p_context.h" 42 struct pipe_context *pipe; member in struct:u_upload_mgr 57 struct u_upload_mgr *u_upload_create( struct pipe_context *pipe, 66 upload->pipe = pipe; 81 pipe_buffer_flush_mapped_range(upload->pipe, upload->transfer, 84 pipe_transfer_unmap(upload->pipe, upload->transfer); 85 pipe_transfer_destroy(upload->pipe, upload->transfer); 130 upload->buffer = pipe_buffer_create( upload->pipe->screen [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_pipe_misc.c | 34 static void svga_set_scissor_state( struct pipe_context *pipe, 37 struct svga_context *svga = svga_context(pipe); 44 static void svga_set_polygon_stipple( struct pipe_context *pipe, 72 static void svga_set_framebuffer_state(struct pipe_context *pipe, 75 struct svga_context *svga = svga_context(pipe); 149 static void svga_set_clip_state( struct pipe_context *pipe, 152 struct svga_context *svga = svga_context(pipe); 164 static void svga_set_viewport_state( struct pipe_context *pipe, 167 struct svga_context *svga = svga_context(pipe); 178 svga->pipe.set_scissor_state = svga_set_scissor_state [all...] |
svga_pipe_flush.c | 26 #include "pipe/p_defines.h" 34 static void svga_flush( struct pipe_context *pipe, 37 struct svga_context *svga = svga_context(pipe); 59 debug_dump_surface_bmp(&svga->pipe, filename, fb->cbufs[i]); 64 debug_dump_surface_bmp(&svga->pipe, filename, fb->zsbuf); 74 svga->pipe.flush = svga_flush;
|
svga_resource.c | 61 svga->pipe.get_transfer = u_get_transfer_vtbl; 62 svga->pipe.transfer_map = u_transfer_map_vtbl; 63 svga->pipe.transfer_flush_region = u_transfer_flush_region_vtbl; 64 svga->pipe.transfer_unmap = u_transfer_unmap_vtbl; 65 svga->pipe.transfer_destroy = u_transfer_destroy_vtbl; 66 svga->pipe.transfer_inline_write = u_transfer_inline_write_vtbl;
|
/external/libnfc-nxp/src/ |
phHciNfc_Pipe.h | 22 * \brief HCI Header for the Pipe Management. * 81 /* Pipe for Identitiy Management */ 83 /* Pipe for Configuring PN544 Nfc Device */ 85 /* Pipe for Configuring Polling Wheel */ 106 /* Connectiviy Gate Pipe */ 153 * This function Updates the pipe information for all the supported gates 176 * the Static or Dynamically Created Pipe. 178 * \retval NFCSTATUS_PENDING Pipe Open is pending. 204 * the Static or Dynamically Created Pipe. 206 * \retval NFCSTATUS_PENDING Pipe close is pending [all...] |
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_run.c | 118 p->view = p->pipe->create_sampler_view(p->pipe, in, &v_tmp); 128 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, out, &p->surf); 145 pp_tgsi_to_state(struct pipe_context *pipe, const char *text, bool isvs, 160 return pipe->create_vs_state(pipe, &state); 162 return pipe->create_fs_state(pipe, &state); 181 util_draw_vertex_buffer(p->pipe, p->cso, p->vbuf, 0 [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_upload_mgr.c | 32 #include "pipe/p_defines.h" 34 #include "pipe/p_context.h" 42 struct pipe_context *pipe; member in struct:u_upload_mgr 57 struct u_upload_mgr *u_upload_create( struct pipe_context *pipe, 66 upload->pipe = pipe; 81 pipe_buffer_flush_mapped_range(upload->pipe, upload->transfer, 84 pipe_transfer_unmap(upload->pipe, upload->transfer); 85 pipe_transfer_destroy(upload->pipe, upload->transfer); 130 upload->buffer = pipe_buffer_create( upload->pipe->screen [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/ |
dxgi_native.cpp | 33 #include "pipe/p_shader_tokens.h" 733 pipe_context* pipe; member in struct:dxgi_blitter 746 dxgi_blitter(pipe_context* pipe) 747 : pipe(pipe) 749 //normalized = !!pipe->screen->get_param(pipe, PIPE_CAP_NPOT_TEXTURES); 759 rasterizer = pipe->create_rasterizer_state(pipe, &rs_state); 764 blend = pipe->create_blend_state(pipe, &blendd) 896 struct pipe_context* pipe; member in struct:GalliumDXGISwapChain [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/ |
dxgi_native.cpp | 33 #include "pipe/p_shader_tokens.h" 733 pipe_context* pipe; member in struct:dxgi_blitter 746 dxgi_blitter(pipe_context* pipe) 747 : pipe(pipe) 749 //normalized = !!pipe->screen->get_param(pipe, PIPE_CAP_NPOT_TEXTURES); 759 rasterizer = pipe->create_rasterizer_state(pipe, &rs_state); 764 blend = pipe->create_blend_state(pipe, &blendd) 896 struct pipe_context* pipe; member in struct:GalliumDXGISwapChain [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
vg_manager.c | 32 #include "pipe/p_context.h" 33 #include "pipe/p_screen.h" 49 struct pipe_context *pipe = ctx->pipe; local 67 strb->surface = pipe->create_surface(pipe, strb->texture, &surf_tmpl); 148 ctx->pipe->flush(ctx->pipe, fence); 157 struct pipe_context *pipe = ctx->pipe; local 171 struct pipe_context *pipe; local [all...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
vg_manager.c | 32 #include "pipe/p_context.h" 33 #include "pipe/p_screen.h" 49 struct pipe_context *pipe = ctx->pipe; local 67 strb->surface = pipe->create_surface(pipe, strb->texture, &surf_tmpl); 148 ctx->pipe->flush(ctx->pipe, fence); 157 struct pipe_context *pipe = ctx->pipe; local 171 struct pipe_context *pipe; local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
SourceChannelTest.java | 22 import java.nio.channels.Pipe; 28 * Tests for java.nio.channels.Pipe.SourceChannel 36 private Pipe pipe; field in class:SourceChannelTest 38 private Pipe.SinkChannel sink; 40 private Pipe.SourceChannel source; 48 pipe = Pipe.open(); 49 sink = pipe.sink(); 50 source = pipe.source() 301 Pipe pipe = Pipe.open(); local [all...] |
/external/chromium/chrome/browser/cocoa/ |
authorization_util.h | 16 // tool's stdout (and stdin) via a FILE* pipe. The tool can output its pid 17 // to this pipe, and the main program can read it, and then have something 44 // |pipe| may be NULL, but the tool will always be executed with a pipe in 50 FILE** pipe, 62 FILE** pipe,
|
/external/chromium_org/chrome/browser/extensions/api/messaging/ |
native_process_launcher_posix.cc | 47 if (HANDLE_EINTR(pipe(read_pipe_fds)) != 0) { 48 LOG(ERROR) << "Bad read pipe"; 56 if (HANDLE_EINTR(pipe(write_pipe_fds)) != 0) { 57 LOG(ERROR) << "Bad write pipe"; 71 // We will not be reading from the write pipe, nor writing from the read pipe.
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
xorg_exa.c | 41 #include "pipe/p_format.h" 42 #include "pipe/p_context.h" 43 #include "pipe/p_state.h" 208 transfer = pipe_get_transfer(exa->pipe, priv->tex, 0, 0, 217 w, h, exa->pipe->transfer_map(exa->pipe, transfer), 220 exa->pipe->transfer_unmap(exa->pipe, transfer); 221 exa->pipe->transfer_destroy(exa->pipe, transfer) [all...] |
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_exa.c | 41 #include "pipe/p_format.h" 42 #include "pipe/p_context.h" 43 #include "pipe/p_state.h" 208 transfer = pipe_get_transfer(exa->pipe, priv->tex, 0, 0, 217 w, h, exa->pipe->transfer_map(exa->pipe, transfer), 220 exa->pipe->transfer_unmap(exa->pipe, transfer); 221 exa->pipe->transfer_destroy(exa->pipe, transfer) [all...] |