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

1 2

  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_urb.h 49 * URB entry allocation sizes and sizes of constant data extracted from PCBs
70 uint32_t urb[4]; member in struct:ilo_state_urb
78 ilo_state_urb_init(struct ilo_state_urb *urb,
83 ilo_state_urb_init_for_rectlist(struct ilo_state_urb *urb,
88 ilo_state_urb_set_info(struct ilo_state_urb *urb,
93 ilo_state_urb_full_delta(const struct ilo_state_urb *urb,
98 ilo_state_urb_get_delta(const struct ilo_state_urb *urb,
ilo_state_compute.c 70 * "The first 32 URB entries are reserved for the interface
75 * "The first 64 URB entries are reserved for the interface
103 struct compute_urb_configuration *urb)
107 urb->idrt_entry_count = get_gen6_idrt_entry_count(dev);
108 urb->curbe_entry_count =
114 * "Please note that 0 is not allowed for this field (Number of URB
117 urb->urb_entry_count = (ilo_dev_gen(dev) >= ILO_GEN(8)) ? 1 : 0;
122 * "(URB Entry Allocation Size) Specifies the length of each URB entry
125 urb->urb_entry_size = 1
283 struct compute_urb_configuration urb; local
    [all...]
ilo_state_shader.c 60 * "Dispatch GRF Start Register for URB Data" is U4 for GS and U5 for
78 const struct ilo_state_shader_urb_info *urb)
80 /* "Vertex/Patch URB Entry Read Offset" is U6, in pairs */
83 * "Vertex/Patch URB Entry Read Length" is limited to 64 for DS and U6 for
90 assert(urb->read_base + urb->read_count <= urb->cv_input_attr_count);
92 assert(urb->read_base % 2 == 0 && urb->read_base <= max_read_base);
95 * There is no need to worry about reading past entries, as URB entries ar
443 const struct ilo_state_shader_urb_info *urb = &info->urb; local
583 const struct ilo_state_shader_urb_info *urb = &info->urb; local
    [all...]
ilo_state_shader.h 59 * URB inputs/outputs.
76 struct ilo_state_shader_urb_info urb; member in struct:ilo_state_vs_info
86 struct ilo_state_shader_urb_info urb; member in struct:ilo_state_hs_info
96 struct ilo_state_shader_urb_info urb; member in struct:ilo_state_ds_info
119 struct ilo_state_shader_urb_info urb; member in struct:ilo_state_gs_info
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render_media.c 39 int urb; member in struct:gen7_l3_config
51 * "Normal L3/URB mode (non-SLM mode), uses all 4 banks of L3 equally to
57 * "The configuration for {SLM = 0,URB = 224,DC = 32,RO = 256,IS = 0,C =
62 /* SLM URB Rest DC RO I/S C T */
85 * "The configuration for {SLM = 128,URB = 128,DC = 0,RO = 256,IS = 0,C =
91 /* SLM URB Rest DC RO I/S C T */
129 (conf->urb / 8) << GEN7_REG_L3CNTLREG2_URBALL__SHIFT;
139 * "Note that URB needs to be set as low b/w client in SLM mode,
ilo_blitter.h 82 struct ilo_state_urb urb; member in struct:ilo_blitter
ilo_render_gen.h 93 struct ilo_state_urb urb; member in struct:ilo_render::ilo_render_state
ilo_state.h 377 struct ilo_state_urb urb; member in struct:ilo_state_vector
  /external/mesa3d/src/intel/common/
gen_device_info.h 78 * 3DSTATE_GS, 3DSTATE_HS, 3DSTATE_DS, and 3DSTATE_PS commands. URB entry
79 * limits come from the "Number of URB Entries" field in the
129 * Hardware default URB size.
134 * Look up "URB Size" in the "Device Attributes" page, and take the
136 * urb.size = URB Size (kbytes) / slice count
141 * The minimum number of URB entries. See the 3DSTATE_URB_<XS> docs.
146 * The maximum number of URB entries. See the 3DSTATE_URB_<XS> docs.
149 } urb; member in struct:gen_device_info
  /external/walt/android/WALT/app/src/main/jni/
sync_clock.c 89 struct usbdevfs_urb *urb = calloc(1, sizeof(struct usbdevfs_urb)); local
90 memset(urb, 0, sizeof(struct usbdevfs_urb));
93 urb->status = -1;
94 urb->buffer = buffer;
95 urb->buffer_length = length;
96 urb->endpoint = endpoint;
97 urb->type = USBDEVFS_URB_TYPE_BULK;
98 urb->usercontext = label; // This is hackish
100 res = ioctl(fd, USBDEVFS_SUBMITURB, urb);
  /system/core/adb/client/
usb_linux.cpp 306 usbdevfs_urb* urb = &h->urb_out; local
307 memset(urb, 0, sizeof(*urb));
308 urb->type = USBDEVFS_URB_TYPE_BULK;
309 urb->endpoint = h->ep_out;
310 urb->status = -1;
311 urb->buffer = const_cast<void*>(data);
312 urb->buffer_length = len;
319 if (TEMP_FAILURE_RETRY(ioctl(h->fd, USBDEVFS_SUBMITURB, urb)) == -1) {
332 if (urb->status != 0)
345 usbdevfs_urb* urb = &h->urb_in; local
    [all...]
  /system/core/libusbhost/
usbhost.c 635 struct usbdevfs_urb *urb = calloc(1, sizeof(struct usbdevfs_urb)); local
636 if (!urb)
640 urb->type = USBDEVFS_URB_TYPE_BULK;
642 urb->type = USBDEVFS_URB_TYPE_INTERRUPT;
645 free(urb);
648 urb->endpoint = ep_desc->bEndpointAddress;
652 free(urb);
658 req->private_data = urb;
659 req->endpoint = urb->endpoint;
660 urb->usercontext = req
673 struct usbdevfs_urb *urb = (struct usbdevfs_urb*)req->private_data; local
707 struct usbdevfs_urb *urb = NULL; local
727 struct usbdevfs_urb *urb = ((struct usbdevfs_urb*)req->private_data); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundle.java 173 /* UResourceBundle urb = */irb.get(kwVal);
204 ICUResourceBundle urb = (ICUResourceBundle)irb.get(kwVal); local
209 // If the fetched item (urb) is in a different locale than our outer locale (r/fullBase)
211 if(!fullBase.getBaseName().equals(urb.getULocale().getBaseName())) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GlobalizationPreferences.java 290 UResourceBundle urb = null; local
299 urb = candidate;
312 urb = candidate;
315 if (urb == null) {
317 urb = candidate;
325 if (urb == null) {
329 return urb;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
GlobalizationPreferences.java 302 UResourceBundle urb = null; local
311 urb = candidate;
324 urb = candidate;
327 if (urb == null) {
329 urb = candidate;
337 if (urb == null) {
341 return urb;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundle.java 169 /* UResourceBundle urb = */irb.get(kwVal);
200 ICUResourceBundle urb = (ICUResourceBundle)irb.get(kwVal); local
205 // If the fetched item (urb) is in a different locale than our outer locale (r/fullBase)
207 if(!fullBase.getBaseName().equals(urb.getULocale().getBaseName())) {
    [all...]
  /external/libusb/libusb/os/
linux_usbfs.c 84 /* Linux 2.6.32 adds support for a bulk continuation URB flag. this basically
101 /* Linux 2.6.31 fixes support for the zero length packet URB flag. This
154 /* submission failed after the first URB, so await cancellation/completion
161 /* completed multi-URB transfer in non-final URB */
391 /* bulk continuation URB flag available from Linux 2.6.32 */
403 /* zero length packet URB flag fixed since Linux 2.6.31 */
1753 struct usbfs_urb *urb; local
1784 struct usbfs_urb *urb = tpriv->iso_urbs[i]; local
1875 struct usbfs_urb *urb = &urbs[i]; local
2019 struct usbfs_urb *urb; local
2126 struct usbfs_urb *urb; local
2560 struct usbfs_urb *urb; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_context.h 68 * URB - uniform resource buffer. A mid-sized buffer which is
72 * CURBE - constant URB entry. An urb region (entry) used to hold
76 * VUE - vertex URB entry. An urb entry holding a vertex and usually
80 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
85 * urb) of the thread are preloaded to this area before the thread is
92 * MRF registers. All program output is via these messages. URB
93 * entries are populated by sending a message to the shared URB
978 } urb; member in struct:brw_context
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_private.h 824 * Header for Vertex URB Entry (VUE)
1448 } urb; member in struct:anv_pipeline
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 
  /prebuilts/devtools/tools/lib/
ecj-4.6.1.jar 

Completed in 521 milliseconds

1 2