HomeSort by relevance Sort by last modified time
    Searched refs:nRate (Results 1 - 2 of 2) sorted by null

  /external/sqlite/dist/orig/
shell.c 742 unsigned nRate; /* Bytes of input accepted per Keccak iteration */
1079 p->nRate = (1600 - ((iSize + 31)&~31)*2)/8;
1081 p->nRate = (1600 - 2*256)/8;
1116 if( p->nLoaded>=p->nRate ){
1132 if( p->nLoaded==p->nRate ){
1146 if( p->nLoaded==p->nRate-1 ){
1153 p->nLoaded = p->nRate - 1;
1156 for(i=0; i<p->nRate; i++){
1157 p->u.x[i+p->nRate] = p->u.x[i^p->ixMask];
1159 return &p->u.x[p->nRate];
    [all...]
  /external/sqlite/dist/
shell.c 748 unsigned nRate; /* Bytes of input accepted per Keccak iteration */
1085 p->nRate = (1600 - ((iSize + 31)&~31)*2)/8;
1087 p->nRate = (1600 - 2*256)/8;
1122 if( p->nLoaded>=p->nRate ){
1138 if( p->nLoaded==p->nRate ){
1152 if( p->nLoaded==p->nRate-1 ){
1159 p->nLoaded = p->nRate - 1;
1162 for(i=0; i<p->nRate; i++){
1163 p->u.x[i+p->nRate] = p->u.x[i^p->ixMask];
1165 return &p->u.x[p->nRate];
    [all...]

Completed in 91 milliseconds