Lines Matching refs:end
112 * end up intercepting some system calls for some reason, or modify
145 static const char *syscall_str(int msb, int start, int end)
160 if (start == end)
165 type, msb, lsb, lsb + (end-start));
170 static unsigned int _check_for(int msb, int start, int end, long long expect,
176 if (start != end)
179 for (int nr = start; nr <= end; nr++) {
190 if (start != end)
194 if (start != end)
196 syscall_str(msb, start, end),
200 syscall_str(msb, start, end), expect_str);
208 #define check_for(msb,start,end,expect) \
209 _check_for(msb,start,end,expect,#expect)