Searched refs:nRate (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/sqlite3/
H A Dshell.c1467 unsigned nRate; /* Bytes of input accepted per Keccak iteration */ member in struct:SHA3Context
1800 p->nRate = (1600 - ((iSize + 31)&~31)*2)/8;
1802 p->nRate = (1600 - 2*256)/8;
1837 if( p->nLoaded>=p->nRate ){
1853 if( p->nLoaded==p->nRate ){
1867 if( p->nLoaded==p->nRate-1 ){
1874 p->nLoaded = p->nRate - 1;
1877 for(i=0; i<p->nRate; i++){
1878 p->u.x[i+p->nRate] = p->u.x[i^p->ixMask];
1880 return &p->u.x[p->nRate];
[all...]

Completed in 89 milliseconds