Lines Matching refs:ccl
189 static ac_uint4 *ccl; variable
681 ccl = (ac_uint4 *) malloc(sizeof(ac_uint4) * 24); in ordered_ccl_insert()
683 ccl = (ac_uint4 *) in ordered_ccl_insert()
684 realloc((char *) ccl, sizeof(ac_uint4) * (ccl_size + 24)); in ordered_ccl_insert()
692 ccl[0] = ccl[1] = c; in ordered_ccl_insert()
693 ccl[2] = ccl_code; in ordered_ccl_insert()
702 if (ccl_code == ccl[ccl_used - 1] && c == ccl[ccl_used - 2] + 1) { in ordered_ccl_insert()
703 ccl[ccl_used - 2] = c; in ordered_ccl_insert()
710 if (c > ccl[ccl_used - 2] + 1 || in ordered_ccl_insert()
711 (c == ccl[ccl_used - 2] + 1 && ccl_code != ccl[ccl_used - 1])) { in ordered_ccl_insert()
712 ccl[ccl_used++] = c; in ordered_ccl_insert()
713 ccl[ccl_used++] = c; in ordered_ccl_insert()
714 ccl[ccl_used++] = ccl_code; in ordered_ccl_insert()
721 for (i = 0; i < ccl_used && c > ccl[i + 1] + 1; i += 3) ; in ordered_ccl_insert()
723 if (ccl_code == ccl[i + 2] && c == ccl[i + 1] + 1) { in ordered_ccl_insert()
727 ccl[i + 1] = c; in ordered_ccl_insert()
729 } else if (c < ccl[i]) { in ordered_ccl_insert()
734 ccl[j] = ccl[j - 3]; in ordered_ccl_insert()
735 ccl[j - 1] = ccl[j - 4]; in ordered_ccl_insert()
736 ccl[j - 2] = ccl[j - 5]; in ordered_ccl_insert()
738 ccl[i] = ccl[i + 1] = c; in ordered_ccl_insert()
739 ccl[i + 2] = ccl_code; in ordered_ccl_insert()
1806 fprintf(out, "0x%08lx", (unsigned long) ccl[i]); in write_cdata()
1841 fwrite((char *) ccl, sizeof(ac_uint4), ccl_used, out); in write_cdata()