/bootable/recovery/otautil/ |
rangeset.cpp | 192 void SortedRangeSet::Insert(const Range& to_insert) { 193 SortedRangeSet rs({ to_insert }); 209 Range to_insert = temp.front(); local 211 if (it->first <= to_insert.second) { 212 to_insert.second = std::max(to_insert.second, it->second); 214 ranges_.push_back(to_insert); 215 blocks_ += (to_insert.second - to_insert.first); 216 to_insert = *it [all...] |
/external/v8/src/compiler/ |
basic-block-instrumentor.cc | 90 Node* to_insert[kArraySize] = {zero, one, base, load, inc, store}; local 93 block->InsertNodes(insertion_point, &to_insert[insertion_start], 94 &to_insert[kArraySize]); 97 schedule->SetBlockForNode(block, to_insert[i]);
|
register-allocator.cc | [all...] |
/external/adhd/scripts/ |
ini_editor.py | 252 to_insert = Section.ParseLine(line) 253 if not to_insert: 256 if isinstance(to_insert, Port): 257 self.InsertPort(to_insert) 259 if isinstance(to_insert, NonPort): 260 self.InsertNonPort(to_insert)
|
/bootable/recovery/otautil/include/otautil/ |
rangeset.h | 147 void Insert(const Range& to_insert);
|
/art/compiler/optimizing/ |
nodes_test.cc | 87 HInstruction* to_insert = new (GetAllocator()) HNullCheck(parameter1, 0); local 88 entry->InsertInstructionBefore(to_insert, parameter2);
|
/external/jemalloc_new/include/jemalloc/internal/ |
extent_inlines.h | 365 extent_t *to_insert) { 366 ql_after_insert(to_remove, to_insert, ql_link);
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
hlo_rematerialization.cc | 203 // Insert instruction 'to_insert' immediately before the earliest instruction 216 void InsertBeforeInstructions(Item* to_insert, 218 VLOG(3) << "InsertBeforeInstructions: " << to_insert->instruction->name() 251 return InsertBefore(to_insert, min_position_item); [all...] |