/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2007-04-24-Huge-Stack.ll | 4 %struct.md5_ctx = type { i32, i32, i32, i32, [2 x i32], i32, [128 x i8], [4294967288 x i8] } 8 %ctx = alloca %struct.md5_ctx, align 16 ; <%struct.md5_ctx*> [#uses=3] 9 call void @md5_init_ctx( %struct.md5_ctx* %ctx ) 10 call void @md5_process_bytes( i8* %buffer, i64 %len, %struct.md5_ctx* %ctx ) 11 %tmp4 = call i8* @md5_finish_ctx( %struct.md5_ctx* %ctx, i8* %resblock ) ; <i8*> [#uses=1] 15 declare void @md5_init_ctx(%struct.md5_ctx*) 17 declare i8* @md5_finish_ctx(%struct.md5_ctx*, i8*) 19 declare void @md5_process_bytes(i8*, i64, %struct.md5_ctx*)
|
/external/llvm/test/CodeGen/X86/ |
D | 2007-04-24-Huge-Stack.ll | 6 %struct.md5_ctx = type { i32, i32, i32, i32, [2 x i32], i32, [128 x i8], [4294967288 x i8] } 10 %ctx = alloca %struct.md5_ctx, align 16 ; <%struct.md5_ctx*> [#uses=3] 11 call void @md5_init_ctx( %struct.md5_ctx* %ctx ) 12 call void @md5_process_bytes( i8* %buffer, i64 %len, %struct.md5_ctx* %ctx ) 13 %tmp4 = call i8* @md5_finish_ctx( %struct.md5_ctx* %ctx, i8* %resblock ) ; <i8*> [#uses=1] 17 declare void @md5_init_ctx(%struct.md5_ctx*) 19 declare i8* @md5_finish_ctx(%struct.md5_ctx*, i8*) 21 declare void @md5_process_bytes(i8*, i64, %struct.md5_ctx*)
|
/external/elfutils/lib/ |
D | md5.h | 45 struct md5_ctx struct 64 extern void md5_init_ctx (struct md5_ctx *ctx); argument 71 struct md5_ctx *ctx); 78 struct md5_ctx *ctx); 87 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf); 96 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
|
D | md5.c | 52 md5_init_ctx (struct md5_ctx *ctx) in md5_init_ctx() 69 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) in md5_read_ctx() 95 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) in md5_finish_ctx() 131 struct md5_ctx ctx; in md5_stream() 187 struct md5_ctx ctx; in md5_buffer() 202 md5_process_bytes (const void *buffer, size_t len, struct md5_ctx *ctx) in md5_process_bytes() 286 md5_process_block (const void *buffer, size_t len, struct md5_ctx *ctx) in md5_process_block()
|
/external/libvncserver/common/ |
D | md5.h | 82 struct md5_ctx struct 101 extern void __md5_init_ctx (struct md5_ctx *ctx) __THROW; argument 108 struct md5_ctx *ctx) __THROW; 115 struct md5_ctx *ctx) __THROW; 124 extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW; 133 extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
|
D | md5.c | 55 md5_process_bytes (const void *buffer, size_t len, struct md5_ctx *ctx); 57 md5_process_block (const void *buffer, size_t len, struct md5_ctx *ctx); 68 struct md5_ctx *ctx; in md5_init_ctx() 86 const struct md5_ctx *ctx; in md5_read_ctx() 104 struct md5_ctx *ctx; in md5_finish_ctx() 140 struct md5_ctx ctx; 196 struct md5_ctx ctx; 213 struct md5_ctx *ctx; 300 struct md5_ctx *ctx;
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | md5.h | 14 struct md5_ctx { struct 20 #define MD5_CTX_SIZE sizeof ( struct md5_ctx ) argument
|
/external/syslinux/gpxe/src/crypto/ |
D | md5.c | 153 static inline void md5_transform_helper(struct md5_ctx *ctx) in md5_transform_helper() 161 struct md5_ctx *mctx = context; in md5_init() 172 struct md5_ctx *mctx = context; in md5_update() 202 struct md5_ctx *mctx = context; in md5_final()
|
/external/libvpx/libvpx/ |
D | vpxdec.c | 537 MD5Context md5_ctx; in main_loop() local 695 MD5Init(&md5_ctx); in main_loop() 942 MD5Update(&md5_ctx, (md5byte *)buf, (unsigned int)len); in main_loop() 951 MD5Update(&md5_ctx, (md5byte *)buf, (unsigned int)len); in main_loop() 978 update_image_md5(img, planes, &md5_ctx); in main_loop() 986 MD5Init(&md5_ctx); in main_loop() 987 update_image_md5(img, planes, &md5_ctx); in main_loop() 988 MD5Final(md5_digest, &md5_ctx); in main_loop() 1021 MD5Final(md5_digest, &md5_ctx); in main_loop()
|
/external/libvncserver/libvncserver/ |
D | rfbcrypto_included.c | 31 struct md5_ctx c; in digestmd5()
|
/external/fio/ |
D | verify.c | 712 struct fio_md5_ctx md5_ctx = { in verify_io_u_md5() local 718 fio_md5_init(&md5_ctx); in verify_io_u_md5() 719 fio_md5_update(&md5_ctx, p, hdr->len - hdr_size(vc->td, hdr)); in verify_io_u_md5() 720 fio_md5_final(&md5_ctx); in verify_io_u_md5() 722 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash))) in verify_io_u_md5() 727 vc->bad_crc = md5_ctx.hash; in verify_io_u_md5() 1148 struct fio_md5_ctx md5_ctx = { in fill_md5() local 1152 fio_md5_init(&md5_ctx); in fill_md5() 1153 fio_md5_update(&md5_ctx, p, len); in fill_md5() 1154 fio_md5_final(&md5_ctx); in fill_md5()
|
/external/syslinux/gpxe/src/net/ |
D | tls.c | 574 uint8_t md5_ctx[md5->ctxsize]; in tls_verify_handshake() local 579 memcpy ( md5_ctx, tls->handshake_md5_ctx, sizeof ( md5_ctx ) ); in tls_verify_handshake() 581 digest_final ( md5, md5_ctx, md5_digest ); in tls_verify_handshake()
|
/external/syslinux/gpxe/src/net/80211/ |
D | wpa_tkip.c | 546 struct md5_ctx md5; in tkip_kie_mic()
|
/external/curl/lib/ |
D | md5.c | 40 typedef struct md5_ctx MD5_CTX;
|
/external/curl/src/ |
D | tool_metalink.c | 39 # define MD5_CTX struct md5_ctx
|
/external/curl/lib/vtls/ |
D | gtls.c | 1647 struct md5_ctx MD5pw;
|
/external/elfutils/src/ |
D | ldgeneric.c | 4231 struct md5_ctx ctx; in compute_build_id()
|