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

1 2 3

  /external/mesa3d/src/compiler/glsl/
lower_vector_derefs.cpp 64 ir_constant *old_index_constant = deref->array_index->constant_expression_value();
71 deref->array_index);
93 deref->array_index);
lower_buffer_access.cpp 402 ir_rvalue *array_index = deref_array->array_index; local
403 if (array_index->type->base_type == GLSL_TYPE_INT)
404 array_index = i2u(array_index);
407 array_index->constant_expression_value(NULL);
412 mul(array_index,
lower_distance.cpp 219 * \param array_index Selects one of the vec4's in gl_ClipDistanceMESA
221 * array_index.
225 ir_rvalue *&array_index,
245 array_index = new(ctx) ir_constant(const_val / 4);
260 array_index = new(ctx) ir_expression(
356 ir_dereference_array(*new_var, array_ref->array_index);
379 ir_rvalue *array_index; local
381 this->create_indices(array_deref->array_index, array_index, swizzle_index);
385 new(mem_ctx) ir_dereference_array(lowered_vec8, array_index);
    [all...]
ir_equals.cpp 98 if (!array_index->equals(other->array_index, ignore))
ir_set_program_inouts.cpp 354 if (try_mark_partial_variable(deref_var->var, ir->array_index))
360 inner_array->array_index->accept(this);
377 ir->array_index->accept(this);
383 if (try_mark_partial_variable(deref_var->var, ir->array_index))
opt_array_splitting.cpp 216 if (!ir->array_index->as_constant()) {
230 if (ir->array_index->as_dereference_array())
231 visit_enter(ir->array_index->as_dereference_array());
337 ir_constant *constant = deref_array->array_index->as_constant();
opt_function_inlining.cpp 115 if (deref->array_index->ir_type != ir_type_constant) {
120 index = new(ctx) ir_variable(deref->array_index->type, "saved_idx", ir_var_temporary);
124 deref->array_index, 0);
127 deref->array_index = new(ctx) ir_dereference_variable(index);
loop_unroll.cpp 109 !ir->array_index->constant_expression_value()) {
125 !ir->array_index->as_constant()) {
127 loop_variable *lv = ls->get(ir->array_index->variable_referenced());
lower_variable_index_to_cond_assign.cpp 171 && (ir->array_index->as_constant() == NULL)) {
447 if (deref == NULL || deref->array_index->as_constant()
493 new(mem_ctx) ir_variable(orig_deref->array_index->type,
499 new(mem_ctx) ir_assignment(lhs, orig_deref->array_index, NULL);
502 orig_deref->array_index = lhs->clone(mem_ctx, NULL);
lower_ubo_reference.cpp 203 ir_constant *const_index = a->array_index->as_constant();
206 ir_rvalue *array_index = a->array_index; local
207 if (array_index->type != glsl_type::uint_type)
208 array_index = i2u(array_index);
214 array_index = mul(array_index, base_size);
218 *nonconst_block_index = add(*nonconst_block_index, array_index);
220 *nonconst_block_index = array_index;
    [all...]
opt_constant_folding.cpp 91 !array_ref->array_index->as_constant()))
opt_dead_builtin_varyings.cpp 98 ir_constant *index = ir->array_index->as_constant();
125 ir_constant *index = ir->array_index->as_constant();
443 unsigned i = da->array_index->as_constant()->get_uint_component(0);
456 unsigned i = da->array_index->as_constant()->get_uint_component(0);
lower_named_interface_blocks.cpp 91 deref_array_prev->array_index);
97 deref_array_prev->array_index);
  /external/mesa3d/src/mesa/main/
shader_query.cpp 46 unsigned array_index);
182 unsigned array_index = 0; local
185 &array_index);
190 return program_resource_location(res, array_index);
355 unsigned array_index = 0; local
358 &array_index);
363 return program_resource_location(res, array_index);
444 * Checks if array subscript is valid and if so sets array_index.
447 valid_array_index(const GLchar *name, unsigned *array_index)
456 if (array_index)
841 unsigned array_index = 0; local
    [all...]
program_resource.c 272 unsigned array_index = 0; local
316 &array_index);
317 if (!res || array_index > 0)
uniform_query.cpp 162 unsigned *array_index,
255 *array_index = 0;
260 *array_index = location - uni->remap_location;
262 /* If the uniform is an array, check that array_index is in bounds.
263 * array_index is unsigned so no need to check for less than zero.
265 if (*array_index >= uni->array_elements) {
553 * \param array_index If \c uni is an array, this is the element of
559 unsigned array_index,
581 (uint8_t *) (&uni->storage[array_index * (dmul * components * vectors)].i);
586 __func__, dst, array_index, components
    [all...]
  /external/v8/src/interpreter/
constant-array-builder.cc 143 int array_index = 0; local
146 DCHECK(array_index == 0 ||
147 base::bits::IsPowerOfTwo32(static_cast<uint32_t>(array_index)));
156 fixed_array->set(array_index++,
161 if (static_cast<size_t>(fixed_array->length() - array_index) <= padding) {
164 array_index += padding;
166 DCHECK_GE(array_index, fixed_array->length());
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table.cc 58 int32_t array_index) {
61 data, offset_to_index_sub_table_array, array_index));
147 int32_t offset_to_index_sub_table_array, int32_t array_index) {
150 array_index * EblcTable::Offset::kIndexSubTableEntryLength;
index_sub_table.h 88 int32_t array_index);
146 int32_t array_index);
  /external/v8/src/ast/
ast.cc 702 int array_index = 0; local
703 for (; array_index < constants_length; array_index++) {
704 Expression* element = values()->at(array_index);
735 int array_index = 0; local
736 for (; array_index < constants_length; array_index++) {
737 Expression* element = values()->at(array_index);
758 fixed_array->set(array_index, *boilerplate_value);
765 if (is_simple() && depth() == 1 && array_index > 0 &
    [all...]
  /art/runtime/
proxy_test.cc 64 jsize array_index = 0; local
74 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
81 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
89 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
95 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
99 CHECK_EQ(array_index, methods_count);
  /system/nvram/core/include/nvram/core/
nvram_manager.h 115 size_t array_index = 0; member in struct:nvram::NvramManager::SpaceRecord
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/
vk-layer-generate.py     [all...]
  /system/nvram/core/
nvram_manager.cpp 346 SpaceListEntry tmp = spaces_[space_record.array_index];
347 spaces_[space_record.array_index] = spaces_[num_spaces_ - 1];
788 space_record->array_index = FindSpace(index);
789 if (space_record->array_index == kMaxSpaces) {
794 space_record->transient = &spaces_[space_record->array_index];
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 252 int array_index(const int (&a)[4], int n) { function

Completed in 529 milliseconds

1 2 3