HomeSort by relevance Sort by last modified time
    Searched refs:array_ (Results 26 - 50 of 87) sorted by null

12 3 4

  /external/chromium_org/third_party/tcmalloc/chromium/src/
packed-cache-inl.h 161 array_[Hash(key)] = KeyToUpper(key) | value;
166 return KeyMatch(array_[Hash(key)], key);
170 // As with other code in this class, we touch array_ as few times
175 T entry = array_[Hash(key)];
183 array_[i] = kUseWholeKeys ? (value | KeyToUpper(i)) : value;
233 // array_ is the cache. Its elements are volatile because any
235 volatile T array_[1 << kHashbits]; member in class:PackedCache
  /external/chromium_org/third_party/tcmalloc/vendor/src/
packed-cache-inl.h 159 array_[Hash(key)] = KeyToUpper(key) | value;
164 return KeyMatch(array_[Hash(key)], key);
168 // As with other code in this class, we touch array_ as few times
173 T entry = array_[Hash(key)];
181 array_[i] = kUseWholeKeys ? (value | KeyToUpper(i)) : value;
231 // array_ is the cache. Its elements are volatile because any
233 volatile T array_[1 << kHashbits]; member in class:PackedCache
pagemap.h 67 void** array_; member in class:TCMalloc_PageMap1
73 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
74 memset(array_, 0, sizeof(void*) << BITS);
82 // ensure a number y where array_[y] would be an out-of-bounds
95 return array_[k];
103 array_[k] = v;
110 if (array_[k] != NULL) return array_[k];
  /external/chromium_org/content/common/indexed_db/
indexed_db_key_path.h 35 std::vector<base::string16> array_; member in class:content::IndexedDBKeyPath
indexed_db_key.h 42 const std::vector<IndexedDBKey>& array() const { return array_; }
54 std::vector<IndexedDBKey> array_; member in class:content::IndexedDBKey
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_defs.h 720 : array_(&small_array_[0]),
727 if (array_ != &small_array_[0]) {
728 delete[] array_;
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*));
781 if (array_ != &small_array_[0]) {
782 delete[] array_;
784 array_ = new_array;
789 array_[num - 1] = abbr;
814 return array_[num - 1];
865 return array_[num - 1]
884 const Dwarf_Abbr_DIE** array_; member in class:DwarfAbbrDieArray
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.h 557 explicit scoped_array(C* p = NULL) : array_(p) { }
563 delete[] array_;
570 if (p != array_) {
572 delete[] array_;
573 array_ = p;
581 assert(array_ != NULL);
582 return array_[i];
588 return array_;
594 bool operator==(C* p) const { return array_ == p; }
595 bool operator!=(C* p) const { return array_ != p;
616 C* array_; member in class:google::protobuf::internal::scoped_array
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 511 explicit scoped_array(C* p = NULL) : array_(p) { }
517 delete[] array_;
524 if (p != array_) {
526 delete[] array_;
527 array_ = p;
535 assert(array_ != NULL);
536 return array_[i];
542 return array_;
548 bool operator==(C* p) const { return array_ == p; }
549 bool operator!=(C* p) const { return array_ != p;
570 C* array_; member in class:google::protobuf::internal::scoped_array
    [all...]
  /external/chromium_org/v8/src/
hydrogen-gvn.cc 18 array_(NULL),
63 HInstructionMapListElement* array_; member in class:v8::internal::FINAL
139 array_(zone->NewArray<HInstructionMapListElement>(other->array_size_)),
143 MemCopy(array_, other->array_,
154 HInstruction* instr = array_[i].instr;
159 for (int current = array_[i].next; current != kNil; current = next) {
175 array_[i].next = kept;
178 instr = array_[i].instr;
182 int head = array_[i].next
    [all...]
liveedit.h 239 explicit JSArrayBasedStruct(Handle<JSArray> array) : array_(array) {
243 return array_;
247 return array_->GetIsolate();
252 JSObject::SetElement(array_, field_position, value, NONE, SLOPPY).Assert();
261 isolate(), array_, field_position).ToHandleChecked();
270 Handle<JSArray> array_; member in class:v8::internal::JSArrayBasedStruct
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
system-alloc_unittest.cc 65 void *result = &array_[ptr_];
90 char array_[kArraySize]; member in class:ArraySysAllocator
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
system-alloc_unittest.cc 65 void *result = &array_[ptr_];
90 char array_[kArraySize]; member in class:ArraySysAllocator
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 57 array_->Put(BoundOffset(index), b);
65 return array_->Put(BoundOffset(index),
82 array_->Put(BoundOffset(index),
98 array_->Put(index + i, pad);
161 array_->CopyFrom(is, length);
165 array_->CopyFrom(is);
readable_font_data.cc 61 int32_t b = array_->Get(BoundOffset(index));
72 int32_t b = array_->Get(BoundOffset(index));
86 return array_->Get(BoundOffset(index), b, offset, BoundLength(index, length));
155 return array_->CopyTo(os, BoundOffset(0), Length());
159 return array_->CopyTo(wfd->BoundOffset(0),
160 wfd->array_,
166 return array_->CopyTo(ba, BoundOffset(0), Length());
font_data.h 125 ByteArrayPtr array_; member in class:sfntly::FontData
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 55 array_->Put(BoundOffset(index), b);
63 return array_->Put(BoundOffset(index),
80 array_->Put(BoundOffset(index),
96 array_->Put(index + i, pad);
159 array_->CopyFrom(is, length);
163 array_->CopyFrom(is);
readable_font_data.cc 61 int32_t b = array_->Get(BoundOffset(index));
72 int32_t b = array_->Get(BoundOffset(index));
86 return array_->Get(BoundOffset(index), b, offset, BoundLength(index, length));
155 return array_->CopyTo(os, BoundOffset(0), Length());
159 return array_->CopyTo(wfd->BoundOffset(0),
160 wfd->array_,
166 return array_->CopyTo(ba, BoundOffset(0), Length());
  /external/chromium_org/v8/test/cctest/
test-declarative-accessors.cc 78 isolate_(NULL), array_(new AlignedArray), handle_array_(new HandleArray) {
84 SmartPointer<AlignedArray> array_; member in class:DescriptorTestHelper
179 helper->array_->Reset();
180 helper->array_->As<T*>()[index] = value;
181 VerifyRead(descriptor, internal_field, helper->array_.get(), expected);
227 AlignedArray* array = helper->array_.get();
232 helper->array_->As<T*>()[index] = compare_value & bitmask;
255 AlignedArray* array = helper.array_.get();
277 AlignedArray* array = helper.array_.get();
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
folder_shortcuts_data_model.js 22 this.array_ = [];
65 return this.array_.length;
230 return this.array_.slice(begin, opt_end);
238 return this.array_[index];
249 if (this.array_[i].toURL() === value)
262 if (util.isSameEntry(this.array_[i], value))
308 var oldArray = this.array_.slice(0); // Shallow copy.
312 if (util.isSameEntry(this.array_[i], value))
317 if (this.compare(this.array_[i], value) >= 0) {
318 this.array_.splice(i, 0, value)
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 309 value_.array_ = arrayAllocator()->newArray();
492 value_.array_ = arrayAllocator()->newArrayCopy( *other.value_.array_ );
535 arrayAllocator()->destructArray( value_.array_ );
621 return value_.array_->compare( *(other.value_.array_) ) < 0;
683 return value_.array_->compare( *(other.value_.array_) ) == 0;
1006 return Int( value_.array_->size() );
1047 value_.array_->clear()
    [all...]
  /external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp 303 value_.array_ = arrayAllocator()->newArray();
486 value_.array_ = arrayAllocator()->newArrayCopy( *other.value_.array_ );
529 arrayAllocator()->destructArray( value_.array_ );
615 return value_.array_->compare( *(other.value_.array_) ) < 0;
677 return value_.array_->compare( *(other.value_.array_) ) == 0;
1000 return Int( value_.array_->size() );
1041 value_.array_->clear()
    [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 299 value_.array_ = arrayAllocator()->newArray();
482 value_.array_ = arrayAllocator()->newArrayCopy( *other.value_.array_ );
525 arrayAllocator()->destructArray( value_.array_ );
611 return value_.array_->compare( *(other.value_.array_) ) < 0;
673 return value_.array_->compare( *(other.value_.array_) ) == 0;
996 return Int( value_.array_->size() );
1037 value_.array_->clear()
    [all...]
  /art/runtime/mirror/
string-inl.h 50 SetFieldObject<false, false>(OFFSET_OF_OBJECT_MEMBER(String, array_), new_array);
  /external/chromium_org/testing/gtest/include/gtest/
gtest-test-part.h 140 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest-test-part.h 137 std::vector<TestPartResult> array_; member in class:testing::TestPartResultArray

Completed in 831 milliseconds

12 3 4