HomeSort by: relevance | last modified time | path
    Searched refs:attrs (Results 1 - 25 of 132) sorted by relevancy

1 2 3 4 5 6

  /xsrc/external/mit/MesaLib/dist/src/egl/main/
eglimage.c 38 _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
46 attrs->ImagePreserved = val;
53 attrs->GLTextureLevel = val;
59 attrs->GLTextureZOffset = val;
65 attrs->ProtectedContent = val;
75 _eglParseMESADrmImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
83 attrs->Width = val;
86 attrs->Height = val;
89 attrs->DRMBufferFormatMESA = val;
92 attrs->DRMBufferUseMESA = val
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/egl/main/
eglimage.c 38 _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
46 attrs->ImagePreserved = val;
53 attrs->GLTextureLevel = val;
59 attrs->GLTextureZOffset = val;
69 _eglParseMESADrmImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
77 attrs->Width = val;
80 attrs->Height = val;
83 attrs->DRMBufferFormatMESA = val;
86 attrs->DRMBufferUseMESA = val;
89 attrs->DRMBufferStrideMESA = val
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/config/
udev.c 63 InputAttributes attrs = {}; local
108 attrs.pnp_id = strdup(pnp_id);
113 if (asprintf(&attrs.usb_id, "%04x:%04x", usb_vendor, usb_model)
115 attrs.usb_id = NULL;
123 attrs.product = strdup(name);
129 attrs.device = strdup(path);
133 attrs.tags = xstrtokenize(tags_prop, ",");
168 attrs.vendor = strdup(value);
171 attrs.flags |= ATTR_KEYBOARD;
174 attrs.flags |= ATTR_POINTER
    [all...]
hal.c 132 InputAttributes attrs = {0}; local
157 attrs.device = strdup(path);
163 attrs.product = strdup(name);
165 attrs.vendor = get_prop_string(hal_ctx, udi, "info.vendor");
167 attrs.tags = xstrtokenize(hal_tags, ",");
171 attrs.flags |= ATTR_KEYBOARD;
173 attrs.flags |= ATTR_POINTER;
175 attrs.flags |= ATTR_JOYSTICK;
177 attrs.flags |= ATTR_TABLET;
179 attrs.flags |= ATTR_TOUCHPAD
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/freedreno/registers/
gen_header.py 236 def __init__(self, attrs, domain):
237 if "name" in attrs:
238 self.name = attrs["name"]
242 self.offset = int(attrs["offset"], 0)
243 self.stride = int(attrs["stride"], 0)
244 self.length = int(attrs["length"], 0)
253 def __init__(self, attrs, domain, array, bit_size):
254 self.name = attrs["name"]
257 self.offset = int(attrs["offset"], 0)
282 def parse_variants(attrs)
    [all...]
  /xsrc/external/mit/freetype/dist/src/cache/
ftcbasic.c 54 FTC_BasicAttrRec attrs; member in struct:FTC_BasicQueryRec_
62 FTC_BasicAttrRec attrs; member in struct:FTC_BasicFamilyRec_
75 return FTC_BASIC_ATTR_COMPARE( &family->attrs, &query->attrs );
90 family->attrs = query->attrs;
105 error = FTC_Manager_LookupFace( manager, family->attrs.scaler.face_id,
136 error = FTC_Manager_LookupSize( manager, &family->attrs.scaler, &size );
145 (FT_Int)family->attrs.load_flags | FT_LOAD_RENDER );
162 FTC_Scaler scaler = &family->attrs.scaler
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/genxml/
gen_pack.py 292 def __init__(self, parser, name, attrs):
296 self.explicit_size = int(attrs["size"]) if "size" in attrs else 0
298 self.align = int(attrs["align"]) if "align" in attrs else None
319 def add_section(self, type_name, attrs):
320 assert("name" in attrs)
321 section = self.Section(safe_name(attrs["name"]).lower())
322 section.human_name = attrs["name"]
323 section.offset = int(attrs["offset"]
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/genxml/
gen_pack_header.py 231 def __init__(self, parser, attrs):
233 if "name" in attrs:
234 self.name = safe_name(attrs["name"])
235 self.start = int(attrs["start"])
236 self.end = int(attrs["end"])
237 self.type = attrs["type"]
246 if "prefix" in attrs:
247 self.prefix = attrs["prefix"]
251 if "default" in attrs:
253 self.default = int(attrs["default"], base=0
    [all...]
gen_bits_header.py 265 def start_element(self, name, attrs):
267 self.gen = Gen(attrs['gen'])
269 if name == 'instruction' and 'engine' in attrs:
270 engines = set(attrs['engine'].split('|'))
273 self.start_container(attrs)
275 self.start_field(attrs)
287 def start_container(self, attrs):
289 name = attrs['name']
293 self.container.add_gen(self.gen, attrs)
295 def start_field(self, attrs)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/genxml/
gen_pack_header.py 210 def __init__(self, parser, attrs):
212 if "name" in attrs:
213 self.name = safe_name(attrs["name"])
214 self.start = int(attrs["start"])
215 self.end = int(attrs["end"])
216 self.type = attrs["type"]
225 if "prefix" in attrs:
226 self.prefix = attrs["prefix"]
230 if "default" in attrs:
232 self.default = int(attrs["default"], base=0
    [all...]
gen_bits_header.py 245 def start_element(self, name, attrs):
247 self.gen = Gen(attrs['gen'])
249 if name == 'instruction' and 'engine' in attrs:
250 engines = set(attrs['engine'].split('|'))
254 self.start_container(attrs)
258 self.start_field(attrs)
270 def start_container(self, attrs):
272 name = attrs['name']
276 self.container_stack[-1].add_gen(self.gen, attrs)
278 def start_field(self, attrs)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/dix/
inpututils.c 345 DuplicateInputAttributes(InputAttributes *attrs)
351 if (!attrs)
357 if (attrs->product && !(new_attr->product = strdup(attrs->product)))
359 if (attrs->vendor && !(new_attr->vendor = strdup(attrs->vendor)))
361 if (attrs->device && !(new_attr->device = strdup(attrs->device)))
363 if (attrs->pnp_id && !(new_attr->pnp_id = strdup(attrs->pnp_id))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/asahi/lib/
gen_pack.py 219 def __init__(self, parser, attrs):
221 if "name" in attrs:
222 self.name = safe_name(attrs["name"]).lower()
223 self.human_name = attrs["name"]
225 if ":" in str(attrs["start"]):
226 (word, bit) = attrs["start"].split(":")
229 self.start = int(attrs["start"])
231 self.end = self.start + int(attrs["size"]) - 1
232 self.type = attrs["type"]
237 if "prefix" in attrs
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/broadcom/cle/
gen_pack_header.py 97 def __init__(self, parser, attrs):
99 if "name" in attrs:
100 self.name = safe_name(attrs["name"]).lower()
102 if str(attrs["start"]).endswith("b"):
103 self.start = int(attrs["start"][:-1]) * 8
105 self.start = int(attrs["start"])
112 self.end = self.start + int(attrs["size"]) - 1
113 self.type = attrs["type"]
118 if "prefix" in attrs:
119 self.prefix = safe_name(attrs["prefix"]).upper(
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/
gen_pack_header.py 101 def __init__(self, parser, attrs):
103 if "name" in attrs:
104 self.name = safe_name(attrs["name"]).lower()
106 if str(attrs["start"]).endswith("b"):
107 self.start = int(attrs["start"][:-1]) * 8
109 self.start = int(attrs["start"])
116 self.end = self.start + int(attrs["size"]) - 1
117 self.type = attrs["type"]
122 if "prefix" in attrs:
123 self.prefix = safe_name(attrs["prefix"]).upper(
    [all...]
  /xsrc/external/mit/xorg-server/dist/config/
hal.c 133 InputAttributes attrs = { 0 }; local
159 attrs.device = strdup(path);
165 attrs.product = strdup(name);
167 attrs.vendor = get_prop_string(hal_ctx, udi, "info.vendor");
169 attrs.tags = xstrtokenize(hal_tags, ",");
173 attrs.flags |= ATTR_KEY | ATTR_KEYBOARD;
175 attrs.flags |= ATTR_POINTER;
177 attrs.flags |= ATTR_JOYSTICK;
179 attrs.flags |= ATTR_TABLET;
181 attrs.flags |= ATTR_TABLET_PAD
    [all...]
udev.c 106 InputAttributes attrs = { }; local
181 attrs.usb_id = usb_id;
189 attrs.pnp_id = strdup(pnp_id);
198 attrs.product = strdup(name);
205 attrs.device = strdup(path);
209 attrs.tags = xstrtokenize(tags_prop, ",");
249 attrs.vendor = strdup(value);
275 attrs.flags |= m->flag;
291 rc = NewInputDeviceRequest(input_options, &attrs, &dev);
299 free(attrs.usb_id)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/tools/trace/
parse.py 42 def __init__(self, type, name_or_data, attrs = None, line = None, column = None):
46 self.attrs = attrs
167 attrs = self.token.attrs
169 return attrs
205 attrs = self.element_start('call')
207 no = int(attrs['no'])
213 klass = attrs['class']
214 method = attrs['method'
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/egl/drivers/dri2/
egl_dri2.c 1961 _EGLImageAttribs attrs; local
1969 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
1972 plane = attrs.PlaneWL;
2024 _EGLImageAttribs attrs; local
2034 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2052 depth = attrs.GLTextureZOffset;
2087 attrs.GLTextureLevel,
2124 _EGLImageAttribs attrs; local
2129 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2132 if (attrs.Width <= 0 || attrs.Height <= 0 |
2451 _EGLImageAttribs attrs; local
2541 _EGLImageAttribs attrs; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/tools/trace/
parse.py 44 def __init__(self, type, name_or_data, attrs = None, line = None, column = None):
48 self.attrs = attrs
169 attrs = self.token.attrs
171 return attrs
207 attrs = self.element_start('call')
209 no = int(attrs['no'])
215 klass = attrs['class']
216 method = attrs['method'
    [all...]
  /xsrc/external/mit/xorg-server/dist/dix/
inpututils.c 347 DuplicateInputAttributes(InputAttributes * attrs)
353 if (!attrs)
359 if (attrs->product && !(new_attr->product = strdup(attrs->product)))
361 if (attrs->vendor && !(new_attr->vendor = strdup(attrs->vendor)))
363 if (attrs->device && !(new_attr->device = strdup(attrs->device)))
365 if (attrs->pnp_id && !(new_attr->pnp_id = strdup(attrs->pnp_id))
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/
xf86Xinput.c 519 const InputAttributes *attrs)
522 if (!MatchAttrToken(attrs->product, &iclass->match_product, match_substring))
526 if (!MatchAttrToken(attrs->vendor, &iclass->match_vendor, match_substring))
530 if (!MatchAttrToken(attrs->device, &iclass->match_device, match_path_pattern))
538 if (!MatchAttrToken(attrs->pnp_id, &iclass->match_pnpid, match_pattern))
542 if (!MatchAttrToken(attrs->usb_id, &iclass->match_usbid, match_pattern))
557 if (!attrs->tags)
559 for (tag = attrs->tags, match = FALSE; *tag; tag++) {
571 iclass->is_keyboard.val != !!(attrs->flags & ATTR_KEYBOARD))
574 iclass->is_pointer.val != !!(attrs->flags & ATTR_POINTER)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nouveau_render.h 59 struct nouveau_array attrs[VERT_ATTRIB_MAX]; member in struct:nouveau_render_state
62 * the attrs array above (or -1 if unused). */
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_ff_gs.h 43 GLbitfield64 attrs; member in struct:brw_ff_gs_prog_key
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nouveau_render.h 59 struct nouveau_array attrs[VERT_ATTRIB_MAX]; member in struct:nouveau_render_state
62 * the attrs array above (or -1 if unused). */

Completed in 20 milliseconds

1 2 3 4 5 6