Lines Matching defs:from
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;