Browse Subversion Repository
Diff of /branches/mty-makai/mty.c
Parent Directory
| Revision Log
| Patch
| 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 |
/* 鍵のセット */ |
/* 鍵のセット */ |
| 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 |
|
|
| |