Home | History | Annotate | Download | only in payload_generator

Lines Matching refs:WRITER

212     // Blocks with both a reader and writer get an edge
214 blocks[i].writer == Vertex::kInvalidIndex)
217 if (blocks[i].reader == blocks[i].writer)
221 (*graph)[blocks[i].writer].out_edges.find(blocks[i].reader);
222 if (edge_it == (*graph)[blocks[i].writer].out_edges.end()) {
224 (*graph)[blocks[i].writer].out_edges.insert(
226 edge_it = (*graph)[blocks[i].writer].out_edges.find(blocks[i].reader);
227 CHECK(edge_it != (*graph)[blocks[i].writer].out_edges.end());
679 enum BlockField { READER = 0, WRITER, BLOCK_FIELD_COUNT };
685 &Block::reader : &Block::writer;