Lines Matching defs:to
15 * This is to test kernel if it has a problem with shortening [stack]
24 * with more iterations - could drop to 0KiB.
38 long from, to;
48 if (sscanf(b, "%lx-%lx", &from, &to) != 2) {
56 first = (to - from) / KB;
58 tst_res(TINFO, "mlock [%lx,%lx]", from, to);
59 if (mlock((const void *)from, to - from) == -1)
62 tst_res(TINFO, "munlock [%lx,%lx]", from, to);
63 if (munlock((void *)from, to - from) == -1)
68 last = (to - from) / KB;