/external/chromium/net/disk_cache/ |
bitmap.cc | 119 void Bitmap::SetMapElement(int array_index, uint32 value) { 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];
|
bitmap.h | 55 // 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/ |
lower_vec_index_to_swizzle.cpp | 72 assert(deref->array_index->type->base_type == GLSL_TYPE_INT); 73 ir_constant = deref->array_index->constant_expression_value();
|
lower_vec_index_to_cond_assign.cpp | 87 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);
|
ir_rvalue_visitor.cpp | 91 handle_rvalue(&ir->array_index);
|
lower_variable_index_to_cond_assign.cpp | 238 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);
|
ir_set_program_inouts.cpp | 110 ir_constant *index = ir->array_index->as_constant();
|
opt_dead_code_local.cpp | 95 ir->array_index->accept(visitor);
|
ir.cpp | 964 ir_rvalue *array_index) 967 this->array_index = array_index; 973 ir_rvalue *array_index) 978 this->array_index = array_index; [all...] |
ir.h | 1415 ir_rvalue *array_index; member in class:ir_dereference_array [all...] |
ir_hv_accept.cpp | 250 s = this->array_index->accept(v);
|
ir_print_visitor.cpp | 265 ir->array_index->accept(this);
|
ir_clone.cpp | 195 this->array_index->clone(mem_ctx,
|
ir_to_llvm.cpp | 334 llvm::Value* gep[2] = {llvm_int(0), llvm_value(deref->array_index)}; [all...] |
ir_constant_expression.cpp | 880 ir_constant *idx = this->array_index->constant_expression_value(); [all...] |
/frameworks/base/core/jni/ |
android_bluetooth_common.cpp | 640 property_value *value, int len, int *array_index ) { 648 set_object_array_element(env, strArray, name, *array_index); 649 *array_index += 1; 653 set_object_array_element(env, strArray, buf, *array_index); 654 *array_index += 1; 658 set_object_array_element(env, strArray, buf, *array_index); 659 *array_index += 1; 663 set_object_array_element(env, strArray, buf1, *array_index); 664 *array_index += 1; 668 set_object_array_element(env, strArray, prop_val[i], *array_index); 682 int i, size = 0,array_index = 0; local 753 int array_index = 0, size = 0; local [all...] |
/external/harfbuzz/src/ |
harfbuzz-gdef.c | 654 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_index / 4] |= bits [all...] |
/system/netd/ |
CommandListener.cpp | 512 int array_index = 0; local 514 while (array_index < num_addrs) { 515 if (!inet_aton(argv[arg_index++], &(addrs[array_index++]))) { [all...] |
/external/qemu/block/ |
vvfat.c | 194 static int array_index(array_t* array, void* pointer) function [all...] |
/external/v8/src/ |
liveedit-debugger.js | 522 function CodeInfoTreeNode(code_info, children, array_index) { 526 this.array_index = array_index; [all...] |
objects.h | 5220 uint32_t array_index() { function in class:v8::internal::StringHasher [all...] |
objects.cc | [all...] |