HomeSort by relevance Sort by last modified time
    Searched refs:transfer (Results 176 - 200 of 351) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_transfer.c 409 struct pipe_transfer *transfer)
412 struct nvc0_transfer *tx = (struct nvc0_transfer *)transfer;
429 pipe_resource_reference(&transfer->resource, NULL);
436 struct pipe_transfer *transfer)
439 struct nvc0_transfer *tx = (struct nvc0_transfer *)transfer;
446 if (transfer->usage & PIPE_TRANSFER_READ)
448 if (transfer->usage & PIPE_TRANSFER_WRITE)
459 struct pipe_transfer *transfer)
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.h 103 SVGA3dTransferType transfer,
112 SVGA3dTransferType transfer,
  /external/mesa3d/src/gallium/state_trackers/vdpau/
output.c 194 struct pipe_transfer *transfer; local
210 transfer = pipe->get_transfer(pipe, res, 0, PIPE_TRANSFER_READ, &box);
211 if (transfer == NULL) {
216 map = pipe_transfer_map(pipe, transfer);
218 pipe_transfer_destroy(pipe, transfer);
224 box.width, box.height, map, transfer->stride, 0, 0);
226 pipe_transfer_unmap(pipe, transfer);
227 pipe_transfer_destroy(pipe, transfer);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
MediaDataBox.java 85 private static void transfer(FileChannel from, long position, long count, WritableByteChannel to) throws IOException { method in class:MediaDataBox
87 // Transfer data in chunks a bit less than 64MB
99 transfer(fileChannel, startPosition - header.limit(), contentSize + header.limit(), writableByteChannel); method
  /frameworks/av/media/mtp/
MtpDataPacket.cpp 382 int length = transfer(request);
390 int ret = transfer(request);
409 int ret = transfer(request);
436 int length = transfer(request);
447 int ret = transfer(request);
458 int ret = transfer(request);
462 ret = transfer(request);
470 int ret = transfer(request);
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferContents.cpp 88 void ArrayBufferContents::transfer(ArrayBufferContents& other) function in class:WTF::ArrayBufferContents
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 81 struct usbi_transfer *itransfer; // Associated transfer, or NULL if completed
82 cancel_transfer *cancel_fn; // Function pointer to cancel transfer API
83 enum rw_type rw; // I/O transfer direction: read *XOR* write (NOT BOTH)
96 struct usbi_transfer *transfer, cancel_transfer *cancel_fn);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_vertex_buffers.c 306 &buffer->ycbcr[i].transfer
316 &buffer->mv[i].transfer
356 pipe_buffer_unmap(pipe, buffer->ycbcr[i].transfer);
360 pipe_buffer_unmap(pipe, buffer->mv[i].transfer);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_tile_cache.h 81 struct pipe_transfer *transfer; member in struct:softpipe_tex_tile_cache
sp_tile_cache.h 85 struct pipe_transfer *transfer; member in struct:softpipe_tile_cache
sp_tex_tile_cache.c 76 if (tc->transfer) {
77 tc->pipe->transfer_destroy(tc->pipe, tc->transfer);
148 assert(!tc->transfer);
185 * Flush the tile cache: write all dirty tiles back to the transfer.
250 /* check if we need to get a new transfer */
255 /* get new transfer (view into texture) */
292 /* Get tile from the transfer (view into texture), explicitly passing
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_context.c 1405 struct pipe_transfer *transfer = tr_trans->transfer; local
1428 struct pipe_transfer *transfer = tr_transfer->transfer; local
1442 struct pipe_transfer *transfer = tr_trans->transfer; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vertex_buffers.c 306 &buffer->ycbcr[i].transfer
316 &buffer->mv[i].transfer
356 pipe_buffer_unmap(pipe, buffer->ycbcr[i].transfer);
360 pipe_buffer_unmap(pipe, buffer->mv[i].transfer);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_tile_cache.h 81 struct pipe_transfer *transfer; member in struct:softpipe_tex_tile_cache
sp_tile_cache.h 85 struct pipe_transfer *transfer; member in struct:softpipe_tile_cache
  /external/mesa3d/src/gallium/drivers/trace/
tr_context.c 1405 struct pipe_transfer *transfer = tr_trans->transfer; local
1428 struct pipe_transfer *transfer = tr_transfer->transfer; local
1442 struct pipe_transfer *transfer = tr_trans->transfer; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
pcm_extplug.h 126 * transfer between source and destination; this is a required callback
128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext, member in struct:snd_pcm_extplug_callback
pcm_ioplug.h 133 * transfer the data; optional
135 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io, member in struct:snd_pcm_ioplug_callback
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm_extplug.h 126 * transfer between source and destination; this is a required callback
128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext, member in struct:snd_pcm_extplug_callback
pcm_ioplug.h 133 * transfer the data; optional
135 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io, member in struct:snd_pcm_ioplug_callback
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm_extplug.h 126 * transfer between source and destination; this is a required callback
128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext, member in struct:snd_pcm_extplug_callback
pcm_ioplug.h 133 * transfer the data; optional
135 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io, member in struct:snd_pcm_ioplug_callback
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_constants.c 216 struct pipe_transfer *transfer = NULL; local
233 &transfer);
255 pipe_buffer_unmap(&svga->pipe, transfer);
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_context.h 377 * Get a transfer object for transferring data to/from a texture.
392 struct pipe_transfer *transfer );
394 /* If transfer was created with WRITE|FLUSH_EXPLICIT, only the
399 struct pipe_transfer *transfer,
403 struct pipe_transfer *transfer );
406 /* One-shot transfer operation with data supplied in a user
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_texture.c 88 struct nouveau_surface *st = &nti->transfer.surface;
105 nti->transfer.x = x;
106 nti->transfer.y = y;
138 struct nouveau_surface *st = &nti->transfer.surface;
141 context_drv(ctx)->surface_copy(ctx, s, st, nti->transfer.x,
142 nti->transfer.y, 0, 0,
162 struct nouveau_surface *st = &nti->transfer.surface;
182 nti->transfer.x = x;
183 nti->transfer.y = y;
221 struct nouveau_surface *st = &nti->transfer.surface
    [all...]

Completed in 761 milliseconds

1 2 3 4 5 6 78 91011>>