Home | History | Annotate | Download | only in helgrind

Lines Matching refs:ec2

4012 static Word RCEC__cmp_by_frames ( RCEC* ec1, RCEC* ec2 ) {
4015 tl_assert(ec2 && ec2->magic == RCEC_MAGIC);
4016 if (ec1->frames_hash < ec2->frames_hash) return -1;
4017 if (ec1->frames_hash > ec2->frames_hash) return 1;
4019 if (ec1->frames[i] < ec2->frames[i]) return -1;
4020 if (ec1->frames[i] > ec2->frames[i]) return 1;
4061 RCEC *ec0, *ec1, *ec2;
4067 ec2 = NULL;
4070 ec2 = ec1;
4075 if (ec0 != NULL && ec1 != NULL && ec2 != NULL) {
4077 /* ec0 points to ec, ec1 to its predecessor, and ec2 to ec1's
4080 tl_assert(ec2->next == ec1);
4083 ec2->next = ec0;
4088 if (ec0 != NULL && ec1 != NULL && ec2 == NULL) {