Searched refs:obuf (Results 1 - 5 of 5) sorted by relevance

/u-boot/include/u-boot/
H A Dhash.h30 void *obuf);
33 void *obuf, uint32_t chunk_sz);
36 int hash_finish(struct udevice *dev, void *ctx, void *obuf);
48 int (*hash_finish)(struct udevice *dev, void *ctx, void *obuf);
53 void *obuf);
58 void *obuf, uint32_t chunk_sz);
/u-boot/drivers/crypto/hash/
H A Dhash_sw.c30 static void hash_finish_crc16_ccitt(void *ctx, void *obuf) argument
32 *((uint16_t *)obuf) = *((uint16_t *)ctx);
46 static void hash_finish_crc32(void *ctx, void *obuf) argument
48 *((uint32_t *)obuf) = *((uint32_t *)ctx);
62 static void hash_finish_md5(void *ctx, void *obuf) argument
64 MD5Final(obuf, (struct MD5Context *)ctx);
78 static void hash_finish_sha1(void *ctx, void *obuf) argument
80 sha1_finish((sha1_context *)ctx, obuf);
94 static void hash_finish_sha256(void *ctx, void *obuf) argument
96 sha256_finish((sha256_context *)ctx, obuf);
110 hash_finish_sha384(void *ctx, void *obuf) argument
126 hash_finish_sha512(void *ctx, void *obuf) argument
222 sw_hash_finish(struct udevice *dev, void *ctx, void *obuf) argument
234 sw_hash_digest_wd(struct udevice *dev, enum HASH_ALGO algo, const void *ibuf, const uint32_t ilen, void *obuf, uint32_t chunk_sz) argument
276 sw_hash_digest(struct udevice *dev, enum HASH_ALGO algo, const void *ibuf, const uint32_t ilen, void *obuf) argument
[all...]
H A Dhash-uclass.c66 void *obuf)
73 return ops->hash_digest(dev, algo, ibuf, ilen, obuf);
78 void *obuf, uint32_t chunk_sz)
85 return ops->hash_digest_wd(dev, algo, ibuf, ilen, obuf, chunk_sz);
108 int hash_finish(struct udevice *dev, void *ctx, void *obuf) argument
115 return ops->hash_finish(dev, ctx, obuf);
64 hash_digest(struct udevice *dev, enum HASH_ALGO algo, const void *ibuf, const uint32_t ilen, void *obuf) argument
76 hash_digest_wd(struct udevice *dev, enum HASH_ALGO algo, const void *ibuf, const uint32_t ilen, void *obuf, uint32_t chunk_sz) argument
/u-boot/drivers/crypto/aspeed/
H A Daspeed_hace.c209 static int aspeed_hace_finish(struct udevice *dev, void *ctx, void *obuf) argument
270 memcpy(obuf, hace_ctx->digest, hash_algo_digest_size(hace_ctx->algo));
280 void *obuf, uint32_t chunk_sz)
313 rc = aspeed_hace_finish(dev, ctx, obuf);
322 void *obuf)
325 return aspeed_hace_digest_wd(dev, algo, ibuf, ilen, obuf, ilen);
278 aspeed_hace_digest_wd(struct udevice *dev, enum HASH_ALGO algo, const void *ibuf, const uint32_t ilen, void *obuf, uint32_t chunk_sz) argument
320 aspeed_hace_digest(struct udevice *dev, enum HASH_ALGO algo, const void *ibuf, const uint32_t ilen, void *obuf) argument
/u-boot/include/linux/soc/ti/
H A Dcppi5.h474 * @obuf: Original Buffer physical address
481 dma_addr_t obuf, u32 obuf_len)
484 WARN_ON(!buf && !obuf);
488 desc->org_buf_ptr = obuf;
493 dma_addr_t *obuf, u32 *obuf_len)
496 WARN_ON(!obuf);
499 *obuf = desc->org_buf_ptr;
479 cppi5_hdesc_attach_buf(struct cppi5_host_desc_t *desc, dma_addr_t buf, u32 buf_data_len, dma_addr_t obuf, u32 obuf_len) argument
492 cppi5_hdesc_get_obuf(struct cppi5_host_desc_t *desc, dma_addr_t *obuf, u32 *obuf_len) argument

Completed in 113 milliseconds