Home | History | Annotate | Download | only in tpm2

Lines Matching defs:bytes

99     INT16                          bytes;          // number of bytes to produce
123 bytes = once ? hLen : (INT16)((sizeInBits + 7) / 8);
124 // Generate required bytes
125 for (; bytes > 0; stream = &stream[hLen], bytes = bytes - hLen)
127 if(bytes < hLen)
128 hLen = bytes;
154 // to the smaller of hLen and bytes. This causes bytes to decrement
181 INT16 bytes; // number of bytes to generate
188 bytes = (INT16)((sizeInBits + 7) / 8);
192 // Generate required bytes
205 for (; bytes > 0; stream = &stream[hLen], bytes = bytes - hLen)
207 if(bytes < hLen)
208 hLen = bytes;
233 // Compute Hash. hLen was changed to be the smaller of bytes or hLen