Lines Matching refs:cxt2
850 Context* cxt2 = bbcc2->cxt; in my_cmp() local
853 if (cxt1->fn[0]->file->obj != cxt2->fn[0]->file->obj) in my_cmp()
854 return cxt1->fn[0]->file->obj - cxt2->fn[0]->file->obj; in my_cmp()
856 if (cxt1->fn[0]->file != cxt2->fn[0]->file) in my_cmp()
857 return cxt1->fn[0]->file - cxt2->fn[0]->file; in my_cmp()
859 if (cxt1->fn[0] != cxt2->fn[0]) in my_cmp()
860 return cxt1->fn[0] - cxt2->fn[0]; in my_cmp()
865 while((off < cxt1->size) && (off < cxt2->size)) { in my_cmp()
867 fn_node* ffn2 = cxt2->fn[off]; in my_cmp()
874 if (cxt1->size > cxt2->size) return 1; in my_cmp()
875 else if (cxt1->size < cxt2->size) return -1; in my_cmp()