Home
last modified time | relevance | path

Searched refs:nr (Results 1 – 5 of 5) sorted by relevance

/rk3399_ARM-atf/include/lib/
H A Dutils_def.h23 #define BIT_32(nr) (U(1) << (nr)) argument
24 #define BIT_64(nr) (ULL(1) << (nr)) argument
26 #define BIT_32(nr) (((uint32_t)(1U)) << (nr)) argument
27 #define BIT_64(nr) (((uint64_t)(1ULL)) << (nr)) argument
/rk3399_ARM-atf/drivers/amlogic/crypto/
H A Dsha_dma.c155 size_t nr; in asd_sha_update() local
158 nr = MIN(len, SHA256_BLOCKSZ - ctx->blocksz); in asd_sha_update()
159 memcpy(ctx->block + ctx->blocksz, data, nr); in asd_sha_update()
160 ctx->blocksz += nr; in asd_sha_update()
161 len -= nr; in asd_sha_update()
162 data += nr; in asd_sha_update()
174 nr = len & (SHA256_BLOCKSZ - 1); in asd_sha_update()
175 memcpy(ctx->block + ctx->blocksz, data, nr); in asd_sha_update()
176 ctx->blocksz += nr; in asd_sha_update()
/rk3399_ARM-atf/plat/rockchip/common/include/
H A Dplat_private.h46 #define WMSK_BIT(nr) BIT((nr) + REG_MSK_SHIFT) argument
51 #define BIT_WITH_WMSK(nr) (BIT(nr) | WMSK_BIT(nr)) argument
/rk3399_ARM-atf/tools/amlogic/
H A Ddoimage.c27 ssize_t nr; in fdwrite() local
31 for (l = 0; l < len; l += nr) { in fdwrite()
32 nr = write(fd, data + l, len - l); in fdwrite()
33 if (nr < 0) { in fdwrite()
/rk3399_ARM-atf/.husky/
H A Dpre-commit.copyright37 grep -nr "opyright.*$YEAR_RGX.*$PLATPROV" "$FILE"