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

1 2

  /external/mesa3d/src/glsl/
lower_clip_distance.cpp 120 * \param array_index Selects one of the vec4's in gl_ClipDistanceMESA
122 * array_index.
126 ir_rvalue *&array_index,
146 array_index = new(ctx) ir_constant(const_val / 4);
161 array_index = new(ctx) ir_expression(
192 ir_rvalue *array_index; local
194 this->create_indices(ir->array_index, array_index, swizzle_index);
197 this->new_clip_distance_var, array_index);
198 ir->array_index = swizzle_index
    [all...]
lower_vec_index_to_swizzle.cpp 73 assert(deref->array_index->type->base_type == GLSL_TYPE_INT);
74 ir_constant = deref->array_index->constant_expression_value();
lower_vec_index_to_cond_assign.cpp 85 assert(orig_deref->array_index->type->base_type == GLSL_TYPE_INT);
95 assign = new(base_ir) ir_assignment(deref, orig_deref->array_index, NULL);
183 assert(orig_deref->array_index->type->base_type == GLSL_TYPE_INT);
192 assign = new(ir) ir_assignment(deref, orig_deref->array_index, NULL);
lower_variable_index_to_cond_assign.cpp 170 && (ir->array_index->as_constant() == NULL)) {
382 if (deref == NULL || deref->array_index->as_constant()
428 new(mem_ctx) ir_variable(orig_deref->array_index->type,
434 new(mem_ctx) ir_assignment(lhs, orig_deref->array_index, NULL);
437 orig_deref->array_index = lhs->clone(mem_ctx, NULL);
lower_ubo_reference.cpp 119 ir_constant *const_index = deref_array->array_index->as_constant();
124 mul(deref_array->array_index,
opt_array_splitting.cpp 185 if (entry && !ir->array_index->as_constant())
295 ir_constant *constant = deref_array->array_index->as_constant();
ir_rvalue_visitor.cpp 93 handle_rvalue(&ir->array_index);
ir_set_program_inouts.cpp 128 ir_constant *index = ir->array_index->as_constant();
ir.h 1629 ir_rvalue *array_index; member in class:ir_dereference_array
    [all...]
ir.cpp 1201 ir_rvalue *array_index)
1204 this->array_index = array_index;
1210 ir_rvalue *array_index)
1215 this->array_index = array_index;
    [all...]
opt_dead_code_local.cpp 130 ir->array_index->accept(visitor);
ir_hv_accept.cpp 275 s = this->array_index->accept(v);
ir_clone.cpp 218 this->array_index->clone(mem_ctx,
ir_print_visitor.cpp 331 ir->array_index->accept(this);
  /external/mesa3d/src/mesa/program/
sampler.cpp 71 ir_constant *index = ir->array_index->as_constant();
  /external/openfst/src/extensions/ngram/
bitmap-index.cc 115 size_t BitmapIndex::get_index_ones_count(size_t array_index) const {
117 if (array_index > 0) {
118 sum += secondary_index_[array_index-1];
119 uint32 end_block = (array_index - 1) / kSecondaryBlockSize;
  /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);
  /art/runtime/
proxy_test.cc 61 jsize array_index = 0; local
67 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
72 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
78 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
84 proxyClassMethods, array_index++, soa.AddLocalReference<jobject>(
88 CHECK_EQ(array_index, methods_count);
  /external/mesa3d/src/mesa/main/
uniform_query.cpp 159 unsigned *array_index,
229 _mesa_uniform_split_location_offset(location, loc, array_index);
244 /* If the uniform is an array, check that array_index is in bounds.
245 * If not an array, check that array_index is zero.
246 * array_index is unsigned so no need to check for less than zero.
251 if (*array_index >= limit) {
466 * \param array_index If \c uni is an array, this is the element of
472 unsigned array_index,
493 (uint8_t *) (&uni->storage[array_index * (components * vectors)].i);
498 __func__, dst, array_index, components
    [all...]
uniforms.h 218 unsigned array_index,
  /external/openfst/src/include/fst/extensions/ngram/
bitmap-index.h 129 // returns, from the index, the count of ones up to array_index
130 size_t get_index_ones_count(size_t array_index) const;
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 253 int array_index(const int (&a)[4], int n) { function
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 97 LLVMValueRef array_index = LLVMBuildAdd(gallivm->builder, soa_index, local
100 return array_index;
173 LLVMValueRef array_index = emit_array_index(bld, reg, swizzle); local
174 LLVMValueRef ptr = LLVMBuildGEP(builder, bld->temps_array, &array_index,
194 LLVMValueRef array_index = emit_array_index(bld, reg, swizzle); local
195 LLVMValueRef ptr = LLVMBuildGEP(builder, bld->outputs_array, &array_index,
    [all...]
  /system/netd/server/
CommandListener.cpp 625 int array_index = 0; local
627 while (array_index < num_addrs) {
628 if (!inet_aton(argv[arg_index++], &(addrs[array_index++]))) {
    [all...]

Completed in 280 milliseconds

1 2