HomeSort by relevance Sort by last modified time
    Searched refs:transfer (Results 51 - 75 of 306) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute.c 804 struct pipe_transfer* transfer)
806 assert(transfer->resource->target == PIPE_BUFFER);
807 assert(transfer->resource->bind & PIPE_BIND_GLOBAL);
808 assert(transfer->box.x >= 0);
809 assert(transfer->box.y == 0);
810 assert(transfer->box.z == 0);
814 (struct r600_resource_global*)transfer->resource;
820 ctx->cs, transfer->usage))) {
825 return ((char*)(map + buffer->chunk->start_in_dw)) + transfer->box.x;
830 struct pipe_transfer* transfer)
856 struct pipe_transfer *transfer = util_slab_alloc(&rctx->pool_transfers); local
    [all...]
evergreen_compute.h 44 void* r600_compute_global_transfer_map(struct pipe_context *ctx, struct pipe_transfer* transfer);
45 void r600_compute_global_transfer_unmap(struct pipe_context *ctx, struct pipe_transfer* transfer);
r600_resource.h 28 /* flag to indicate a resource is to be used as a transfer so should not be tiled */
34 struct pipe_transfer transfer; member in struct:r600_transfer
144 /* r600_texture.c texture transfer functions. */
153 struct pipe_transfer* transfer);
155 struct pipe_transfer* transfer);
  /external/libusb/libusb/os/
linux_usbfs.c 76 * allows us to mark URBs as being part of a specific logical transfer when
78 * cancellation, all URBs within that transfer will be cancelled with the
82 * The BULK_CONTINUATION flag must be set on all URBs within a bulk transfer
86 * (where an OUT transfer does not complete, the rest of the URBs in the
87 * transfer get cancelled) is already in effect, and setting this flag is
122 /* completed multi-URB transfer in non-final URB */
136 /* next iso packet in user-supplied transfer to be populated */
1338 struct libusb_transfer *transfer = local
1453 struct libusb_transfer *transfer = local
1611 struct libusb_transfer *transfer = local
1653 struct libusb_transfer *transfer = local
1675 struct libusb_transfer *transfer = local
1703 struct libusb_transfer *transfer = local
1725 struct libusb_transfer *transfer = local
1746 struct libusb_transfer *transfer = local
1766 struct libusb_transfer *transfer = local
1821 struct libusb_transfer *transfer = local
1887 struct libusb_transfer *transfer = local
1927 struct libusb_transfer *transfer = local
2066 struct libusb_transfer *transfer; local
    [all...]
  /external/libusb/libusb/
libusbi.h 137 #define TRANSFER_CTX(transfer) (HANDLE_CTX((transfer)->dev_handle))
138 #define ITRANSFER_CTX(transfer) \
139 (TRANSFER_CTX(__USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer)))
159 /* this is a list of in-flight transfer handles, sorted by timeout
238 /* in-memory transfer layout:
247 * determine the size of the transfer and hence the start and length of the
262 * cancelling the transfer from another thread while you are processing
268 #define __USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer) \
269 ((struct libusb_transfer *)(((void *)(transfer)) \
    [all...]
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_objects.h 70 struct pipe_transfer *transfer; member in struct:galahad_transfer
140 return galahad_transfer(_transfer)->transfer;
172 struct pipe_transfer *transfer);
  /external/mesa3d/src/gallium/drivers/identity/
id_objects.h 68 struct pipe_transfer *transfer; member in struct:identity_transfer
138 return identity_transfer(_transfer)->transfer;
170 struct pipe_transfer *transfer);
  /external/curl/lib/
imap.h 57 curl_pp_transfer transfer; member in struct:IMAP
pop3.h 53 curl_pp_transfer transfer; member in struct:POP3
smtp.h 55 curl_pp_transfer transfer; member in struct:SMTP
  /external/guava/guava/src/com/google/common/io/
FileBackedOutputStream.java 202 FileOutputStream transfer = new FileOutputStream(temp); local
203 transfer.write(memory.getBuffer(), 0, memory.getCount());
204 transfer.flush();
207 out = transfer;
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 723 struct i915_transfer *transfer = util_slab_alloc(&i915->texture_transfer_pool); local
726 if (transfer == NULL)
729 transfer->b.resource = resource;
730 transfer->b.level = level;
731 transfer->b.usage = usage;
732 transfer->b.box = *box;
733 transfer->b.stride = tex->stride;
734 transfer->staging_texture = NULL;
736 transfer->b.layer_stride = 0;
737 transfer->b.data = NULL
845 struct pipe_transfer *transfer = NULL; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_texture.h 38 } transfer; member in struct:nouveau_teximage
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.h 53 struct pipe_transfer *transfer; /**< only used when mapping the resource */ member in struct:st_renderbuffer
  /frameworks/av/media/mtp/
MtpResponsePacket.cpp 50 int ret = transfer(request);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FinalPort.java 39 super.transfer(null);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
transfer_test.py 1 """Tests for transfer.py."""
11 from apitools.base.py import transfer namespace
37 download = transfer.Download.FromStream(
43 download = transfer.Download.FromStream(six.StringIO())
49 download = transfer.Download.FromStream(
59 download = transfer.Download.FromStream(six.StringIO())
72 download = transfer.Download.FromStream(six.StringIO(),
84 download = transfer.Download.FromStream(download_stream,
113 download = transfer.Download.FromStream(download_stream, total_size=52)
142 download = transfer.Download.FromStream
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vertex_buffers.h 97 struct pipe_transfer *transfer; member in struct:vl_vertex_buffer::__anon19651
103 struct pipe_transfer *transfer; member in struct:vl_vertex_buffer::__anon19652
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_objects.c 162 struct pipe_transfer *transfer)
166 if(!transfer)
169 assert(transfer->resource == rb_resource->resource);
175 memcpy(&rb_transfer->base, transfer, sizeof(struct pipe_transfer));
178 rb_transfer->transfer = transfer;
187 rb_context->pipe->transfer_destroy(rb_context->pipe, transfer);
197 rb_transfer->transfer);
rbug_objects.h 92 struct pipe_transfer *transfer; member in struct:rbug_transfer
169 return rbug_transfer(_transfer)->transfer;
212 struct pipe_transfer *transfer);
  /external/mesa3d/src/gallium/state_trackers/xvmc/
subpicture.c 174 struct pipe_transfer *transfer; local
177 transfer = pipe->get_transfer(pipe, dst->texture, 0, PIPE_TRANSFER_WRITE, dst_box);
178 if (!transfer)
181 map = pipe->transfer_map(pipe, transfer);
183 util_copy_rect(map, dst->texture->format, transfer->stride, 0, 0,
187 pipe->transfer_unmap(pipe, transfer);
190 pipe->transfer_destroy(pipe, transfer);
307 struct pipe_transfer *transfer; local
327 transfer = pipe->get_transfer(pipe, dst->texture, 0, PIPE_TRANSFER_WRITE, &dst_box);
328 if (!transfer)
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tile_cache.c 143 if (tc->transfer) {
144 tc->pipe->transfer_destroy(tc->pipe, tc->transfer);
161 if (tc->transfer) {
166 pipe->transfer_unmap(pipe, tc->transfer);
170 pipe->transfer_destroy(pipe, tc->transfer);
171 tc->transfer = NULL;
177 tc->transfer = pipe_get_transfer(pipe, ps->texture,
189 * Return the transfer being cached.
201 if (tc->transfer && !tc->transfer_map)
202 tc->transfer_map = tc->pipe->transfer_map(tc->pipe, tc->transfer);
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/wrapper/
wrapper_sw_winsys.c 62 struct pipe_transfer *transfer; member in struct:wrapper_sw_displaytarget
205 assert(!wdt->transfer);
217 wdt->transfer = tr;
240 assert(wdt->transfer);
247 pipe->transfer_unmap(pipe, wdt->transfer);
248 pipe->transfer_destroy(pipe, wdt->transfer);
250 wdt->transfer = NULL;
  /frameworks/av/include/media/stagefright/foundation/
ColorUtils.h 70 kColorTransferUnspecified = GET_HAL_BITFIELD(TRANSFER, UNSPECIFIED),
71 kColorTransferLinear = GET_HAL_BITFIELD(TRANSFER, LINEAR),
72 kColorTransferSRGB = GET_HAL_BITFIELD(TRANSFER, SRGB),
73 kColorTransferSMPTE_170M = GET_HAL_BITFIELD(TRANSFER, SMPTE_170M),
74 kColorTransferGamma22 = GET_HAL_BITFIELD(TRANSFER, GAMMA2_2),
75 kColorTransferGamma28 = GET_HAL_BITFIELD(TRANSFER, GAMMA2_8),
76 kColorTransferST2084 = GET_HAL_BITFIELD(TRANSFER, ST2084),
77 kColorTransferHLG = GET_HAL_BITFIELD(TRANSFER, HLG),
78 kColorTransferMax = GET_HAL_BITFIELD(TRANSFER, MASK),
80 /* This marks a section of color-transfer values that are not supported by graphics HAL
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-embedder-3.2.1.jar 

Completed in 471 milliseconds

1 23 4 5 6 7 8 91011>>