HomeSort by relevance Sort by last modified time
    Searched refs:kInvalidIndex (Results 1 - 9 of 9) sorted by null

  /system/update_engine/payload_generator/
graph_types.cc 21 const Vertex::Index Vertex::kInvalidIndex = static_cast<Vertex::Index>(-1);
tarjan.cc 31 const vector<Vertex>::size_type kInvalidIndex = -1;
41 it->index = it->lowlink = kInvalidIndex;
50 CHECK_EQ((*graph)[vertex].index, kInvalidIndex);
58 if ((*graph)[vertex_next].index == kInvalidIndex) {
graph_types.h 78 static const Vertex::Index kInvalidIndex;
inplace_generator.h 64 Block() : reader(Vertex::kInvalidIndex), writer(Vertex::kInvalidIndex) {}
159 // If |scratch_vertex| is not kInvalidIndex, removes it from
inplace_generator.cc 213 if (blocks[i].reader == Vertex::kInvalidIndex ||
214 blocks[i].writer == Vertex::kInvalidIndex)
645 if (scratch_vertex != Vertex::kInvalidIndex) {
689 if ((*blocks)[block].*access_type != Vertex::kInvalidIndex) {
710 if (vertex == Vertex::kInvalidIndex) {
749 &graph, Vertex::kInvalidIndex, &blocks, aop.op, aop.name);
754 Vertex::Index scratch_vertex = Vertex::kInvalidIndex;
inplace_generator_unittest.cc 144 // Vertex::kInvalidIndex. This is required by the delta generators.
146 EXPECT_EQ(Vertex::kInvalidIndex, block.reader);
147 EXPECT_EQ(Vertex::kInvalidIndex, block.writer);
488 Vertex::kInvalidIndex));
  /external/v8/src/
global-handles.h 423 return singleton_handles_[singleton] != kInvalidIndex;
442 static const int kInvalidIndex = -1;
global-handles.cc     [all...]
  /external/v8/src/interpreter/
bytecodes.h 357 explicit Register(int index = kInvalidIndex) : index_(index) {}
361 bool is_valid() const { return index_ != kInvalidIndex; }
428 static const int kInvalidIndex = kMaxInt;
    [all...]

Completed in 505 milliseconds