Lines Matching defs:offset
14 // as a result, so the offset can not be -int(BasePtr).
16 // So in other words, the offset can not change "null status" of the pointer,
40 char *var_var(char *base, unsigned long offset) {
72 return base + offset;
83 static const unsigned long offset = 0;
85 return base + offset;
111 static const unsigned long offset = 1;
113 return base + offset;
139 static const unsigned long offset = -1;
141 return base + offset;
146 char *nullptr_var(unsigned long offset) {
174 return base + offset;
182 static const unsigned long offset = 0;
184 return base + offset;
201 static const unsigned long offset = 1;
203 return base + offset;
220 static const unsigned long offset = -1;
222 return base + offset;
227 char *one_var(unsigned long offset) {
256 return base + offset;
264 static const unsigned long offset = 0;
266 return base + offset;
284 static const unsigned long offset = 1;
286 return base + offset;
304 static const unsigned long offset = -1;
306 return base + offset;
311 char *allones_var(unsigned long offset) {
340 return base + offset;
348 static const unsigned long offset = 0;
350 return base + offset;
368 static const unsigned long offset = 1;
370 return base + offset;
388 static const unsigned long offset = -1;
390 return base + offset;
396 char *void_ptr(char *base, unsigned long offset) {
398 char *void_ptr(void *base, unsigned long offset) {
431 return base + offset;