Searched refs:UINT32 (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/sha/
H A Dsha.h15 typedef unsigned int UINT32; typedef
17 #ifndef UINT32
21 typedef unsigned long UINT32; typedef
30 UINT32 digest[5]; /* message digest */
31 UINT32 count_lo, count_hi; /* 64-bit bit count */
32 UINT32 data[16]; /* SHA data buffer */
H A Dsha.c60 UINT32 temp, A, B, C, D, E, W[80];
122 UINT32 *buffer; int count;
127 count /= sizeof(UINT32);
138 cp += sizeof(UINT32);
163 if ((sha_info->count_lo + ((UINT32) count << 3)) < sha_info->count_lo) {
166 sha_info->count_lo += (UINT32) count << 3;
167 sha_info->count_hi += (UINT32) count >> 29;
186 UINT32 lo_bit_count, hi_bit_count;
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael/
H A Drijndael.h44 typedef __uint32_t UINT32; typedef
54 typedef uint32_t UINT32; typedef
62 typedef u_int32_t UINT32; typedef
70 typedef u_int32_t UINT32; typedef
77 typedef __uint32_t UINT32; typedef
83 typedef unsigned int UINT32; typedef
89 typedef unsigned int UINT32; typedef
95 typedef unsigned int UINT32; typedef
101 typedef unsigned int UINT32; typedef
124 UINT32 key
[all...]
H A D_rijndael.c43 UINT32 dtbl[] = {
110 UINT32 itbl[] = {
288 inv_mix_column(UINT32 *a, UINT32 *b)
312 UINT32 temp, rcon;
338 rcon = (UINT32)xtime((UINT8)rcon&0xff);
355 key_addition_8to32(const UINT8 *txt, UINT32 *keys, UINT32 *out)
359 UINT32 val;
371 key_addition32(const UINT32 *tx
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael-1.10/
H A Drijndael.h44 typedef __uint32_t UINT32; typedef
55 typedef uint32_t UINT32; typedef
63 typedef u_int32_t UINT32; typedef
71 typedef u_int32_t UINT32; typedef
78 typedef __uint32_t UINT32; typedef
84 typedef unsigned int UINT32; typedef
90 typedef unsigned int UINT32; typedef
96 typedef unsigned int UINT32; typedef
102 typedef unsigned int UINT32; typedef
125 UINT32 key
[all...]
H A D_rijndael.c43 UINT32 dtbl[] = {
110 UINT32 itbl[] = {
288 inv_mix_column(UINT32 *a, UINT32 *b)
312 UINT32 temp, rcon;
338 rcon = (UINT32)xtime((UINT8)rcon&0xff);
355 key_addition_8to32(const UINT8 *txt, UINT32 *keys, UINT32 *out)
359 UINT32 val;
371 key_addition32(const UINT32 *tx
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_mds/lib/
H A DMDSSchema.cpp53 DB_ATTRIBUTE(BuiltIn, UINT32),
77 DB_ATTRIBUTE(NativeServices, UINT32),
94 DB_ATTRIBUTE(PolicyType, UINT32),
116 UNIQUE_INDEX_ATTRIBUTE(PolicyType, UINT32)
132 DB_ATTRIBUTE(EmmType, UINT32), // does this need a name/value table?
144 DB_ATTRIBUTE(SSID, UINT32),
145 DB_ATTRIBUTE(ServiceType, UINT32),
167 UNIQUE_INDEX_ATTRIBUTE(SSID, UINT32),
168 UNIQUE_INDEX_ATTRIBUTE(ServiceType, UINT32)
180 DB_ATTRIBUTE(DynamicFlag, UINT32),
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DckMD5.h59 typedef unsigned int UINT32; typedef
61 typedef unsigned int UINT32; typedef
63 typedef unsigned long UINT32; typedef
67 UINT32 buf[4];
68 UINT32 bits[2]; // bits[0] is low 32 bits of bit count
H A DckMD5.c90 static void MD5Transform(UINT32 buf[4], UINT32 const in[16]);
108 UINT32 t;
110 t = (UINT32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
112 *(UINT32 *) buf = t;
153 UINT32 t;
159 if ((ctx->bits[0] = t + ((UINT32) len << 3)) < t)
177 MD5Transform(ctx->buf, (UINT32 *) ctx->in);
187 MD5Transform(ctx->buf, (UINT32 *) ctx->in);
228 MD5Transform(ctx->buf, (UINT32 *) ct
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DckMD5.h59 typedef unsigned int UINT32; typedef
61 typedef unsigned int UINT32; typedef
63 typedef unsigned long UINT32; typedef
67 UINT32 buf[4];
68 UINT32 bits[2]; // bits[0] is low 32 bits of bit count
H A DckMD5.c90 static void MD5Transform(UINT32 buf[4], UINT32 const in[16]);
108 UINT32 t;
110 t = (UINT32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
112 *(UINT32 *) buf = t;
153 UINT32 t;
159 if ((ctx->bits[0] = t + ((UINT32) len << 3)) < t)
177 MD5Transform(ctx->buf, (UINT32 *) ctx->in);
187 MD5Transform(ctx->buf, (UINT32 *) ctx->in);
228 MD5Transform(ctx->buf, (UINT32 *) ct
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dumac.c90 typedef u_int32_t UINT32; /* 4 byte */ typedef
128 #define MUL64(a,b) ((UINT64)((UINT64)(UINT32)(a) * (UINT64)(UINT32)(b)))
135 #define LOAD_UINT32_REVERSED(p) (swap32(*(UINT32 *)(p)))
136 #define STORE_UINT32_REVERSED(p,v) (*(UINT32 *)(p) = swap32(v))
139 static UINT32 LOAD_UINT32_REVERSED(void *ptr)
141 UINT32 temp = *(UINT32 *)ptr;
144 return (UINT32)temp;
148 static void STORE_UINT32_REVERSED(void *ptr, UINT32
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/include/
H A Dffi_common.h80 typedef unsigned int UINT32 __attribute__((__mode__(__SI__))); typedef
/macosx-10.9.5/libffi-18.1/include/
H A Dffi_common.h88 typedef unsigned int UINT32 __attribute__((__mode__(__SI__))); typedef
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/include/
H A Dffi_common.h92 typedef unsigned int UINT32 __attribute__((__mode__(__SI__))); typedef
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/include/
H A Dffi_common.h92 typedef unsigned int UINT32 __attribute__((__mode__(__SI__))); typedef
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/x86/
H A Dffi.c95 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
99 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
H A Dffi_darwin.c114 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
118 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
/macosx-10.9.5/libffi-18.1/x86/
H A Dx86-ffi_darwin.c92 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
96 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi_darwin.c92 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
96 *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv);
/macosx-10.9.5/swig-10/Lib/
H A Dwindows.i95 typedef unsigned int UINT32, *PUINT32;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi_darwin.c120 *(unsigned int*)argp = (unsigned int)*(UINT32*)(*p_argv);
124 *(unsigned int*)argp = (unsigned int)*(UINT32*)(*p_argv);
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DAppleDatabase.cpp820 ATTRIBUTE(UINT32, RelationID),
829 ATTRIBUTE(UINT32, RelationID),
830 ATTRIBUTE(UINT32, AttributeID),
831 ATTRIBUTE(UINT32, AttributeNameFormat),
834 ATTRIBUTE(UINT32, AttributeFormat)
839 ATTRIBUTE(UINT32, RelationID),
840 ATTRIBUTE(UINT32, IndexID),
841 ATTRIBUTE(UINT32, AttributeID),
842 ATTRIBUTE(UINT32, IndexType),
843 ATTRIBUTE(UINT32, IndexedDataLocatio
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DAppleDatabase.cpp820 ATTRIBUTE(UINT32, RelationID),
829 ATTRIBUTE(UINT32, RelationID),
830 ATTRIBUTE(UINT32, AttributeID),
831 ATTRIBUTE(UINT32, AttributeNameFormat),
834 ATTRIBUTE(UINT32, AttributeFormat)
839 ATTRIBUTE(UINT32, RelationID),
840 ATTRIBUTE(UINT32, IndexID),
841 ATTRIBUTE(UINT32, AttributeID),
842 ATTRIBUTE(UINT32, IndexType),
843 ATTRIBUTE(UINT32, IndexedDataLocatio
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSShared/
H A Ddns_sd.h118 typedef UINT32 uint32_t;
130 typedef UINT32 uint32_t;

Completed in 232 milliseconds

12