Home | History | Annotate | Download | only in processor

Lines Matching refs:start_col

66 // pass 0 for |start_col|.  For registers in a set, pass the most recent
72 static int PrintRegister(const char *name, uint32_t value, int start_col) {
76 if (start_col + static_cast<ssize_t>(strlen(buffer)) > kMaxWidth) {
77 start_col = 0;
82 return start_col + strlen(buffer);
86 static int PrintRegister64(const char *name, uint64_t value, int start_col) {
90 if (start_col + static_cast<ssize_t>(strlen(buffer)) > kMaxWidth) {
91 start_col = 0;
96 return start_col + strlen(buffer);