HomeSort by relevance Sort by last modified time
    Searched defs:pipe (Results 26 - 50 of 541) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/syscalls/fstatfs/
fstatfs01.c 64 {&pipe_fd, "fstatfs() on a pipe"},
99 int pipe[2]; local
109 SAFE_PIPE(cleanup, pipe);
110 pipe_fd = pipe[0];
111 SAFE_CLOSE(cleanup, pipe[1]);
  /external/mesa3d/src/gallium/auxiliary/util/
u_suballoc.c 31 #include "pipe/p_defines.h"
33 #include "pipe/p_context.h"
41 struct pipe_context *pipe; member in struct:u_suballocator
60 u_suballocator_create(struct pipe_context *pipe, unsigned size, unsigned bind,
68 allocator->pipe = pipe;
101 pipe_buffer_create(allocator->pipe->screen, allocator->bind,
111 ptr = pipe_buffer_map(allocator->pipe, allocator->buffer,
114 pipe_buffer_unmap(allocator->pipe, transfer);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_median_filter.h 33 #include "pipe/p_state.h"
46 struct pipe_context *pipe; member in struct:vl_median_filter
57 vl_median_filter_init(struct vl_median_filter *filter, struct pipe_context *pipe,
vl_deint_filter.h 33 #include "pipe/p_state.h"
37 struct pipe_context *pipe; member in struct:vl_deint_filter
55 vl_deint_filter_init(struct vl_deint_filter *filter, struct pipe_context *pipe,
vl_zscan.h 31 #include "pipe/p_compiler.h"
32 #include "pipe/p_state.h"
40 struct pipe_context *pipe; member in struct:vl_zscan
73 vl_zscan_layout(struct pipe_context *pipe, const int layout[64], unsigned blocks_per_line);
76 vl_zscan_init(struct vl_zscan *zscan, struct pipe_context *pipe,
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_context.c 71 nv30_context_flush(struct pipe_context *pipe, struct pipe_fence_handle **fence,
74 struct nv30_context *nv30 = nv30_context(pipe);
91 struct nv30_context *nv30 = nv30_context(&nv->pipe);
158 nv30_context_destroy(struct pipe_context *pipe)
160 struct nv30_context *nv30 = nv30_context(pipe);
188 nv30_context_destroy(pipe); \
198 struct pipe_context *pipe; local
208 pipe = &nv30->base.pipe;
209 pipe->screen = pscreen
    [all...]
  /external/mesa3d/src/gallium/drivers/trace/
tr_texture.h 32 #include "pipe/p_compiler.h"
33 #include "pipe/p_state.h"
80 struct pipe_context *pipe; member in struct:trace_transfer
  /external/mesa3d/src/gallium/state_trackers/nine/
pixelshader9.c 29 #include "pipe/p_context.h"
40 struct pipe_context *pipe; local
65 pipe = nine_context_get_pipe_acquire(device);
66 hr = nine_translate_shader(device, &info, pipe);
98 struct pipe_context *pipe = nine_context_get_pipe_multithread(This->base.device); local
104 pipe->bind_fs_state(pipe, NULL);
105 pipe->delete_fs_state(pipe, var->cso);
112 pipe->bind_fs_state(pipe, NULL)
148 struct pipe_context *pipe = This->base.device->context.pipe; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
bitmap.c 45 struct pipe_context *pipe; local
59 pipe = dev->context;
60 if (!pipe)
84 if (!CheckSurfaceParams(pipe->screen, &res_tmpl)) {
89 res = pipe->screen->resource_create(pipe->screen, &res_tmpl);
96 vlsurface->sampler_view = pipe->create_sampler_view(pipe, res, &sv_templ);
188 struct pipe_context *pipe; local
197 pipe = vlsurface->device->context
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_compute.c 35 #include "pipe/p_context.h"
46 struct pipe_context *pipe = st->pipe; local
69 pipe->launch_grid(pipe, &info);
st_cb_syncobj.c 35 #include "pipe/p_context.h"
36 #include "pipe/p_screen.h"
64 struct pipe_screen *screen = st_context(ctx)->pipe->screen;
76 struct pipe_context *pipe = st_context(ctx)->pipe; local
82 pipe->flush(pipe, &so->fence, PIPE_FLUSH_DEFERRED);
89 struct pipe_context *pipe = st_context(ctx)->pipe; local
90 struct pipe_screen *screen = pipe->screen
    [all...]
st_debug.c 33 #include "pipe/p_state.h"
34 #include "pipe/p_shader_tokens.h"
52 { "pipe", DEBUG_PIPE, NULL },
170 struct pipe_context *pipe = st->pipe; local
172 if (!pipe->set_debug_callback)
181 pipe->set_debug_callback(pipe, &cb);
183 pipe->set_debug_callback(pipe, NULL)
    [all...]
  /frameworks/native/libs/input/tests/
InputChannel_test.cpp 41 // of a pipe and to check for EPIPE on the other end after the channel is destroyed.
42 Pipe pipe; local
44 sp<InputChannel> inputChannel = new InputChannel("channel name", pipe.sendFd);
48 EXPECT_EQ(pipe.sendFd, inputChannel->getFd())
53 EXPECT_EQ(-EPIPE, pipe.readSignal())
56 // clean up fds of Pipe endpoints that were closed so we don't try to close them again
57 pipe.sendFd = -1;
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
IoUtil.java 31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException { method in class:IoUtil
45 pipe(in, out, buf); method
120 IoUtil.pipe(is, baos, buf);
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
ext.py 240 def pipe(self, mode="r"): member in class:ConfTest
242 Execute the conftest binary and connect to it using a pipe
244 Before you can pipe to or from the conftest binary it needs to
249 Pipe mode - r/w
251 :Return: The open pipe
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
ext.py 239 def pipe(self, mode="r"): member in class:ConfTest
241 Execute the conftest binary and connect to it using a pipe
243 Before you can pipe to or from the conftest binary it needs to
248 Pipe mode - r/w
250 :Return: The open pipe
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
ext.py 240 def pipe(self, mode="r"): member in class:ConfTest
242 Execute the conftest binary and connect to it using a pipe
244 Before you can pipe to or from the conftest binary it needs to
249 Pipe mode - r/w
251 :Return: The open pipe
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
ext.py 239 def pipe(self, mode="r"): member in class:ConfTest
241 Execute the conftest binary and connect to it using a pipe
243 Before you can pipe to or from the conftest binary it needs to
248 Pipe mode - r/w
250 :Return: The open pipe
  /external/libmojo/mojo/edk/system/
shared_buffer_unittest.cc 103 // Receive a pipe handle over the primordial pipe. This will be connected to
120 // Receive a pipe handle over the primordial pipe. This will be connected to
143 // Send one end of the pipe to each child. The first child will create
164 // Read a pipe from the parent and forward it to our child.
165 MojoHandle pipe; local
166 std::string message = ReadMessageWithHandles(parent, &pipe, 1);
168 WriteMessageWithHandles(child, message, &pipe, 1);
183 // Read a pipe from the parent and forward it to our child
184 MojoHandle pipe; local
211 MojoHandle pipe[2]; local
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
serialization_warning_unittest.cc 34 MessagePipe pipe; local
35 nested_array[j] = ScopedHandle::From(std::move(pipe.handle1));
101 MessagePipe pipe; local
102 test_struct->hdl = ScopedHandle::From(std::move(pipe.handle1));
228 ScopedMessagePipeHandle pipe; local
230 handle->set_f_message_pipe(std::move(pipe));
  /external/mesa3d/src/gallium/auxiliary/indices/
u_primconvert.c 32 * drivers pipe->draw_vbo():
44 #include "pipe/p_state.h"
55 struct pipe_context *pipe; member in struct:primconvert_context
64 util_primconvert_create(struct pipe_context *pipe, uint32_t primtypes_mask)
69 pc->pipe = pipe;
142 src = pipe_buffer_map(pc->pipe, ib->buffer,
156 pc->upload = u_upload_create(pc->pipe, 4096, PIPE_BIND_INDEX_BUFFER,
171 pipe_buffer_unmap(pc->pipe, src_transfer);
176 pc->pipe->set_index_buffer(pc->pipe, &new_ib)
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_context.c 136 for (i = 0; i < ARRAY_SIZE(ctx->pipe); i++) {
137 struct fd_vsc_pipe *pipe = &ctx->pipe[i]; local
138 if (!pipe->bo)
140 fd_bo_del(pipe->bo);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_query.c 34 #include "pipe/p_defines.h"
52 llvmpipe_create_query(struct pipe_context *pipe,
71 llvmpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
80 llvmpipe_flush(pipe, NULL, __FUNCTION__);
93 llvmpipe_get_query_result(struct pipe_context *pipe,
98 struct llvmpipe_screen *screen = llvmpipe_screen(pipe->screen);
108 llvmpipe_flush(pipe, NULL, __FUNCTION__);
188 llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
190 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
198 llvmpipe_finish(pipe, __FUNCTION__)
308 struct pipe_context *pipe = &lp->pipe; local
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_objects.c 181 rb_transfer->pipe = rb_context->pipe;
189 rb_context->pipe->transfer_unmap(rb_context->pipe, transfer);
222 struct pipe_context *pipe = rb_context->pipe; local
230 pipe->delete_fs_state(pipe, rb_shader->replaced_shader);
231 pipe->delete_fs_state(pipe, rb_shader->shader)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
resource.hpp 30 #include "pipe/p_state.h"
75 pipe_resource *pipe; member in class:clover::resource

Completed in 875 milliseconds

12 3 4 5 6 7 8 91011>>