test 252 lib/drawer.c struct qspline test;
test 260 lib/drawer.c test.start = cspline_getpoint(s, start);
test 261 lib/drawer.c test.control = cspline_getpoint(s, (start+end)/2);
test 262 lib/drawer.c test.end = cspline_getpoint(s, end);
test 265 lib/drawer.c test.control.x = -(test.end.x + test.start.x)/2 + 2*(test.control.x);
test 266 lib/drawer.c test.control.y = -(test.end.y + test.start.y)/2 + 2*(test.control.y);
test 275 lib/drawer.c test.control.x = s->end.x*(3*qpos) + 3*s->control2.x*(2*pos-3*qpos) +
test 277 lib/drawer.c test.control.y = s->end.y*(3*qpos) + 3*s->control2.y*(2*pos-3*qpos) +
test 280 lib/drawer.c test.control.x *= (end-start)/2;
test 281 lib/drawer.c test.control.y *= (end-start)/2;
test 282 lib/drawer.c test.control.x += test.start.x;
test 283 lib/drawer.c test.control.y += test.start.y;
test 285 lib/drawer.c test.control.x *= -(end-start)/2;
test 286 lib/drawer.c test.control.y *= -(end-start)/2;
test 287 lib/drawer.c test.control.x += test.end.x;
test 288 lib/drawer.c test.control.y += test.end.y;
test 299 lib/drawer.c qr1 = qspline_getpoint(&test, pos);
test 309 lib/drawer.c qr2 = qspline_getpoint(&test, (1-pos));
test 348 lib/drawer.c *q++ = test;
test 492 lib/gfxtools.c qspline_t test;
test 501 lib/gfxtools.c test.start = cspline_getpoint(s, start);
test 502 lib/gfxtools.c test.control = cspline_getpoint(s, (start+end)/2);
test 503 lib/gfxtools.c test.end = cspline_getpoint(s, end);
test 506 lib/gfxtools.c test.control.x = -(test.end.x + test.start.x)/2 + 2*(test.control.x);
test 507 lib/gfxtools.c test.control.y = -(test.end.y + test.start.y)/2 + 2*(test.control.y);
test 516 lib/gfxtools.c test.control.x = s->end.x*(3*qpos) + 3*s->control2.x*(2*pos-3*qpos) +
test 518 lib/gfxtools.c test.control.y = s->end.y*(3*qpos) + 3*s->control2.y*(2*pos-3*qpos) +
test 521 lib/gfxtools.c test.control.x *= (end-start)/2;
test 522 lib/gfxtools.c test.control.y *= (end-start)/2;
test 523 lib/gfxtools.c test.control.x += test.start.x;
test 524 lib/gfxtools.c test.control.y += test.start.y;
test 526 lib/gfxtools.c test.control.x *= -(end-start)/2;
test 527 lib/gfxtools.c test.control.y *= -(end-start)/2;
test 528 lib/gfxtools.c test.control.x += test.end.x;
test 529 lib/gfxtools.c test.control.y += test.end.y;
test 540 lib/gfxtools.c qr1 = qspline_getpoint(&test, pos);
test 550 lib/gfxtools.c qr2 = qspline_getpoint(&test, (1-pos));
test 587 lib/gfxtools.c *q++ = test;
test 43 lib/pdf/xpdf/Decrypt.cc Guchar test[32], test2[32];
test 55 lib/pdf/xpdf/Decrypt.cc memcpy(test, ownerPassword->getCString(), len);
test 56 lib/pdf/xpdf/Decrypt.cc memcpy(test + len, passwordPad, 32 - len);
test 58 lib/pdf/xpdf/Decrypt.cc memcpy(test, ownerPassword->getCString(), 32);
test 60 lib/pdf/xpdf/Decrypt.cc md5(test, 32, test);
test 63 lib/pdf/xpdf/Decrypt.cc md5(test, 16, test);
test 67 lib/pdf/xpdf/Decrypt.cc rc4InitKey(test, keyLength, fState);
test 76 lib/pdf/xpdf/Decrypt.cc tmpKey[j] = test[j] ^ i;
test 108 lib/pdf/xpdf/Decrypt.cc Guchar test[32];
test 153 lib/pdf/xpdf/Decrypt.cc test[i] = rc4DecryptByte(fState, &fx, &fy, userKey->getChar(i));
test 155 lib/pdf/xpdf/Decrypt.cc ok = memcmp(test, passwordPad, 32) == 0;
test 157 lib/pdf/xpdf/Decrypt.cc memcpy(test, userKey->getCString(), 32);
test 165 lib/pdf/xpdf/Decrypt.cc test[j] = rc4DecryptByte(fState, &fx, &fy, test[j]);
test 171 lib/pdf/xpdf/Decrypt.cc ok = memcmp(test, buf, 16) == 0;
test 238 lib/pdf/xpdf/Splash.cc if (state->screen->test(pipe->x, pipe->y, cResult0)) {
test 492 lib/pdf/xpdf/Splash.cc if (state->screen->test(pipe->x, pipe->y, cResult0)) {
test 606 lib/pdf/xpdf/Splash.cc if (noClip || state->clip->test(x, y)) {
test 690 lib/pdf/xpdf/Splash.cc if (state->clip->test(x, y)) {
test 1724 lib/pdf/xpdf/Splash.cc if (state->clip->test(x1, y1)) {
test 1749 lib/pdf/xpdf/Splash.cc if (state->clip->test(x1, y1)) {
test 2793 lib/pdf/xpdf/Splash.cc if (noClip || state->clip->test(xDest + x, yDest + y)) {
test 2812 lib/pdf/xpdf/Splash.cc if (noClip || state->clip->test(xDest + x, yDest + y)) {
test 262 lib/pdf/xpdf/SplashClip.cc if (!scanners[i]->test(x * splashAASize, y * splashAASize)) {
test 268 lib/pdf/xpdf/SplashClip.cc if (!scanners[i]->test(x, y)) {
test 62 lib/pdf/xpdf/SplashClip.h GBool test(int x, int y);
test 33 lib/pdf/xpdf/SplashScreen.h int test(int x, int y, Guchar value);
test 45 lib/pdf/xpdf/SplashXPathScanner.h GBool test(int x, int y);
test 80 lib/python/tagmap.c PyObject*test = PyDict_GetItem(tagmap->id2obj,id);
test 82 lib/python/tagmap.c if(test == 0) {