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

  /external/elfutils/lib/
md5.h 81 in first 16 bytes following RESBUF. The result is always in little
85 IMPORTANT: On some systems it is required that RESBUF is correctly
87 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
90 /* Put result from CTX in first 16 bytes following RESBUF. The result is
94 IMPORTANT: On some systems it is required that RESBUF is correctly
96 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
sha1.h 76 in first 20 bytes following RESBUF. The result is always in little
80 IMPORTANT: On some systems it is required that RESBUF is correctly
82 extern void *sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf);
85 /* Put result from CTX in first 20 bytes following RESBUF. The result is
89 IMPORTANT: On some systems it is required that RESBUF is correctly
91 extern void *sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf);
md5.c 63 /* Put result from CTX in first 16 bytes following RESBUF. The result
66 IMPORTANT: On some systems it is required that RESBUF is correctly
69 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf)
71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
76 return resbuf;
90 prolog according to the standard and write the result to RESBUF.
92 IMPORTANT: On some systems it is required that RESBUF is correctl
    [all...]
sha1.c 63 /* Put result from CTX in first 20 bytes following RESBUF. The result
66 IMPORTANT: On some systems it is required that RESBUF is correctly
69 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf)
71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
77 return resbuf;
88 prolog according to the standard and write the result to RESBUF
    [all...]
  /external/libvncserver/common/
md5.h 118 in first 16 bytes following RESBUF. The result is always in little
122 IMPORTANT: On some systems it is required that RESBUF is correctly
124 extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW;
127 /* Put result from CTX in first 16 bytes following RESBUF. The result is
131 IMPORTANT: On some systems it is required that RESBUF is correctly
133 extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
md5.c 79 /* Put result from CTX in first 16 bytes following RESBUF. The result
82 IMPORTANT: On some systems it is required that RESBUF is correctly
85 md5_read_ctx (ctx, resbuf)
87 void *resbuf;
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);
94 return resbuf;
98 prolog according to the standard and write the result to RESBUF
    [all...]
  /external/ltp/testcases/kernel/syscalls/gethostbyname_r/
gethostbyname_r01.c 68 struct hostent resbuf; local
84 retval = gethostbyname_r(name, &resbuf, temp.buffer,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
md5.h 121 in first 16 bytes following RESBUF. The result is always in little
125 IMPORTANT: On some systems it is required that RESBUF is correctly
127 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
130 /* Put result from CTX in first 16 bytes following RESBUF. The result is
134 IMPORTANT: On some systems it is required that RESBUF is correctly
136 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
  /toolchain/binutils/binutils-2.27/include/
md5.h 121 in first 16 bytes following RESBUF. The result is always in little
125 IMPORTANT: On some systems it is required that RESBUF is correctly
127 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
130 /* Put result from CTX in first 16 bytes following RESBUF. The result is
134 IMPORTANT: On some systems it is required that RESBUF is correctly
136 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
sha1.h 112 in first 20 bytes following RESBUF. The result is always in little
116 IMPORTANT: On some systems it is required that RESBUF be correctly
118 extern void *sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf);
121 /* Put result from CTX in first 20 bytes following RESBUF. The result is
125 IMPORTANT: On some systems it is required that RESBUF is correctly
127 extern void *sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf);
  /toolchain/binutils/binutils-2.27/libiberty/
sha1.c 70 /* Put result from CTX in first 20 bytes following RESBUF. The result
73 IMPORTANT: On some systems it is required that RESBUF is correctly
76 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf)
78 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
79 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
80 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
81 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
82 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
84 return resbuf;
88 prolog according to the standard and write the result to RESBUF
    [all...]
md5.c 76 /* Put result from CTX in first 16 bytes following RESBUF. The result
79 IMPORTANT: RESBUF may not be aligned as strongly as MD5_UNIT32 so we
80 put things in a local (aligned) buffer first, then memcpy into RESBUF. */
82 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf)
91 memcpy (resbuf, buffer, 16);
93 return resbuf;
97 prolog according to the standard and write the result to RESBUF.
99 IMPORTANT: On some systems it is required that RESBUF is correctly
102 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf)
128 return md5_read_ctx (ctx, resbuf);
    [all...]
  /external/python/cpython2/Modules/_ctypes/
callproc.c 1100 void *resbuf; local
    [all...]
  /external/python/cpython3/Modules/_ctypes/
callproc.c 1064 void *resbuf; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
i2o-dev.h 49 void __user * resbuf; member in struct:i2o_cmd_hrtlct
57 void __user * resbuf; member in struct:i2o_cmd_psetget
74 void __user * resbuf; member in struct:i2o_html
  /external/kernel-headers/original/uapi/linux/
i2o-dev.h 61 void __user *resbuf; /* Buffer for result */ member in struct:i2o_cmd_hrtlct
70 void __user *resbuf; /* Result List buffer */ member in struct:i2o_cmd_psetget
89 void __user *resbuf; /* Buffer for reply HTML page */ member in struct:i2o_html
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
i2o-dev.h 60 void *resbuf; /* Buffer for result */ member in struct:i2o_cmd_hrtlct
69 void *resbuf; /* Result List buffer */ member in struct:i2o_cmd_psetget
88 void *resbuf; /* Buffer for reply HTML page */ member in struct:i2o_html
  /external/syslinux/com32/libutil/
sha256crypt.c 176 prolog according to the standard and write the result to RESBUF.
178 IMPORTANT: On some systems it is required that RESBUF is correctly
180 static void *sha256_finish_ctx(struct sha256_ctx *ctx, void *resbuf)
203 /* Put result from CTX in first 32 bytes following RESBUF. */
205 ((uint32_t *) resbuf)[i] = SWAP(ctx->H[i]);
207 return resbuf;
sha512crypt.c 207 prolog according to the standard and write the result to RESBUF.
209 IMPORTANT: On some systems it is required that RESBUF is correctly
211 static void *sha512_finish_ctx(struct sha512_ctx *ctx, void *resbuf)
234 /* Put result from CTX in first 64 bytes following RESBUF. */
236 ((uint64_t *) resbuf)[i] = SWAP(ctx->H[i]);
238 return resbuf;
  /external/mksh/src/
exec.c     [all...]
  /external/libxml2/
xmlreader.c 1706 xmlChar *resbuf; local
1752 xmlChar *resbuf; local
    [all...]

Completed in 1111 milliseconds