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

  /external/elfutils/src/lib/
md5.h 41 typedef uint32_t md5_uint32; typedef
47 md5_uint32 A;
48 md5_uint32 B;
49 md5_uint32 C;
50 md5_uint32 D;
52 md5_uint32 total[2];
53 md5_uint32 buflen;
54 char buffer[128] __attribute__ ((__aligned__ (__alignof__ (md5_uint32))));
md5.c 74 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
75 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
76 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
77 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
103 md5_uint32 bytes = ctx->buflen;
248 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0)
250 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0)
304 md5_uint32 correct_words[16];
305 const md5_uint32 *words = buffer;
306 size_t nwords = len / sizeof (md5_uint32);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
md5.h 41 typedef u_int32_t md5_uint32; typedef
46 typedef uint32_t md5_uint32; typedef
61 typedef unsigned int md5_uint32; typedef
64 typedef unsigned short md5_uint32; typedef
67 typedef unsigned long md5_uint32; typedef
87 md5_uint32 A;
88 md5_uint32 B;
89 md5_uint32 C;
90 md5_uint32 D;
92 md5_uint32 total[2]
    [all...]
  /external/libvncserver/common/
md5.h 43 typedef uint32_t md5_uint32; typedef
62 typedef unsigned int md5_uint32; typedef
65 typedef unsigned short md5_uint32; typedef
68 typedef unsigned long md5_uint32; typedef
84 md5_uint32 A;
85 md5_uint32 B;
86 md5_uint32 C;
87 md5_uint32 D;
89 md5_uint32 total[2];
90 md5_uint32 buflen
    [all...]
md5.c 89 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
90 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
91 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
92 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
108 md5_uint32 bytes = ctx->buflen;
120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
246 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0)
248 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0)
302 md5_uint32 correct_words[16]
    [all...]

Completed in 3210 milliseconds