Symbol: BUFFER_SIZE
crypto/openssl/test/afalgtest.c
32
unsigned char ebuf[BUFFER_SIZE + 32];
crypto/openssl/test/afalgtest.c
33
unsigned char dbuf[BUFFER_SIZE + 32];
crypto/openssl/test/afalgtest.c
41
static const unsigned char in[BUFFER_SIZE] = "\x53\x69\x6e\x67\x6c\x65\x20\x62\x6c\x6f\x63\x6b\x20\x6d\x73\x67"
crypto/openssl/test/afalgtest.c
43
static const unsigned char encresult_128[BUFFER_SIZE] = "\xe3\x53\x77\x9c\x10\x79\xae\xb8\x27\x08\x94\x2d\xbe\x77\x18\x1a"
crypto/openssl/test/afalgtest.c
45
static const unsigned char encresult_192[BUFFER_SIZE] = "\xf7\xe4\x26\xd1\xd5\x4f\x8f\x39\xb1\x9e\xe0\xdf\x61\xb9\xc2\x55"
crypto/openssl/test/afalgtest.c
47
static const unsigned char encresult_256[BUFFER_SIZE] = "\xa0\x76\x85\xfd\xc1\x65\x71\x9d\xc7\xe9\x13\x6e\xae\x55\x49\xb4"
crypto/openssl/test/afalgtest.c
80
|| !TEST_true(EVP_CipherUpdate(ctx, ebuf, &encl, in, BUFFER_SIZE))
crypto/openssl/test/afalgtest.c
85
if (!TEST_mem_eq(enc_result, BUFFER_SIZE, ebuf, BUFFER_SIZE))
crypto/openssl/test/afalgtest.c
95
if (!TEST_int_eq(decl, BUFFER_SIZE)
crypto/openssl/test/afalgtest.c
96
|| !TEST_mem_eq(dbuf, BUFFER_SIZE, in, BUFFER_SIZE))
crypto/openssl/test/bio_comp_test.c
103
for (i = 0; i < BUFFER_SIZE; i++)
crypto/openssl/test/bio_comp_test.c
108
if (!TEST_int_gt(RAND_bytes(original, BUFFER_SIZE), 0))
crypto/openssl/test/bio_comp_test.c
86
original = OPENSSL_malloc(BUFFER_SIZE);
crypto/openssl/test/bio_comp_test.c
87
result = OPENSSL_malloc(BUFFER_SIZE);
crypto/openssl/test/bio_comp_test.c
95
memset(original, 0, BUFFER_SIZE);
crypto/openssl/test/bio_comp_test.c
99
memset(original, 1, BUFFER_SIZE);
sys/dev/ocs_fc/ocs_mgmt.c
2040
result_buf = ocs_malloc(ocs, BUFFER_SIZE, OCS_M_ZERO);
sys/dev/ocs_fc/ocs_mgmt.c
2041
bytes_left = BUFFER_SIZE;
sys/dev/ocs_fc/ocs_mgmt.c
2054
ocs_free(ocs, result_buf, BUFFER_SIZE);