Searched refs:array_index (Results 1 - 20 of 20) sorted by relevance

/external/chromium/net/disk_cache/
H A Dbitmap.cc119 void Bitmap::SetMapElement(int array_index, uint32 value) { argument
120 DCHECK_LT(array_index, array_size_);
121 DCHECK_GE(array_index, 0);
122 map_[array_index] = value;
125 uint32 Bitmap::GetMapElement(int array_index) const {
126 DCHECK_LT(array_index, array_size_);
127 DCHECK_GE(array_index, 0);
128 return map_[array_index];
H A Dbitmap.h55 // Directly sets an element of the internal map. Requires |array_index| <
57 void SetMapElement(int array_index, uint32 value);
59 // Gets an entry of the internal map. Requires array_index <
61 uint32 GetMapElement(int array_index) const;
/external/mesa3d/src/glsl/
H A Dlower_vec_index_to_swizzle.cpp72 assert(deref->array_index->type->base_type == GLSL_TYPE_INT);
73 ir_constant = deref->array_index->constant_expression_value();
H A Dlower_vec_index_to_cond_assign.cpp87 assert(orig_deref->array_index->type->base_type == GLSL_TYPE_INT);
95 assign = new(base_ir) ir_assignment(deref, orig_deref->array_index, NULL);
172 assert(orig_deref->array_index->type->base_type == GLSL_TYPE_INT);
179 assign = new(ir) ir_assignment(deref, orig_deref->array_index, NULL);
H A Dir_rvalue_visitor.cpp91 handle_rvalue(&ir->array_index);
H A Dlower_variable_index_to_cond_assign.cpp238 if (deref == NULL || deref->array_index->as_constant()
288 new(mem_ctx) ir_variable(orig_deref->array_index->type,
294 new(mem_ctx) ir_assignment(lhs, orig_deref->array_index, NULL);
H A Dir_set_program_inouts.cpp110 ir_constant *index = ir->array_index->as_constant();
H A Dopt_dead_code_local.cpp95 ir->array_index->accept(visitor);
H A Dir.cpp964 ir_rvalue *array_index)
967 this->array_index = array_index;
973 ir_rvalue *array_index)
978 this->array_index = array_index;
963 ir_dereference_array(ir_rvalue *value, ir_rvalue *array_index) argument
972 ir_dereference_array(ir_variable *var, ir_rvalue *array_index) argument
H A Dir.h1385 ir_dereference_array(ir_rvalue *value, ir_rvalue *array_index);
1387 ir_dereference_array(ir_variable *var, ir_rvalue *array_index);
1415 ir_rvalue *array_index; member in class:ir_dereference_array
H A Dir_hv_accept.cpp250 s = this->array_index->accept(v);
H A Dir_print_visitor.cpp265 ir->array_index->accept(this);
H A Dir_clone.cpp195 this->array_index->clone(mem_ctx,
H A Dir_to_llvm.cpp334 llvm::Value* gep[2] = {llvm_int(0), llvm_value(deref->array_index)};
939 deref->array_index;
H A Dir_constant_expression.cpp880 ir_constant *idx = this->array_index->constant_expression_value();
/external/harfbuzz/src/
H A Dharfbuzz-gdef.c654 HB_UShort glyph_index, array_index, count; local
670 array_index = index;
678 array_index = index + 1;
682 byte = ngc[array_index][glyph_index / 4];
989 HB_UShort array_index, glyph_index, count; local
1036 array_index = index;
1044 array_index = index + 1;
1048 byte = ngc[array_index][glyph_index / 4];
1059 ngc[array_index][glyph_index / 4] &= mask;
1060 ngc[array_index][glyph_inde
[all...]
/external/v8/src/
H A Dliveedit-debugger.js523 function CodeInfoTreeNode(code_info, children, array_index) {
527 this.array_index = array_index;
H A Dobjects.h6690 uint32_t array_index() { function in class:v8::internal::StringHasher
H A Dobjects.cc7131 return MakeArrayIndexHash(array_index(), length_);
/external/qemu/block/
H A Dvvfat.c194 static int array_index(array_t* array, void* pointer) function
1673 first_mapping_index = array_index(&(s->mapping), mapping);
2079 int index = array_index(&(s->mapping), mapping);
2095 int i1 = array_index(&(s->mapping), mapping);
2107 array_index(&(s->mapping), mapping) :
2201 array_index(&(s->mapping), mapping));
2324 first_mapping = array_index(&(s->mapping), mapping);

Completed in 309 milliseconds