Searched refs:hd (Results 1 - 25 of 132) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/drivers/
H A Dheartbeat.c35 static inline void heartbeat_toggle_bit(struct heartbeat_data *hd, argument
40 new = (1 << hd->bit_pos[bit]);
44 new &= hd->mask;
46 switch (hd->regsize) {
48 new |= ioread32(hd->base) & ~hd->mask;
49 iowrite32(new, hd->base);
52 new |= ioread16(hd->base) & ~hd->mask;
53 iowrite16(new, hd
64 struct heartbeat_data *hd = (struct heartbeat_data *)data; local
80 struct heartbeat_data *hd; local
144 struct heartbeat_data *hd = platform_get_drvdata(pdev); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/hd-idle-1.04/
H A Dcvsenv.sh2 export CVSROOT=cjmueller@hd-idle.cvs.sourceforge.net:/cvsroot/hd-idle
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/src/
H A Dhmac256.h28 void _gcry_hmac256_update (hmac256_context_t hd, const void *buf, size_t len);
29 const void *_gcry_hmac256_finalize (hmac256_context_t hd, size_t *r_dlen);
30 void _gcry_hmac256_release (hmac256_context_t hd);
H A Dhmac256.c130 transform (hmac256_context_t hd, const void *data_arg)
179 a = hd->h0;
180 b = hd->h1;
181 c = hd->h2;
182 d = hd->h3;
183 e = hd->h4;
184 f = hd->h5;
185 g = hd->h6;
186 h = hd->h7;
212 hd
129 transform(hmac256_context_t hd, const void *data_arg) argument
231 finalize(hmac256_context_t hd) argument
305 hmac256_context_t hd; local
383 _gcry_hmac256_update(hmac256_context_t hd, const void *buffer, size_t length) argument
428 _gcry_hmac256_finalize(hmac256_context_t hd, size_t *r_dlen) argument
465 hmac256_context_t hd; local
653 hmac256_context_t hd; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dhmac256.h28 void _gcry_hmac256_update (hmac256_context_t hd, const void *buf, size_t len);
29 const void *_gcry_hmac256_finalize (hmac256_context_t hd, size_t *r_dlen);
30 void _gcry_hmac256_release (hmac256_context_t hd);
H A Dhmac256.c130 transform (hmac256_context_t hd, const void *data_arg)
179 a = hd->h0;
180 b = hd->h1;
181 c = hd->h2;
182 d = hd->h3;
183 e = hd->h4;
184 f = hd->h5;
185 g = hd->h6;
186 h = hd->h7;
212 hd
129 transform(hmac256_context_t hd, const void *data_arg) argument
231 finalize(hmac256_context_t hd) argument
305 hmac256_context_t hd; local
383 _gcry_hmac256_update(hmac256_context_t hd, const void *buffer, size_t length) argument
428 _gcry_hmac256_finalize(hmac256_context_t hd, size_t *r_dlen) argument
465 hmac256_context_t hd; local
653 hmac256_context_t hd; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/cipher/
H A Dmd4.c197 MD4_CONTEXT *hd = context; local
199 if( hd->count == 64 ) /* flush the buffer */
201 transform( hd, hd->buf );
203 hd->count = 0;
204 hd->nblocks++;
209 if( hd->count )
211 for( ; inlen && hd->count < 64; inlen-- )
212 hd->buf[hd
242 MD4_CONTEXT *hd = context; local
306 MD4_CONTEXT *hd = context; local
[all...]
H A Dsha512.c67 SHA512_CONTEXT *hd = context; local
69 hd->h0 = U64_C(0x6a09e667f3bcc908);
70 hd->h1 = U64_C(0xbb67ae8584caa73b);
71 hd->h2 = U64_C(0x3c6ef372fe94f82b);
72 hd->h3 = U64_C(0xa54ff53a5f1d36f1);
73 hd->h4 = U64_C(0x510e527fade682d1);
74 hd->h5 = U64_C(0x9b05688c2b3e6c1f);
75 hd->h6 = U64_C(0x1f83d9abfb41bd6b);
76 hd->h7 = U64_C(0x5be0cd19137e2179);
78 hd
85 SHA512_CONTEXT *hd = context; local
135 transform(SHA512_CONTEXT *hd, const unsigned char *data) argument
310 SHA512_CONTEXT *hd = context; local
355 SHA512_CONTEXT *hd = context; local
435 SHA512_CONTEXT *hd = (SHA512_CONTEXT *) context; local
[all...]
H A Dhash-common.c50 gcry_md_hd_t hd; local
56 err = _gcry_md_open (&hd, algo, 0);
63 _gcry_md_write (hd, data, datalen);
74 _gcry_md_write (hd, aaa, 1000);
84 digest = _gcry_md_read (hd, algo);
90 _gcry_md_close (hd);
H A Dsha256.c59 SHA256_CONTEXT *hd = context; local
61 hd->h0 = 0x6a09e667;
62 hd->h1 = 0xbb67ae85;
63 hd->h2 = 0x3c6ef372;
64 hd->h3 = 0xa54ff53a;
65 hd->h4 = 0x510e527f;
66 hd->h5 = 0x9b05688c;
67 hd->h6 = 0x1f83d9ab;
68 hd->h7 = 0x5be0cd19;
70 hd
78 SHA256_CONTEXT *hd = context; local
143 transform(SHA256_CONTEXT *hd, const unsigned char *data) argument
269 SHA256_CONTEXT *hd = context; local
311 SHA256_CONTEXT *hd = context; local
378 SHA256_CONTEXT *hd = context; local
[all...]
H A Dsha1.c70 SHA1_CONTEXT *hd = context; local
72 hd->h0 = 0x67452301;
73 hd->h1 = 0xefcdab89;
74 hd->h2 = 0x98badcfe;
75 hd->h3 = 0x10325476;
76 hd->h4 = 0xc3d2e1f0;
77 hd->nblocks = 0;
78 hd->count = 0;
108 transform (SHA1_CONTEXT *hd, const unsigned char *data, size_t nblocks) argument
135 a = hd
240 SHA1_CONTEXT *hd = context; local
289 SHA1_CONTEXT *hd = context; local
355 SHA1_CONTEXT *hd = context; local
367 SHA1_CONTEXT hd; local
[all...]
H A Dmd5.c222 MD5_CONTEXT *hd = context; local
224 if( hd->count == 64 ) /* flush the buffer */
226 transform( hd, hd->buf );
228 hd->count = 0;
229 hd->nblocks++;
234 if( hd->count )
236 for( ; inlen && hd->count < 64; inlen-- )
237 hd->buf[hd
268 MD5_CONTEXT *hd = context; local
332 MD5_CONTEXT *hd = (MD5_CONTEXT *) context; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Dmd4.c197 MD4_CONTEXT *hd = context; local
199 if( hd->count == 64 ) /* flush the buffer */
201 transform( hd, hd->buf );
203 hd->count = 0;
204 hd->nblocks++;
209 if( hd->count )
211 for( ; inlen && hd->count < 64; inlen-- )
212 hd->buf[hd
242 MD4_CONTEXT *hd = context; local
306 MD4_CONTEXT *hd = context; local
[all...]
H A Dsha512.c67 SHA512_CONTEXT *hd = context; local
69 hd->h0 = U64_C(0x6a09e667f3bcc908);
70 hd->h1 = U64_C(0xbb67ae8584caa73b);
71 hd->h2 = U64_C(0x3c6ef372fe94f82b);
72 hd->h3 = U64_C(0xa54ff53a5f1d36f1);
73 hd->h4 = U64_C(0x510e527fade682d1);
74 hd->h5 = U64_C(0x9b05688c2b3e6c1f);
75 hd->h6 = U64_C(0x1f83d9abfb41bd6b);
76 hd->h7 = U64_C(0x5be0cd19137e2179);
78 hd
85 SHA512_CONTEXT *hd = context; local
135 transform(SHA512_CONTEXT *hd, const unsigned char *data) argument
310 SHA512_CONTEXT *hd = context; local
355 SHA512_CONTEXT *hd = context; local
435 SHA512_CONTEXT *hd = (SHA512_CONTEXT *) context; local
[all...]
H A Dhash-common.c50 gcry_md_hd_t hd; local
56 err = _gcry_md_open (&hd, algo, 0);
63 _gcry_md_write (hd, data, datalen);
74 _gcry_md_write (hd, aaa, 1000);
84 digest = _gcry_md_read (hd, algo);
90 _gcry_md_close (hd);
H A Dsha256.c59 SHA256_CONTEXT *hd = context; local
61 hd->h0 = 0x6a09e667;
62 hd->h1 = 0xbb67ae85;
63 hd->h2 = 0x3c6ef372;
64 hd->h3 = 0xa54ff53a;
65 hd->h4 = 0x510e527f;
66 hd->h5 = 0x9b05688c;
67 hd->h6 = 0x1f83d9ab;
68 hd->h7 = 0x5be0cd19;
70 hd
78 SHA256_CONTEXT *hd = context; local
143 transform(SHA256_CONTEXT *hd, const unsigned char *data) argument
269 SHA256_CONTEXT *hd = context; local
311 SHA256_CONTEXT *hd = context; local
378 SHA256_CONTEXT *hd = context; local
[all...]
H A Dsha1.c70 SHA1_CONTEXT *hd = context; local
72 hd->h0 = 0x67452301;
73 hd->h1 = 0xefcdab89;
74 hd->h2 = 0x98badcfe;
75 hd->h3 = 0x10325476;
76 hd->h4 = 0xc3d2e1f0;
77 hd->nblocks = 0;
78 hd->count = 0;
108 transform (SHA1_CONTEXT *hd, const unsigned char *data, size_t nblocks) argument
135 a = hd
240 SHA1_CONTEXT *hd = context; local
289 SHA1_CONTEXT *hd = context; local
355 SHA1_CONTEXT *hd = context; local
367 SHA1_CONTEXT hd; local
[all...]
H A Dmd5.c222 MD5_CONTEXT *hd = context; local
224 if( hd->count == 64 ) /* flush the buffer */
226 transform( hd, hd->buf );
228 hd->count = 0;
229 hd->nblocks++;
234 if( hd->count )
236 for( ; inlen && hd->count < 64; inlen-- )
237 hd->buf[hd
268 MD5_CONTEXT *hd = context; local
332 MD5_CONTEXT *hd = (MD5_CONTEXT *) context; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/VisualStudio2005/wsdl2h/wsdl2h/
H A Dmime.cpp63 for (vector<soap__header>::iterator hd = soap__header_.begin(); hd != soap__header_.end(); ++hd)
64 (*hd).traverse(definitions);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/wsdl/
H A Dmime.cpp63 for (vector<soap__header>::iterator hd = soap__header_.begin(); hd != soap__header_.end(); ++hd)
64 (*hd).traverse(definitions);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/VisualStudio2005/wsdl2h/wsdl2h/
H A Dmime.cpp63 for (vector<soap__header>::iterator hd = soap__header_.begin(); hd != soap__header_.end(); ++hd)
64 (*hd).traverse(definitions);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/wsdl/
H A Dmime.cpp63 for (vector<soap__header>::iterator hd = soap__header_.begin(); hd != soap__header_.end(); ++hd)
64 (*hd).traverse(definitions);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/GeoIP-1.5.1/libGeoIP/
H A Dmd5.h38 void md5_write( MD5_CONTEXT *hd, byte *inbuf, size_t inlen);
39 void md5_final( MD5_CONTEXT *hd );
H A Dmd5.c226 md5_write( MD5_CONTEXT *hd, byte *inbuf, size_t inlen) argument
228 if( hd->count == 64 ) { /* flush the buffer */
229 transform( hd, hd->buf );
231 hd->count = 0;
232 hd->nblocks++;
236 if( hd->count ) {
237 for( ; inlen && hd->count < 64; inlen-- )
238 hd->buf[hd
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DFileLock.h63 hd = CreateFileA((file + "_lock").c_str(),
70 if (hd != INVALID_HANDLE_VALUE) {
81 if (hd != INVALID_HANDLE_VALUE) {
82 CloseHandle(hd);
100 ret = LockFileEx(hd, LOCKFILE_EXCLUSIVE_LOCK, 0, 1, 0, &ov);
103 ret = UnlockFileEx(hd, 0, 1, 0, &ov);
110 HANDLE hd; member in class:CFileLock

Completed in 333 milliseconds

123456