HomeSort by: relevance | last modified time | path
    Searched defs:tv2 (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/lib/libc/sys/
t_gettimeofday.c 63 struct timeval tv1, tv2; local in function:ATF_TC_BODY
69 (void)memset(&tv2, 0, sizeof(struct timeval));
72 ATF_REQUIRE(gettimeofday(&tv2, NULL) == 0);
74 if (timercmp(&tv2, &tv1, <) != 0)
  /src/tests/lib/librt/
t_sched.c 224 struct timespec tv1, tv2; local in function:ATF_TC_BODY
230 tv1.tv_sec = tv2.tv_sec = -1;
231 tv1.tv_nsec = tv2.tv_nsec = -1;
234 ATF_REQUIRE(sched_rr_get_interval(getpid(), &tv2) == 0);
237 ATF_REQUIRE(tv2.tv_sec != -1);
240 ATF_REQUIRE(tv2.tv_nsec != -1);
242 ATF_REQUIRE(tv1.tv_sec == tv2.tv_sec);
243 ATF_REQUIRE(tv1.tv_nsec == tv2.tv_nsec);
  /src/sys/external/isc/libsodium/dist/test/default/
pwhash_argon2i.c 107 tv2(void) function in typeref:typename:void
149 printf("[tv2] pwhash failure: [%u]\n", (unsigned int) i);
158 printf("[tv2] pwhash should have failed (0)\n");
162 printf("[tv2] pwhash should have failed (0')\n");
166 printf("[tv2] pwhash should have failed (1)\n");
170 printf("[tv2] pwhash should have failed (2)\n");
174 printf("[tv2] pwhash should have failed (3)\n");
178 printf("[tv2] pwhash with a short output length should have failed\n");
182 printf("[tv2] pwhash with a long password length should have failed\n");
401 tv2();
    [all...]
pwhash_argon2id.c 107 tv2(void) function in typeref:typename:void
149 printf("[tv2] pwhash failure: [%u]\n", (unsigned int) i);
158 printf("[tv2] pwhash should have failed (0)\n");
162 printf("[tv2] pwhash should have failed (1)\n");
166 printf("[tv2] pwhash should have failed (2)\n");
170 printf("[tv2] pwhash should have failed (3)\n");
174 printf("[tv2] pwhash with a short output length should have failed\n");
178 printf("[tv2] pwhash with a long password length should have failed\n");
400 tv2();
pwhash_scrypt.c 117 tv2(void) function in typeref:typename:void
374 tv2();
  /src/sys/dev/pcmcia/
if_ray.c 343 static struct timeval rtv, tv1, tv2, *ttp, *ltp; variable in typeref:struct:timeval
472 ltp = &tv2;
  /src/usr.sbin/moused/
moused.c 2129 struct timeval tv2; local in function:r_timestamp
2144 tv2.tv_sec = rodent.clickthreshold/1000;
2145 tv2.tv_usec = (rodent.clickthreshold%1000)*1000;
2146 timersub(&tv1, &tv2, &tv);
2150 tv2.tv_sec = rodent.button2timeout/1000;
2151 tv2.tv_usec = (rodent.button2timeout%1000)*1000;
2152 timersub(&tv1, &tv2, &tv3);
2195 struct timeval tv2; local in function:r_timeout
2200 tv2.tv_sec = rodent.button2timeout/1000;
2201 tv2.tv_usec = (rodent.button2timeout%1000)*1000
    [all...]

Completed in 18 milliseconds