Lines Matching defs:context
432 // context. We don't want to print the whole buffer, because it could be huge.
434 std::queue<EqualMemoryChunk> context;
446 // Always print some context at the start of the buffer.
455 while (context.size() > kContextLines) context.pop();
456 context.push(chunk);
458 // Print context after an error, and at the end of the buffer.
461 // We aren't currently printing context, so separate this context from
468 // Print context (including the current line).
469 while (!context.empty() && (context.front().address < print_context_to)) {
470 uintptr_t address = context.front().address;
478 context.front().expected,
479 context.front().result);
480 context.pop();