Home | History | Annotate | Download | only in engine

Lines Matching defs:bytes

929 	ssize_t bytes, bits;
936 bytes = (bits + 7) / 8;
938 b = malloc(bytes);
941 memset(b, 0, bytes);
948 if ((j + k) >= bytes)
962 int i, bytes;
964 bytes = (crp->crp_nbits + 7) / 8;
966 if (bytes == 0)
969 if ((pd = (u_int8_t *) malloc(bytes)) == NULL)
972 for (i = 0; i < bytes; i++)
973 pd[i] = crp->crp_p[bytes - i - 1];
975 BN_bin2bn(pd, bytes, a);