Lines Matching defs:ptr

2645     DiffEntry* ptr = diffs;
2654 ptr->method1 = methods1[i];
2655 ptr->method2 = methods2[match];
2657 uint64_t e1 = ptr->method1->elapsedExclusive;
2658 uint64_t e2 = ptr->method2->elapsedExclusive;
2660 ptr->differenceExclusive = e2 - e1;
2661 ptr->differenceExclusivePercentage = ((double)e2 / (double)e1) * 100.0;
2664 uint64_t i1 = ptr->method1->elapsedInclusive;
2665 uint64_t i2 = ptr->method2->elapsedInclusive;
2667 ptr->differenceInclusive = i2 - i1;
2668 ptr->differenceInclusivePercentage = ((double)i2 / (double)i1) * 100.0;
2675 ptr++;
2680 ptr->method1 = NULL;
2681 ptr->method2 = NULL;
2684 ptr = diffs;
2704 while (ptr->method1 != NULL && ptr->method2 != NULL) {
2707 className = htmlEscape(ptr->method1->className, classBuf, HTML_BUFSIZE);
2708 methodName = htmlEscape(ptr->method1->methodName, methodBuf, HTML_BUFSIZE);
2713 printf("%lld ", ptr->method1->elapsedExclusive);
2716 printf("%llu ", ptr->method2->elapsedExclusive);
2719 printf("%lld ", ptr->differenceExclusive);
2722 printf("%.2f\n", ptr->differenceExclusivePercentage);
2725 printf("%d\n", ptr->method1->numCalls[0]);
2728 printf("%d\n", ptr->method2->numCalls[0]);
2731 ptr++;
2745 ptr = diffs;
2747 while (ptr->method1 != NULL && ptr->method2 != NULL) {
2750 className = htmlEscape(ptr->method1->className, classBuf, HTML_BUFSIZE);
2751 methodName = htmlEscape(ptr->method1->methodName, methodBuf, HTML_BUFSIZE);
2756 printf("%lld ", ptr->method1->elapsedInclusive);
2759 printf("%llu ", ptr->method2->elapsedInclusive);
2762 printf("%lld ", ptr->differenceInclusive);
2765 printf("%.2f\n", ptr->differenceInclusivePercentage);
2768 printf("%d\n", ptr->method1->numCalls[0]);
2771 printf("%d\n", ptr->method2->numCalls[0]);
2774 ptr++;