Lines Matching defs:b2
62 buf_cmp(const struct buf *b1, const struct buf *b2, int sortby)
65 if (buf_inorder(b2, b1, sortby)) {
66 return 1; /* b1 > b2 */
68 if (buf_inorder(b1, b2, sortby)) {
69 return -1; /* b1 < b2 */
80 const struct buf * const b2 = n2;
82 const int diff = buf_cmp(b1, b2, sortby);
95 if (b1 > b2) {
98 if (b1 < b2) {
115 const struct buf *b2 = &tmp;
118 return buf_cmp(b1, b2, sortby);