Lines Matching refs:ec2
3254 static Word RCEC__cmp_by_frames ( RCEC* ec1, RCEC* ec2 ) {
3257 tl_assert(ec2 && ec2->magic == RCEC_MAGIC);
3258 if (ec1->frames_hash < ec2->frames_hash) return -1;
3259 if (ec1->frames_hash > ec2->frames_hash) return 1;
3261 if (ec1->frames[i] < ec2->frames[i]) return -1;
3262 if (ec1->frames[i] > ec2->frames[i]) return 1;
3303 RCEC *ec0, *ec1, *ec2;
3309 ec2 = NULL;
3312 ec2 = ec1;
3317 if (ec0 != NULL && ec1 != NULL && ec2 != NULL) {
3319 /* ec0 points to ec, ec1 to its predecessor, and ec2 to ec1's
3322 tl_assert(ec2->next == ec1);
3325 ec2->next = ec0;
3330 if (ec0 != NULL && ec1 != NULL && ec2 == NULL) {