HomeSort by: relevance | last modified time | path
    Searched defs:storage (Results 1 - 25 of 38) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/tests/
copy_constant_to_storage_tests.cpp 32 copy_constant_to_storage(union gl_constant_value *storage,
50 gl_constant_value storage[17]; member in class:copy_constant_to_storage
77 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components();
78 fill_storage_array_with_sentinels(storage,
82 linker::copy_constant_to_storage(storage,
88 verify_data(storage, 0, val, red_zone_size, 0xF00F);
97 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components();
98 fill_storage_array_with_sentinels(storage,
102 linker::copy_constant_to_storage(storage,
108 verify_data(storage, 0, val, red_zone_size, 0xF00F)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/math/
m_vector.h 37 #define VEC_MALLOC 0x10 /* storage field points to self-allocated mem*/
62 void *storage; /**< self-allocated storage */ member in struct:__anon2661
63 GLuint storage_count; /**< storage size in elements */
68 GLfloat (*storage)[4] );
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/tests/
copy_constant_to_storage_tests.cpp 32 copy_constant_to_storage(union gl_constant_value *storage,
50 gl_constant_value storage[17]; member in class:copy_constant_to_storage
73 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components();
74 fill_storage_array_with_sentinels(storage,
78 linker::copy_constant_to_storage(storage,
84 verify_data(storage, 0, val, red_zone_size, 0xF00F);
93 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components();
94 fill_storage_array_with_sentinels(storage,
98 linker::copy_constant_to_storage(storage,
104 verify_data(storage, 0, val, red_zone_size, 0xF00F)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
link_uniform_initializers.cpp 43 assert(!"No uniform storage found!");
48 copy_constant_to_storage(union gl_constant_value *storage,
57 storage[i].u = val->value.u[i];
61 storage[i].i = val->value.i[i];
64 storage[i].f = val->value.f[i];
70 memcpy(&storage[i * 2].u, &val->value.d[i], sizeof(double));
73 storage[i].b = val->value.b[i] ? boolean_true : 0;
101 * they have no storage and should be handled elsewhere.
119 struct gl_uniform_storage *const storage = get_storage(prog, name); local
121 if (!storage)
217 struct gl_uniform_storage *const storage = get_storage(prog, name); local
    [all...]
gl_nir_link_uniform_initializers.c 56 struct gl_uniform_storage *storage = local
59 const unsigned elements = MAX2(storage->array_elements, 1);
62 storage->storage[i].i = data->binding++;
69 if (!storage->opaque[sh].active)
72 if (glsl_type_is_sampler(storage->type)) {
74 const unsigned index = storage->opaque[sh].index + i;
76 if (storage->is_bindless) {
80 storage->storage[i].i
216 struct gl_uniform_storage *storage = local
    [all...]
ir_uniform.h 115 * Storage used by the driver for the uniform
121 * Storage used by Mesa for the uniform
127 union gl_constant_value *storage; member in struct:gl_uniform_storage
175 * This is a shader storage buffer variable, not an uniform.
200 * the top-level shader storage block member (GL_TOP_LEVEL_ARRAY_SIZE).
206 * top-level shader storage block member. (GL_TOP_LEVEL_ARRAY_STRIDE).
link_atomics.cpp 122 gl_uniform_storage *const storage = local
142 storage->offset = *offset;
239 gl_uniform_storage *const storage = local
246 storage->atomic_buffer_index = i;
247 storage->offset = var->data.offset;
248 storage->array_stride = (var->type->is_array() ?
251 storage->matrix_stride = 0;
268 * to the intra-stage buffer list in uniform storage.
gl_nir_link_atomics.c 103 struct gl_uniform_storage *const storage = local
126 storage->offset = *offset;
229 struct gl_uniform_storage *storage = local
234 storage->atomic_buffer_index = buffer_idx;
235 storage->offset = var->data.offset;
239 storage->array_stride = glsl_atomic_size(without_array);
241 storage->array_stride = 0;
244 storage->matrix_stride = 0;
261 * to the intra-stage buffer list in uniform storage.
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
link_uniform_initializers.cpp 43 assert(!"No uniform storage found!");
48 copy_constant_to_storage(union gl_constant_value *storage,
57 storage[i].u = val->value.u[i];
61 storage[i].i = val->value.i[i];
64 storage[i].f = val->value.f[i];
70 memcpy(&storage[i * 2].u, &val->value.d[i], sizeof(double));
73 storage[i].b = val->value.b[i] ? boolean_true : 0;
101 * they have no storage and should be handled elsewhere.
119 struct gl_uniform_storage *const storage = get_storage(prog, name); local
121 if (!storage)
217 struct gl_uniform_storage *const storage = get_storage(prog, name); local
    [all...]
gl_nir_link_atomics.c 104 struct gl_uniform_storage *const storage = local
127 storage->offset = *offset;
210 struct gl_uniform_storage *storage = local
215 storage->atomic_buffer_index = buffer_idx;
216 storage->offset = var->data.offset;
220 storage->array_stride = glsl_atomic_size(without_array);
222 storage->array_stride = 0;
225 storage->matrix_stride = 0;
242 * to the intra-stage buffer list in uniform storage.
gl_nir_link_uniform_initializers.c 56 struct gl_uniform_storage *storage = local
59 const unsigned elements = MAX2(storage->array_elements, 1);
62 storage->storage[i].i = data->binding++;
69 if (!storage->opaque[sh].active)
72 if (glsl_type_is_sampler(storage->type)) {
74 const unsigned index = storage->opaque[sh].index + i;
76 if (storage->is_bindless) {
80 storage->storage[i].i
210 struct gl_uniform_storage *storage = local
    [all...]
ir_uniform.h 115 * Storage used by the driver for the uniform
121 * Storage used by Mesa for the uniform
127 union gl_constant_value *storage; member in struct:gl_uniform_storage
175 * This is a shader storage buffer variable, not an uniform.
200 * the top-level shader storage block member (GL_TOP_LEVEL_ARRAY_SIZE).
206 * top-level shader storage block member. (GL_TOP_LEVEL_ARRAY_STRIDE).
link_atomics.cpp 122 gl_uniform_storage *const storage = local
142 storage->offset = *offset;
239 gl_uniform_storage *const storage = local
246 storage->atomic_buffer_index = i;
247 storage->offset = var->data.offset;
248 storage->array_stride = (var->type->is_array() ?
251 storage->matrix_stride = 0;
268 * to the intra-stage buffer list in uniform storage.
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/math/
m_vector.h 40 #define VEC_MALLOC 0x10 /* storage field points to self-allocated mem*/
69 void *storage; /**< self-allocated storage */ member in struct:__anon4981
70 GLuint storage_count; /**< storage size in elements */
75 GLfloat (*storage)[4] );
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
kernel.cpp 125 sz += arg.storage();
427 kernel::argument::storage() const { function in class:kernel::argument
514 kernel::local_argument::storage() const { function in class:kernel::local_argument
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_nir_uniforms.cpp 164 * order we'd walk the type, so walk the list of storage that matches the
170 struct gl_uniform_storage *storage = local
175 * still part of the structure's storage, and so we'll see them while
178 if (storage->builtin ||
179 storage->type->is_sampler() ||
180 storage->type->is_image())
183 gl_constant_value *components = storage->storage;
184 unsigned vector_count = (MAX2(storage->array_elements, 1) *
185 storage->type->matrix_columns)
352 struct gl_uniform_storage *storage = local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
kernel.cpp 104 sz += arg.storage();
372 kernel::argument::storage() const { function in class:kernel::argument
443 kernel::local_argument::storage() const { function in class:kernel::local_argument
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_nir_uniforms.cpp 164 * order we'd walk the type, so walk the list of storage that matches the
170 struct gl_uniform_storage *storage = local
175 * still part of the structure's storage, and so we'll see them while
178 if (storage->builtin ||
179 storage->type->is_sampler() ||
180 storage->type->is_image())
183 gl_constant_value *components = storage->storage;
184 unsigned vector_count = (MAX2(storage->array_elements, 1) *
185 storage->type->matrix_columns)
350 struct gl_uniform_storage *storage = local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_insert_waitcnt.cpp 310 unsigned storage = sync.storage; local
311 while (storage) {
312 unsigned idx = u_bit_scan(&storage);
477 if (sync.storage & (1 << i) && !(sync.semantics & semantic_private)) {
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
sfn_liverange.h 40 /** Storage to record the required live range of a temporary register
108 /* Some storage class to encapsulate the prog_scope (de-)allocations */
117 std::vector<prog_scope> storage; member in class:r600::prog_scope_storage
  /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/
vn_descriptor_set.c 553 void *storage = vk_alloc(alloc, alloc_size, VN_DEFAULT_ALIGN, scope); local
554 if (!storage)
557 struct vn_update_descriptor_sets *update = storage;
559 update->writes = storage + writes_offset;
560 update->images = storage + images_offset;
561 update->buffers = storage + buffers_offset;
562 update->views = storage + views_offset;
vn_queue.c 82 void *storage; member in struct:vn_queue_submission::__anon2914
167 submit->temp.storage = NULL;
171 submit->temp.storage = vk_alloc(alloc, alloc_size, VN_DEFAULT_ALIGN,
173 if (!submit->temp.storage)
176 submit->temp.batches = submit->temp.storage;
177 submit->temp.semaphores = submit->temp.storage + semaphores_offset;
245 if (!submit->temp.storage)
331 vk_free(alloc, submit->temp.storage);
  /xsrc/external/mit/bitmap/dist/
BitmapP.h 131 XImage *image, *buffer, *storage; member in struct:__anon5312
  /xsrc/external/mit/freetype/dist/src/truetype/
ttobjs.h 309 FT_UShort storage_size; /* The storage area is now part of */
310 FT_Long* storage; /* the instance */ member in struct:TT_SizeRec_
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_glsl_to_tgsi_temprename.cpp 137 /* Some storage class to encapsulate the prog_scope (de-)allocations */
147 prog_scope *storage; member in class:__anon2685::prog_scope_storage
268 storage = ralloc_array(mem_ctx, prog_scope, n);
273 ralloc_free(storage);
280 storage[current_slot] = prog_scope(p, type, id, lvl, s_begin);
281 return &storage[current_slot++];

Completed in 25 milliseconds

1 2