Home
last modified time | relevance | path

Searched refs:BLOB_SIZE (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/tests/qtest/
H A Di440fx-test.c281 #define BLOB_SIZE ((size_t)65536) macro
295 g_autofree uint8_t *buf = g_malloc(BLOB_SIZE); in create_blob_file()
301 for (i = 0; i < BLOB_SIZE; i++) { in create_blob_file()
305 g_file_set_contents(pathname, (char *)buf, BLOB_SIZE, &error); in create_blob_file()
340 buf = g_malloc0(BLOB_SIZE); in test_i440fx_firmware()
341 memread(0x100000000ULL - BLOB_SIZE, buf, BLOB_SIZE); in test_i440fx_firmware()
342 for (i = 0; i < BLOB_SIZE; ++i) { in test_i440fx_firmware()
347 memset(buf, 0, BLOB_SIZE); in test_i440fx_firmware()
348 isa_bios_size = ISA_BIOS_MAXSZ < BLOB_SIZE ? ISA_BIOS_MAXSZ : BLOB_SIZE; in test_i440fx_firmware()
352 (uint8_t)((BLOB_SIZE - isa_bios_size) + i)); in test_i440fx_firmware()
/openbmc/u-boot/drivers/crypto/fsl/
H A Dfsl_blob.c51 size = ALIGN(BLOB_SIZE(len), ARCH_DMA_MINALIGN); in blob_decap()
135 size = ALIGN(BLOB_SIZE(len), ARCH_DMA_MINALIGN); in blob_encap()
/openbmc/u-boot/arch/arm/mach-imx/
H A Dcmd_dek.c72 dst_ptr = map_sysmem(dst_addr, BLOB_SIZE(len/8)); in do_dek_blob()
/openbmc/u-boot/include/
H A Dfsl_sec.h228 #define BLOB_SIZE(x) ((x) + 32 + 16) /* Blob buffer size */ macro