Searched refs:testbuf (Results 1 – 5 of 5) sorted by relevance
/third_party/optimized-routines/math/test/ |
D | mathtest.c | 709 testdetail parsetest(char *testbuf, testdetail oldtest) { in parsetest() argument 720 if (verbose) printf("Parsing line: %s\n", testbuf); in parsetest() 721 while (*testbuf && isspace(*testbuf)) testbuf++; in parsetest() 722 if (testbuf[0] == ';' || testbuf[0] == '#' || testbuf[0] == '!' || in parsetest() 723 testbuf[0] == '>' || testbuf[0] == '\0') { in parsetest() 730 if (*testbuf == '+') { in parsetest() 736 testbuf++; in parsetest() 744 p = strtok(testbuf, " \t"); in parsetest() 1496 char testbuf[512], linebuf[512]; in runtests() local 1503 while (fgets(testbuf, sizeof(testbuf), fp)) { in runtests() [all …]
|
/third_party/musl/src/crypt/ |
D | crypt_sha256.c | 313 char testbuf[128]; in __crypt_sha256() local 318 q = sha256crypt(testkey, testsetting, testbuf); in __crypt_sha256() 319 if (!p || q != testbuf || memcmp(testbuf, testhash, sizeof testhash)) in __crypt_sha256()
|
D | crypt_md5.c | 276 char testbuf[64]; in __crypt_md5() local 281 q = md5crypt(testkey, testsetting, testbuf); in __crypt_md5() 282 if (!p || q != testbuf || memcmp(testbuf, testhash, sizeof testhash)) in __crypt_md5()
|
D | crypt_sha512.c | 362 char testbuf[128]; in __crypt_sha512() local 367 q = sha512crypt(testkey, testsetting, testbuf); in __crypt_sha512() 368 if (!p || q != testbuf || memcmp(testbuf, testhash, sizeof testhash)) in __crypt_sha512()
|
/third_party/ltp/testcases/kernel/syscalls/setrlimit/ |
D | setrlimit01.c | 259 char *testbuf = NULL; in test4() local 260 strcpy(testbuf, "abcd"); in test4()
|