Develop and Download Open Source Software

Browse Subversion Repository

Diff of /branches/mty-makai/mty.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 120 by notanpe, Sat Apr 14 12:22:49 2007 UTC revision 121 by chapuni, Sun Apr 15 06:23:51 2007 UTC
# Line 877  main(int argc, char *argv[]) Line 877  main(int argc, char *argv[])
877    /* 探索ループだぞっと */    /* 探索ループだぞっと */
878    for (;;)    for (;;)
879          {          {
880            int32_t cnt;            uint64_t cnt;
881              int cnt1, cnt2;
882            int k, kk;            int k, kk;
883    
884            /* 鍵のセット */            /* 鍵のセット */
# Line 894  main(int argc, char *argv[]) Line 895  main(int argc, char *argv[])
895            cnt = CALL_CRYPT64(code, key64.k, param64.lr);            cnt = CALL_CRYPT64(code, key64.k, param64.lr);
896    
897  #if DEBUG>=1  #if DEBUG>=1
898            if (mincnt > cnt && cnt > 0)            cnt2 = (int32_t)(cnt >> 32);
899              cnt1 = (int32_t)cnt;
900              if (mincnt > cnt1 && cnt1 > 0)
901                  {                  {
902                    mincnt = cnt;                    mincnt = cnt1;
903                    if (cr)                    if (cr)
904                          fprintf(stderr, "\n");                          fprintf(stderr, "\n");
905                    cr = 0;                    cr = 0;
906                    fprintf(stderr, "cycle=%d\n", (int)cnt);                    fprintf(stderr, "cycle=%6d/%6d\n", cnt1, cnt2);
907                  }                  }
908  #endif  #endif
909    

Legend:
Removed from v.120  
changed lines
  Added in v.121

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26