HomeSort by: relevance | last modified time | path
    Searched defs:stretch (Results 1 - 9 of 9) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/modes/
ocb128.c 217 unsigned char stretch[24], nonce[16]; local
242 /* Stretch = Ktop || (Ktop[1..64] xor Ktop[9..72]) */
243 memcpy(stretch, ktop, 16);
244 ocb_block_xor(ktop, ktop + 1, 8, stretch + 16);
249 /* Offset_0 = Stretch[1+bottom..128+bottom] */
251 ocb_block_lshift(stretch + (bottom / 8), shift, ctx->sess.offset.c);
254 ctx->sess.offset.c[15] |= (*(stretch + (bottom / 8) + 16) & mask) >> (8 - shift);
  /src/crypto/external/bsd/openssl/dist/crypto/modes/
ocb128.c 221 unsigned char stretch[24], nonce[16]; local
246 /* Stretch = Ktop || (Ktop[1..64] xor Ktop[9..72]) */
247 memcpy(stretch, ktop, 16);
248 ocb_block_xor(ktop, ktop + 1, 8, stretch + 16);
253 /* Offset_0 = Stretch[1+bottom..128+bottom] */
255 ocb_block_lshift(stretch + (bottom / 8), shift, ctx->sess.offset.c);
259 (*(stretch + (bottom / 8) + 16) & mask) >> (8 - shift);
  /src/crypto/external/bsd/openssl.old/dist/crypto/modes/
ocb128.c 221 unsigned char stretch[24], nonce[16]; local
246 /* Stretch = Ktop || (Ktop[1..64] xor Ktop[9..72]) */
247 memcpy(stretch, ktop, 16);
248 ocb_block_xor(ktop, ktop + 1, 8, stretch + 16);
253 /* Offset_0 = Stretch[1+bottom..128+bottom] */
255 ocb_block_lshift(stretch + (bottom / 8), shift, ctx->sess.offset.c);
259 (*(stretch + (bottom / 8) + 16) & mask) >> (8 - shift);
  /src/games/snake/snake/
snake.c 133 static int stretch(const struct point *);
713 if (!stretch(&money))
714 if (!stretch(&finish)) {
742 stretch(const struct point *ps) function
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
vdev_queue.c 653 boolean_t stretch; local
727 stretch = B_FALSE;
735 stretch = B_TRUE;
741 if (stretch) {
  /src/sys/compat/linux/common/
linux_fdio.h 50 u_int stretch; member in struct:linux_floppy_struct
  /src/external/gpl3/binutils/dist/gas/
write.c 2544 relax_frag (segT segment, fragS *fragP, long stretch)
2578 will move by STRETCH just as we did, unless there is an
2580 well absorb any STRETCH, and we don't want to choose a larger
2583 know we'll be doing another pass if STRETCH is non-zero. */
2585 if (stretch != 0
2589 if (stretch < 0
2591 target += stretch;
2594 far that omitting STRETCH would make the branch
2795 offsetT stretch; local
2798 stretch because one piece of code may have grown and anothe
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
write.c 2542 relax_frag (segT segment, fragS *fragP, long stretch)
2576 will move by STRETCH just as we did, unless there is an
2578 well absorb any STRETCH, and we don't want to choose a larger
2581 know we'll be doing another pass if STRETCH is non-zero. */
2583 if (stretch != 0
2587 if (stretch < 0
2589 target += stretch;
2592 far that omitting STRETCH would make the branch
2793 offsetT stretch; local
2796 stretch because one piece of code may have grown and anothe
    [all...]
  /src/external/mit/expat/dist/lib/
xmlparse.c 7721 const size_t stretch = sizeof(XML_Char); /* can be 4 bytes */ local
7726 if (blockSize > (int)(INT_MAX / stretch))
7730 const int stretchedBlockSize = blockSize * (int)stretch;

Completed in 50 milliseconds