HomeSort by relevance Sort by last modified time
    Searched refs:urb (Results 1 - 25 of 32) sorted by null

1 2

  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_urb.c 35 * When the GS is not in use, we assign the entire URB space to the VS. When
36 * the GS is in use, we split the URB space evenly between the VS and the GS.
39 * URB size / 2 URB size / 2
46 * Sandybridge GT1 has 32kB of URB space, while GT2 has 64kB.
54 int total_urb_size = brw->urb.size * 1024; /* in bytes */
57 brw->urb.vs_size = MAX2(brw->vs.prog_data->urb_entry_size, 1);
60 * the SF and Clipper expect), so we can simply make the GS URB entry size
65 brw->urb.gs_size = brw->urb.vs_size
    [all...]
brw_urb.c 47 * Manages the division of the URB space between the various fixed-function
77 * Each unit will take the number of URB entries we give it (based on the
102 brw->urb.vs_start = 0;
103 brw->urb.gs_start = brw->urb.nr_vs_entries * brw->urb.vsize;
104 brw->urb.clip_start = brw->urb.gs_start + brw->urb.nr_gs_entries * brw->urb.vsize
    [all...]
gen7_urb.c 31 * The following diagram shows how we partition the URB:
33 * 8kB 8kB Rest of the URB space
41 * Notably, push constants must be stored at the beginning of the URB
48 * Ivybridge GT1 has 128kB of URB space.
49 * Ivybridge GT2 has 256kB of URB space.
81 /* Total space for entries is URB size - 16kB for push constants */
82 int handle_region_size = (brw->urb.size - 16) * 1024; /* bytes */
85 brw->urb.vs_size = MAX2(brw->vs.prog_data->urb_entry_size, 1);
87 int nr_vs_entries = handle_region_size / (brw->urb.vs_size * 64);
88 if (nr_vs_entries > brw->urb.max_vs_entries
    [all...]
brw_context.c 299 brw->urb.size = 128;
300 brw->urb.max_vs_entries = 640;
301 brw->urb.max_gs_entries = 256;
305 brw->urb.size = 256;
306 brw->urb.max_vs_entries = 1664;
307 brw->urb.max_gs_entries = 640;
314 brw->urb.size = 128;
315 brw->urb.max_vs_entries = 512;
316 brw->urb.max_gs_entries = 192;
321 brw->urb.size = 256
    [all...]
brw_vs_state.c 62 * and those dwords will be written to the second URB handle when we
105 switch (brw->urb.nr_vs_entries) {
117 vs->thread4.nr_urb_entries = brw->urb.nr_vs_entries >> 2;
123 switch (brw->urb.nr_vs_entries) {
135 vs->thread4.nr_urb_entries = brw->urb.nr_vs_entries;
138 vs->thread4.urb_entry_allocation_size = brw->urb.vsize - 1;
140 vs->thread4.max_threads = CLAMP(brw->urb.nr_vs_entries / 2,
brw_gs_state.c 71 gs->thread4.nr_urb_entries = brw->urb.nr_gs_entries;
72 gs->thread4.urb_entry_allocation_size = brw->urb.vsize - 1;
74 if (brw->urb.nr_gs_entries >= 8)
brw_clip_state.c 70 clip->thread4.nr_urb_entries = brw->urb.nr_clip_entries;
71 clip->thread4.urb_entry_allocation_size = brw->urb.vsize - 1;
72 /* If we have enough clip URB entries to run two threads, do so.
74 if (brw->urb.nr_clip_entries >= 10) {
75 /* Half of the URB entries go to each thread, and it has to be an
78 assert(brw->urb.nr_clip_entries % 2 == 0);
88 assert(brw->urb.nr_clip_entries >= 5);
brw_curbe.c 142 /* Define the number of curbes within CS's urb allocation. Multiple
143 * urb entries -> multiple curbes. These will be used by
153 * urb entries detailed here are housed in the CS range from the
159 if (brw->urb.csize == 0) {
163 assert(brw->urb.nr_cs_entries);
164 OUT_BATCH((brw->urb.csize - 1) << 4 | brw->urb.nr_cs_entries);
327 * URB), it shouldn't be shortcircuited if identical to the
328 * previous time - because eg. the urb destination may have
329 * changed, or the urb contents different to last time
    [all...]
brw_sf_state.c 128 * Compute the offset within the URB (expressed in 256-bit register
174 sf->thread4.nr_urb_entries = brw->urb.nr_sf_entries;
175 sf->thread4.urb_entry_allocation_size = brw->urb.sfsize - 1;
187 brw->urb.nr_sf_entries) - 1;
brw_disasm.c 309 [BRW_SFID_URB] = "urb",
318 [BRW_SFID_URB] = "urb",
    [all...]
brw_eu_emit.c 532 insn->bits3.urb.opcode = 0; /* ? */
533 insn->bits3.urb.offset = offset;
534 insn->bits3.urb.swizzle_control = swizzle_control;
535 insn->bits3.urb.allocate = allocate;
536 insn->bits3.urb.used = used; /* ? */
537 insn->bits3.urb.complete = complete;
    [all...]
brw_context.h 46 * URB - uniform resource buffer. A mid-sized buffer which is
50 * CURBE - constant URB entry. An urb region (entry) used to hold
54 * VUE - vertex URB entry. An urb entry holding a vertex and usually
58 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
63 * urb) of the thread are preloaded to this area before the thread is
70 * MRF registers. All program output is via these messages. URB
71 * entries are populated by sending a message to the shared URB
852 } urb; member in struct:brw_context
    [all...]
gen6_blorp.cpp 170 * the URB. This is controlled by the 3DSTATE_VERTEX_BUFFERS and
185 * "Vertex URB Entry (VUE) Formats".
260 * Assign the entire URB to the VS. Even though the VS disabled, URB space
261 * is still needed because the clipper loads the VUE's from the URB. From
263 * Dword 1.15:0 "VS Number of URB Entries":
268 * Because of URB corruption caused by allocating a previous GS unit
269 * URB entry to the VS unit, software is required to send a ?GS NULL
270 * Fence? (Send URB fence with VS URB size == 1 and GS URB size == 0
    [all...]
brw_structs.h 1353 struct brw_urb_immediate urb; member in union:brw_instruction::__anon19686
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
usbdlib.h 12 #define UsbBuildInterruptOrBulkTransferRequest(urb,length, pipeHandle, transferBuffer, transferBufferMDL, transferBufferLength, transferFlags, link) \
14 (urb)->UrbHeader.Function = URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER; \
15 (urb)->UrbHeader.Length = (length); \
16 (urb)->UrbBulkOrInterruptTransfer.PipeHandle = (pipeHandle); \
17 (urb)->UrbBulkOrInterruptTransfer.TransferBufferLength = (transferBufferLength); \
18 (urb)->UrbBulkOrInterruptTransfer.TransferBufferMDL = (transferBufferMDL); \
19 (urb)->UrbBulkOrInterruptTransfer.TransferBuffer = (transferBuffer); \
20 (urb)->UrbBulkOrInterruptTransfer.TransferFlags = (transferFlags); \
21 (urb)->UrbBulkOrInterruptTransfer.UrbLink = (link); \
24 #define UsbBuildGetDescriptorRequest(urb, length, descriptorType, descriptorIndex, languageId, transferBuffer, transferBufferMDL, transferB (…)
    [all...]
  /external/libusb/libusb/os/
linux_usbfs.c 75 /* Linux 2.6.32 adds support for a bulk continuation URB flag. this basically
115 /* submission failed after the first URB, so await cancellation/completion
122 /* completed multi-URB transfer in non-final URB */
215 /* bulk continuation URB flag available from Linux 2.6.32 */
1325 struct usbfs_urb *urb = tpriv->iso_urbs[i]; local
1379 struct usbfs_urb *urb = &urbs[i]; local
1504 struct usbfs_urb *urb; local
1615 struct usbfs_urb *urb; local
2064 struct usbfs_urb *urb; local
    [all...]
  /system/core/libusbhost/
usbhost.c 628 struct usbdevfs_urb *urb = calloc(1, sizeof(struct usbdevfs_urb)); local
629 if (!urb)
633 urb->type = USBDEVFS_URB_TYPE_BULK;
635 urb->type = USBDEVFS_URB_TYPE_INTERRUPT;
638 free(urb);
641 urb->endpoint = ep_desc->bEndpointAddress;
645 free(urb);
651 req->private_data = urb;
652 req->endpoint = urb->endpoint;
653 urb->usercontext = req
666 struct usbdevfs_urb *urb = (struct usbdevfs_urb*)req->private_data; local
686 struct usbdevfs_urb *urb = NULL; local
711 struct usbdevfs_urb *urb = ((struct usbdevfs_urb*)req->private_data); local
    [all...]
  /system/core/adb/
usb_linux.cpp 300 usbdevfs_urb* urb = &h->urb_out; local
301 memset(urb, 0, sizeof(*urb));
302 urb->type = USBDEVFS_URB_TYPE_BULK;
303 urb->endpoint = h->ep_out;
304 urb->status = -1;
305 urb->buffer = const_cast<void*>(data);
306 urb->buffer_length = len;
313 if (TEMP_FAILURE_RETRY(ioctl(h->fd, USBDEVFS_SUBMITURB, urb)) == -1) {
326 if (urb->status != 0)
339 usbdevfs_urb* urb = &h->urb_in; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GlobalizationPreferences.java 288 UResourceBundle urb = null; local
297 urb = candidate;
310 urb = candidate;
313 if (urb == null) {
315 urb = candidate;
323 if (urb == null) {
327 return urb;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
GlobalizationPreferences.java 300 UResourceBundle urb = null; local
309 urb = candidate;
322 urb = candidate;
325 if (urb == null) {
327 urb = candidate;
335 if (urb == null) {
339 return urb;
    [all...]
  /external/opencv3/modules/core/test/
test_umat.cpp 597 UMat ua, ura, ub, urb, uc, urc; local
620 urb = ub(roi);
627 rb.copyTo(urb);
631 urb.copyTo(rb);
638 cv::max(ura, urb, urc);
649 cv::max(ura, urb, tmp);
654 cv::max(urc, urb, urc);
659 cv::bitwise_xor(ura, urb, urc);
669 cv::add(ura, urb, urc);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundle.java 256 /* UResourceBundle urb = */irb.get(kwVal);
287 UResourceBundle urb = irb.get(kwVal); local
292 // If the fetched item (urb) is in a different locale than our outer locale (r/fullBase)
294 if(!fullBase.toString().equals(urb.getLocale().toString())) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundle.java 252 /* UResourceBundle urb = */irb.get(kwVal);
283 UResourceBundle urb = irb.get(kwVal); local
288 // If the fetched item (urb) is in a different locale than our outer locale (r/fullBase)
290 if(!fullBase.toString().equals(urb.getLocale().toString())) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 1551 milliseconds

1 2