Home | History | Annotate | Download | only in engine

Lines Matching defs:bytes

898 	ssize_t bytes, bits;
905 bytes = (bits + 7) / 8;
907 b = malloc(bytes);
910 memset(b, 0, bytes);
917 if ((j + k) >= bytes)
931 int i, bytes;
933 bytes = (crp->crp_nbits + 7) / 8;
935 if (bytes == 0)
938 if ((pd = (u_int8_t *) malloc(bytes)) == NULL)
941 for (i = 0; i < bytes; i++)
942 pd[i] = crp->crp_p[bytes - i - 1];
944 BN_bin2bn(pd, bytes, a);