Lines Matching defs:bptr
932 struct diff_block *block_list, **block_list_end, *bptr;
934 / MIN (sizeof *bptr->lines[1],
935 sizeof *bptr->lengths[1]));
940 bptr = 0; /* Pacify `gcc -W'. */
944 bptr = xmalloc (sizeof *bptr);
945 bptr->lines[0] = bptr->lines[1] = 0;
946 bptr->lengths[0] = bptr->lengths[1] = 0;
948 dt = process_diff_control (&scan_diff, bptr);
965 bptr->ranges[0][0]++;
968 bptr->ranges[1][0]++;
981 lin numlines = D_NUMLINES (bptr, 0);
984 bptr->lines[0] = xmalloc (numlines * sizeof *bptr->lines[0]);
985 bptr->lengths[0] = xmalloc (numlines * sizeof *bptr->lengths[0]);
988 &(bptr->lines[0][i]),
989 &(bptr->lengths[0][i]),
1006 lin numlines = D_NUMLINES (bptr, 1);
1009 bptr->lines[1] = xmalloc (numlines * sizeof *bptr->lines[1]);
1010 bptr->lengths[1] = xmalloc (numlines * sizeof *bptr->lengths[1]);
1013 &(bptr->lines[1][i]),
1014 &(bptr->lengths[1][i]),
1020 *block_list_end = bptr;
1021 block_list_end = &bptr->next;
1025 *last_block = bptr;