HomeSort by relevance Sort by last modified time
    Searched defs:pipe (Results 101 - 125 of 375) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/svga/
svga_draw_arrays.c 48 struct pipe_context *pipe = &hwtnl->svga->pipe; local
54 dst = pipe_buffer_create( pipe->screen,
61 dst_map = pipe_buffer_map( pipe, dst, PIPE_TRANSFER_WRITE,
69 pipe_buffer_unmap( pipe, transfer );
76 pipe_buffer_unmap( pipe, transfer );
79 pipe->screen->resource_destroy( pipe->screen, dst );
svga_draw_elements.c 49 struct pipe_context *pipe = &hwtnl->svga->pipe; local
57 dst = pipe_buffer_create( pipe->screen,
64 src_map = pipe_buffer_map( pipe, src, PIPE_TRANSFER_READ, &src_transfer );
68 dst_map = pipe_buffer_map( pipe, dst, PIPE_TRANSFER_WRITE, &dst_transfer );
76 pipe_buffer_unmap( pipe, src_transfer );
77 pipe_buffer_unmap( pipe, dst_transfer );
84 pipe_buffer_unmap( pipe, src_transfer );
87 pipe_buffer_unmap( pipe, dst_transfer );
90 pipe->screen->resource_destroy( pipe->screen, dst )
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
resource.cpp 24 #include "pipe/p_screen.h"
34 pipe({ (unsigned)origin[0], (unsigned)origin[1],
40 return &pipe;
44 pipe_box pipe; member in class:__anon26171::box
49 dev(dev), obj(obj), pipe(NULL), offset{0} {
60 q.pipe->resource_copy_region(q.pipe, pipe, 0, p[0], p[1], p[2],
61 src_res.pipe, 0,
88 u_sampler_view_default_template(&info, pipe, pipe->format)
    [all...]
resource.hpp 31 #include "pipe/p_state.h"
72 pipe_resource *pipe; member in class:clover::resource
  /external/mesa3d/src/gallium/state_trackers/vdpau/
presentation.c 208 struct pipe_context *pipe; local
224 pipe = pq->device->context;
240 surf_draw = pipe->create_surface(pipe, tex, &surf_templ);
272 pipe->screen->flush_frontbuffer
274 pipe->screen, tex, 0, 0,
278 pipe->screen->fence_reference(pipe->screen, &surf->fence, NULL);
279 pipe->flush(pipe, &surf->fence)
    [all...]
surface.c 31 #include "pipe/p_state.h"
48 struct pipe_context *pipe; local
75 pipe = dev->context;
79 p_surf->templat.buffer_format = pipe->screen->get_video_param
81 pipe->screen,
88 p_surf->templat.interlaced = pipe->screen->get_video_param
90 pipe->screen,
94 p_surf->video_buffer = pipe->create_video_buffer(pipe, &p_surf->templat);
197 struct pipe_context *pipe; local
276 struct pipe_context *pipe; local
349 struct pipe_context *pipe = vlsurf->device->context; 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...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
context.c 33 #include "pipe/p_screen.h"
34 #include "pipe/p_video_decoder.h"
35 #include "pipe/p_video_state.h"
36 #include "pipe/p_state.h"
193 struct pipe_context *pipe; local
239 pipe = vscreen->pscreen->context_create(vscreen->pscreen, vscreen);
240 if (!pipe) {
247 context_priv->decoder = pipe->create_video_decoder
249 pipe, ProfileToPipe(mc_type),
258 pipe->destroy(pipe)
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/wrapper/
wrapper_sw_winsys.c 29 #include "pipe/p_format.h"
30 #include "pipe/p_state.h"
42 * We must borrow the whole stack because only the pipe screen knows how
47 * We also need a pipe context for the transfers.
54 struct pipe_context *pipe; member in struct:wrapper_sw_winsys
90 struct pipe_context *pipe = wdt->winsys->pipe; local
94 tr = pipe_get_transfer(pipe, tex, 0, 0,
103 pipe->transfer_destroy(pipe, tr)
198 struct pipe_context *pipe = wdt->winsys->pipe; local
238 struct pipe_context *pipe = wdt->winsys->pipe; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_xformfb.c 46 #include "pipe/p_context.h"
115 struct pipe_context *pipe = st->pipe; local
136 pipe->create_stream_output_target(pipe, bo->buffer,
st_draw_feedback.c 41 #include "pipe/p_context.h"
42 #include "pipe/p_defines.h"
103 struct pipe_context *pipe = st->pipe; local
136 * code sends state updates to the pipe, not to our private draw module.
178 map = pipe_buffer_map(pipe, vbuffers[attr].buffer,
227 mapped_indices = pipe_buffer_map(pipe, stobj->buffer,
258 pipe_buffer_unmap(pipe, ib_transfer);
265 pipe_buffer_unmap(pipe, vb_transfer[attr]);
st_gen_mipmap.c 33 #include "pipe/p_context.h"
34 #include "pipe/p_defines.h"
54 st->gen_mipmap = util_create_gen_mipmap(st->pipe, st->cso_context);
76 struct pipe_context *pipe = st->pipe; local
77 struct pipe_screen *screen = pipe->screen;
94 psv = st_create_texture_sampler_view(pipe, stObj->pt);
98 pipe->render_condition(pipe, NULL, 0);
105 pipe->render_condition(pipe, st->render_condition, st->condition_mode)
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 30 * pipe cannot be more than 256 characters long.
40 Win32PipeStream::Win32PipeStream(HANDLE pipe, size_t bufSize) :
42 m_pipe(pipe)
54 /* Initialize the pipe name corresponding to a given port
59 snprintf(path, pathlen, "\\\\.\\pipe\\qemu-gles-%d", port_number);
64 * One does not create/bind a pipe, and collect a new handle each
67 * Instead, the server creates a new pipe instance each time it wants
71 * So listen() is a no-op, and accept() really creates the pipe handle.
73 * Also, connect() must create a pipe handle with CreateFile() and
87 HANDLE pipe; local
125 HANDLE pipe; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 52 private InputStream pipe; field in class:Pipeline
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
123 // pipe is the Socket stream
126 this.pipe = pipe;
159 this.pipe.close();
  /device/generic/goldfish/libqemu/
test_guest_2.c 17 /* This program benchmarks a QEMUD pipe to exchange data with a test
40 " -pipe <name> Use pipe name (default: " PIPE_NAME ")\n"
50 Pipe pipe[1]; local
77 } else if (!strcmp(arg, "-pipe")) {
79 fprintf(stderr, "-pipe option needs an argument! See --help for details.\n");
111 fprintf(stderr, "You can't use both -pipe and -tcp at the same time\n");
122 /* Use default pipe name */
135 /* Open the pipe */
    [all...]
  /external/chromium_org/ipc/
ipc_channel_unittest.cc 150 // Create pipe manually using the standard Chromium name and set up IPC
153 std::string name("\\\\.\\pipe\\chrome.");
155 HANDLE pipe = CreateNamedPipeA(name.c_str(), local
164 CreateChannelFromChannelHandle(IPC::ChannelHandle(pipe), &listener);
165 CloseHandle(pipe); // The channel duplicates the handle.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 31 #include "pipe/p_context.h"
32 #include "pipe/p_defines.h"
33 #include "pipe/p_shader_tokens.h"
156 struct pipe_context *pipe = draw->pipe; local
163 pipe->bind_rasterizer_state(pipe, r);
175 struct pipe_context *pipe = draw->pipe; local
183 pipe->bind_rasterizer_state(pipe, draw->rast_handle)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_program.c 316 info->bin.source = (void *)prog->pipe.tokens;
364 if (prog->pipe.stream_output.num_outputs)
366 &prog->pipe.stream_output);
425 const struct pipe_shader_state pipe = p->pipe; local
442 p->pipe = pipe;
nv50_push.c 2 #include "pipe/p_context.h"
3 #include "pipe/p_state.h"
253 struct pipe_context *pipe = &nv50->base.pipe; local
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count);
nv50_query.c 54 nv50_query(struct pipe_query *pipe)
56 return (struct nv50_query *)pipe;
92 nv50_query_destroy(struct pipe_context *pipe, struct pipe_query *pq)
94 nv50_query_allocate(nv50_context(pipe), nv50_query(pq), 0);
99 nv50_query_create(struct pipe_context *pipe, unsigned type)
101 struct nv50_context *nv50 = nv50_context(pipe);
142 nv50_query_begin(struct pipe_context *pipe, struct pipe_query *pq)
144 struct nv50_context *nv50 = nv50_context(pipe);
195 nv50_query_end(struct pipe_context *pipe, struct pipe_query *pq)
197 struct nv50_context *nv50 = nv50_context(pipe);
386 struct pipe_context *pipe = &nv50->base.pipe; local
    [all...]
nv50_stateobj.h 5 #include "pipe/p_state.h"
20 struct pipe_blend_state pipe; member in struct:nv50_blend_stateobj
26 struct pipe_rasterizer_state pipe; member in struct:nv50_rasterizer_stateobj
32 struct pipe_depth_stencil_alpha_state pipe; member in struct:nv50_zsa_stateobj
48 struct pipe_vertex_element pipe; member in struct:nv50_vertex_element
66 struct pipe_stream_output_target pipe; member in struct:nv50_so_target
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_program.h 5 #include "pipe/p_state.h"
20 struct pipe_shader_state pipe; member in struct:nvc0_program
nvc0_stateobj.h 5 #include "pipe/p_state.h"
18 struct pipe_blend_state pipe; member in struct:nvc0_blend_stateobj
24 struct pipe_rasterizer_state pipe; member in struct:nvc0_rasterizer_stateobj
30 struct pipe_depth_stencil_alpha_state pipe; member in struct:nvc0_zsa_stateobj
46 struct pipe_vertex_element pipe; member in struct:nvc0_vertex_element
65 struct pipe_stream_output_target pipe; member in struct:nvc0_so_target
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_tile_cache.h 32 #include "pipe/p_compiler.h"
80 struct pipe_context *pipe; member in struct:softpipe_tex_tile_cache
104 sp_create_tex_tile_cache( struct pipe_context *pipe );
sp_tile_cache.c 84 sp_create_tile_cache( struct pipe_context *pipe )
91 maxLevels = pipe->screen->get_param(pipe->screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS);
101 tc->pipe = pipe;
144 tc->pipe->transfer_destroy(tc->pipe, tc->transfer);
159 struct pipe_context *pipe = tc->pipe; local
166 pipe->transfer_unmap(pipe, tc->transfer)
    [all...]

Completed in 1276 milliseconds

1 2 3 45 6 7 8 91011>>