Lines Matching full:diff
3 T* next(T* ptr, const U& diff);
6 T* next(T* ptr, const U& diff) {
7 return ptr + diff;
10 void test(int *iptr, float *fptr, int diff) {
12 iptr = next(iptr, diff);
15 fptr = next(fptr, diff);
19 T* next(T* ptr, const U& diff);
21 void test2(int *iptr, double *dptr, int diff) {
22 iptr = next(iptr, diff);
25 dptr = next(dptr, diff);