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

1 2 3 4 5 6 7 8 91011

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_handle_table.c 49 void **objects; member in struct:handle_table
51 /** Number of objects the handle can currently hold */
53 /** Number of consecutive objects allocated at the start of the table */
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
114 new_objects = (void **)REALLOC((void *)ht->objects,
123 ht->objects = new_objects;
141 object = ht->objects[index];
143 ht->objects[index] = NULL;
165 if(!ht->objects[ht->filled]
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_handle_table.c 49 void **objects; member in struct:handle_table
51 /** Number of objects the handle can currently hold */
53 /** Number of consecutive objects allocated at the start of the table */
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
114 new_objects = (void **)REALLOC((void *)ht->objects,
123 ht->objects = new_objects;
141 object = ht->objects[index];
143 ht->objects[index] = NULL;
165 if(!ht->objects[ht->filled]
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/samples/
select.c 55 } objects[MAXOBJS]; variable in typeref:struct:object
77 objects[i].v1[0] = x + (rand() % 50) - 25;
78 objects[i].v2[0] = x + (rand() % 50) - 25;
79 objects[i].v3[0] = x + (rand() % 50) - 25;
80 objects[i].v1[1] = y + (rand() % 50) - 25;
81 objects[i].v2[1] = y + (rand() % 50) - 25;
82 objects[i].v3[1] = y + (rand() % 50) - 25;
83 objects[i].color[0] = ((rand() % 100) + 50) / 150.0;
84 objects[i].color[1] = ((rand() % 100) + 50) / 150.0;
85 objects[i].color[2] = ((rand() % 100) + 50) / 150.0
    [all...]
  /xsrc/external/mit/x11perf/dist/
do_dots.c 34 points = malloc(p->objects * sizeof(XPoint));
36 for (int i = 0; i != p->objects; i++) {
47 XDrawPoints(xp->d, xp->w, pgc, points, p->objects, CoordModeOrigin);
do_movewin.c 39 rows = (p->objects + MAXCOLS - 1) / MAXCOLS;
45 children = malloc(p->objects * sizeof (Window));
46 positions = malloc(p->objects * sizeof(XPoint));
48 xmax = (CHILDSIZE+CHILDSPACE) * (rows > 1 ? MAXCOLS : p->objects);
51 for (int i = 0; i != p->objects; i++) {
73 for (int j = 0; j != p->objects; j++) {
96 for (int j = 0; j != p->objects; j++) {
108 children = malloc (p->objects * sizeof (Window));
109 for (int i = 0; i != p->objects; i++) {
126 for (int j = 0; j != p->objects; j++
    [all...]
do_rects.c 50 rects = malloc(p->objects * sizeof(XRectangle));
63 for (int i = 0; i != p->objects; i++) {
89 XFillRectangles(xp->d, xp->w, pgc, rects, p->objects);
102 XDrawRectangles (xp->d, xp->w, pgc, rects, p->objects);
do_complex.c 65 phiinc = 1.75*PI / ((double) p->objects);
69 numPoints = (p->objects) * NUM_POINTS;
74 for (int i = 0; i != p->objects; i++) {
103 for (int j = 0; j != p->objects; j++) {
141 numPoints = p->objects * nsides;
147 for (int i = 0; i < p->objects; i++) {
178 for (int j = 0; j != p->objects; j++) {
do_traps.c 43 numPoints = (p->objects) * NUM_POINTS;
51 for (int i = 0; i != p->objects; i++, curPoint += NUM_POINTS) {
85 for (int j = 0; j != p->objects; j++) {
138 numTraps = p->objects;
204 for (int i = 0; i != p->objects; i++, curTrap ++) {
244 XRenderAddTraps (xp->d, mask, 0, 0, traps, p->objects);
277 numTraps = p->objects;
331 for (int i = 0; i != p->objects; i++, curTrap++) {
376 0, 0, trapezoids, p->objects);
do_tris.c 89 phiinc = 1.75*PI / ((double) p->objects);
93 numPoints = (p->objects) * NUM_POINTS;
101 for (int i = 0; i != p->objects; i++) {
128 /* printf("Average area = %6.2lf\n", aarea/p->objects); */
142 for (int j = 0; j != p->objects; j++) {
213 XPolyTriangle (xp->d, xp->w, pgc, points, p->objects, Convex,
do_segs.c 53 segments = malloc((p->objects) * sizeof(XSegment));
70 phaseinc = size8 / p->objects;
74 for (i = 0; i != p->objects; i++) {
225 segments = malloc((p->objects) * sizeof(XSegment));
232 for (i = 0; i != p->objects; i++) {
294 segments = malloc((p->objects) * sizeof(XSegment));
301 for (i = 0; i != p->objects; i++) {
355 XDrawSegments(xp->d, xp->w, pgc, segments, p->objects);
do_lines.c 53 points = malloc((p->objects+1) * sizeof(XPoint));
71 phaseinc = ((float)size4) / ((float)p->objects);
78 for (int i = 1; i != (p->objects+1); i++) {
279 XDrawLines(xp->d, xp->w, pgc, points, p->objects+1, CoordModeOrigin);
  /xsrc/external/mit/MesaLib.old/dist/src/mapi/shared-glapi/
SConscript 9 """Return mapi objects built for the given printer and mode."""
74 objects = []
82 objects.append(o[0])
84 env.Depends(objects, header)
86 return objects
  /xsrc/external/mit/fontconfig/dist/src/
fclist.c 38 os->objects = 0;
46 const char **objects; local
52 if (os->objects)
53 objects = (const char **) realloc ((void *) os->objects,
56 objects = (const char **) malloc (s * sizeof (const char *));
57 if (!objects)
59 os->objects = objects;
70 c = os->objects[mid] - object
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/spirv/
invocation.hpp 57 // Combines multiple clover objects into a single one, resolving
59 binary link_program(const std::vector<binary> &objects, const device &dev,
  /xsrc/external/mit/MesaLib.old/dist/src/intel/common/tests/
gen_mi_builder_test.cpp 262 drm_i915_gem_exec_object2 objects[2];
263 memset(objects, 0, sizeof(objects));
265 objects[0].handle = data_bo_handle;
266 objects[0].relocation_count = 0;
267 objects[0].relocs_ptr = 0;
268 objects[0].flags = EXEC_OBJECT_WRITE;
269 objects[0].offset = -1;
271 objects[0].flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
273 objects[1].handle = batch_bo_handle
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_batch.cpp 49 batch->objects = _mesa_set_create(NULL,
53 if (!batch->bos || !batch->sampler_views || !batch->surfaces || !batch->objects)
125 _mesa_set_clear(batch->objects, delete_object);
152 _mesa_set_destroy(batch->objects, NULL);
249 struct set_entry *entry = _mesa_set_search(batch->objects, object);
251 entry = _mesa_set_add(batch->objects, object);
d3d12_batch.h 47 struct set *objects; member in struct:d3d12_batch
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_framebuffer.c 39 hash_table_foreach(&fb->objects, he) {
61 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(&fb->objects, hash, rp);
94 _mesa_hash_table_insert_pre_hashed(&fb->objects, hash, rp, ret);
102 _mesa_hash_table_insert_pre_hashed(&fb->objects, hash, rp, ptr);
128 if (!_mesa_hash_table_init(&fb->objects, fb, _mesa_hash_pointer, _mesa_key_pointer_equal))
208 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(&fb->objects, hash, rp);
233 _mesa_hash_table_insert_pre_hashed(&fb->objects, hash, rp, ret);
241 _mesa_hash_table_insert_pre_hashed(&fb->objects, hash, rp, ptr);
274 if (!_mesa_hash_table_init(&fb->objects, fb, _mesa_hash_pointer, _mesa_key_pointer_equal))
zink_framebuffer.h 52 /* current objects */
61 struct hash_table objects; member in struct:zink_framebuffer
  /xsrc/external/mit/MesaLib/dist/src/vulkan/util/
vk_log.c 88 struct vk_object_base **objects = NULL; local
92 objects = (struct vk_object_base **) objects_or_instance;
93 instance = vk_object_to_instance(objects[0]);
165 struct vk_object_base *base = objects[i];
244 vk_debug_report(instance, flags, object_count ? objects[0] : NULL, 0,
  /xsrc/external/mit/brotli/dist/
setup.py 82 objects = []
107 objects.extend(objs)
109 self._built_objects = objects[:]
111 objects.extend(ext.extra_objects)
123 objects,
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/
intel_dump_gpu.in 19 -c, --only-capture Only write objects flagged with EXEC_OBJECT_CAPTURE into
23 -f, --frame=ID Only dump objects for frame ID
  /xsrc/external/mit/freetype/dist/builds/
freetype.mk 52 # BASE_OBJ_M A list of base objects (for single object and multiple
56 # BASE_EXT_OBJ A list of base extension objects. Set up in
60 # DRV_OBJ_M A list of driver objects (for single object and multiple
75 # The targets `objects' and `library' are defined at the end of this
78 .PHONY: single multi objects library refdoc refdoc-venv
80 # default target -- build single objects and library
82 single: objects library
84 # `multi' target -- build multiple objects and library
86 multi: objects library
165 # Initialize the list of objects
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/common/tests/
mi_builder_test.cpp 306 drm_i915_gem_exec_object2 objects[2];
307 memset(objects, 0, sizeof(objects));
309 objects[0].handle = data_bo_handle;
310 objects[0].relocation_count = 0;
311 objects[0].relocs_ptr = 0;
313 objects[0].flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS |
316 objects[0].offset = data_bo_addr;
318 objects[0].flags = EXEC_OBJECT_WRITE;
319 objects[0].offset = -1
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/
sp.c 20 struct object objects[32]; member in struct:character
42 cartman.objects[cartman.num_objects] = object;
63 cartman.objects[cartman.num_objects] = object;
84 cartman.objects[cartman.num_objects] = object;
110 cartman.objects[cartman.num_objects] = object;
490 struct object object = cartman.objects[i];

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011