HomeSort by relevance Sort by last modified time
    Searched refs:VB2_WORKBUF_ALIGN (Results 1 - 21 of 21) sorted by null

  /external/vboot_reference/firmware/2lib/
2common.c 60 if (vb2_align(&wb->buf, &wb->size, VB2_WORKBUF_ALIGN, 0))
65 * Round up a number to a multiple of VB2_WORKBUF_ALIGN
72 return (v + VB2_WORKBUF_ALIGN - 1) & ~(VB2_WORKBUF_ALIGN - 1);
2misc.c 130 if (!vb2_aligned(ctx->workbuf, VB2_WORKBUF_ALIGN))
  /external/vboot_reference/tests/
vb2_common_tests.c 66 uint64_t buf[8] __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
71 * VB2_WORKBUF_ALIGN == 16 */
79 TEST_EQ(vb2_offset_of(p0, wb.buf), VB2_WORKBUF_ALIGN,
81 TEST_EQ(wb.size, 64 - VB2_WORKBUF_ALIGN + 4, " size");
vb20_misc_tests.c 21 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
187 (wb_used_before + (VB2_WORKBUF_ALIGN - 1)) &
188 ~(VB2_WORKBUF_ALIGN - 1),
283 (wb_used_before + (VB2_WORKBUF_ALIGN - 1)) &
284 ~(VB2_WORKBUF_ALIGN - 1),
vb20_rsa_padding_tests.c 46 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
79 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb20_api_tests.c 21 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
245 (wb_used_before + (VB2_WORKBUF_ALIGN - 1)) &
246 ~(VB2_WORKBUF_ALIGN - 1),
vb21_api_tests.c 27 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
214 (wb_used_before + (VB2_WORKBUF_ALIGN - 1)) &
215 ~(VB2_WORKBUF_ALIGN - 1),
vb21_misc_tests.c 23 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
194 (wb_used_before + (VB2_WORKBUF_ALIGN - 1)) &
195 ~(VB2_WORKBUF_ALIGN - 1),
vb20_verify_fw.c 142 uint8_t workbuf[16384] __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb21_host_fw_preamble_tests.c 43 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb2_secdata_tests.c 34 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb21_host_keyblock_tests.c 33 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb21_common_tests.c 224 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
263 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
390 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb20_common3_tests.c 37 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
180 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb20_common2_tests.c 81 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb21_host_sig_tests.c 50 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb2_api_tests.c 21 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb2_nvstorage_tests.c 67 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb21_common2_tests.c 173 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
vb2_misc_tests.c 19 __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
  /external/vboot_reference/firmware/2lib/include/
2common.h 50 * uint8_t buf[NUM] __attribute__ ((aligned (VB2_WORKBUF_ALIGN)));
57 #define VB2_WORKBUF_ALIGN __BIGGEST_ALIGNMENT__
77 * Note that the returned buffer will always be aligned to VB2_WORKBUF_ALIGN.
97 * Note that the returned buffer will always be aligned to VB2_WORKBUF_ALIGN.

Completed in 338 milliseconds