Lines Matching refs:size2
416 *size2; /* Size from saved */ in test_ppd_cache() local
455 for (i = pc->num_sizes, size = pc->sizes, size2 = pc2->sizes; in test_ppd_cache()
457 i --, size ++, size2 ++) in test_ppd_cache()
459 if (strcmp(size2->map.pwg, size->map.pwg) || in test_ppd_cache()
460 strcmp(size2->map.ppd, size->map.ppd) || in test_ppd_cache()
461 size2->width != size->width || in test_ppd_cache()
462 size2->length != size->length || in test_ppd_cache()
463 size2->left != size->left || in test_ppd_cache()
464 size2->bottom != size->bottom || in test_ppd_cache()
465 size2->right != size->right || in test_ppd_cache()
466 size2->top != size->top) in test_ppd_cache()
471 if (strcmp(size->map.pwg, size2->map.pwg)) in test_ppd_cache()
473 "size->map.pwg=\"%s\"\n", size2->map.pwg, size->map.pwg); in test_ppd_cache()
475 if (strcmp(size2->map.ppd, size->map.ppd)) in test_ppd_cache()
477 "size->map.ppd=\"%s\"\n", size2->map.ppd, size->map.ppd); in test_ppd_cache()
479 if (size2->width != size->width) in test_ppd_cache()
481 size2->width, size->width); in test_ppd_cache()
483 if (size2->length != size->length) in test_ppd_cache()
485 size2->length, size->length); in test_ppd_cache()
487 if (size2->left != size->left) in test_ppd_cache()
489 size2->left, size->left); in test_ppd_cache()
491 if (size2->bottom != size->bottom) in test_ppd_cache()
493 size2->bottom, size->bottom); in test_ppd_cache()
495 if (size2->right != size->right) in test_ppd_cache()
497 size2->right, size->right); in test_ppd_cache()
499 if (size2->top != size->top) in test_ppd_cache()
501 size2->top, size->top); in test_ppd_cache()