Home
last modified time | relevance | path

Searched refs:offsetptr (Results 1 – 3 of 3) sorted by relevance

/external/llvm/test/Transforms/AlignmentFromAssumptions/
Dsimple.ll22 %offsetptr = add i64 %ptrint, 24
23 %maskedptr = and i64 %offsetptr, 31
38 %offsetptr = add i64 %ptrint, 28
39 %maskedptr = and i64 %offsetptr, 31
Dsimple32.ll22 %offsetptr = add i64 %ptrint, 24
23 %maskedptr = and i64 %offsetptr, 31
38 %offsetptr = add i64 %ptrint, 28
39 %maskedptr = and i64 %offsetptr, 31
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dlibcpuset.c351 static int sgetc(const char *inputbuf, int *offsetptr) in sgetc() argument
355 if ((c = inputbuf[*offsetptr]) != 0) { in sgetc()
356 *offsetptr = *offsetptr + 1; in sgetc()
374 static char *slgets(char *buf, int buflen, const char *inputbuf, int *offsetptr) in slgets() argument
380 while ((--buflen > 0) && ((c = sgetc(inputbuf, offsetptr)) >= 0)) { in slgets()
389 while ((c = sgetc(inputbuf, offsetptr)) >= 0) { in slgets()