Lines Matching refs:bptr
1085 struct diff_block *block_list, **block_list_end, *bptr; local
1090 bptr = 0; /* Pacify `gcc -W'. */
1094 bptr = ALLOCATE (1, struct diff_block);
1095 bptr->lines[0] = bptr->lines[1] = 0;
1096 bptr->lengths[0] = bptr->lengths[1] = 0;
1098 dt = process_diff_control (&scan_diff, bptr);
1116 bptr->ranges[0][0]++;
1119 bptr->ranges[1][0]++;
1132 int numlines = D_NUMLINES (bptr, 0);
1133 bptr->lines[0] = ALLOCATE (numlines, char *);
1134 bptr->lengths[0] = ALLOCATE (numlines, size_t);
1137 &(bptr->lines[0][i]),
1138 &(bptr->lengths[0][i]),
1155 int numlines = D_NUMLINES (bptr, 1);
1156 bptr->lines[1] = ALLOCATE (numlines, char *);
1157 bptr->lengths[1] = ALLOCATE (numlines, size_t);
1160 &(bptr->lines[1][i]),
1161 &(bptr->lengths[1][i]),
1167 *block_list_end = bptr;
1168 block_list_end = &bptr->next;
1172 *last_block = bptr;