Searched refs:UINT8 (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael/
H A Drijndael.h39 * Defining UINT8 as unsigned char is, ultimately, what stdint.h
45 typedef unsigned char UINT8; typedef
55 typedef uint8_t UINT8; typedef
63 typedef u_char UINT8; typedef
71 typedef u_char UINT8; typedef
78 typedef __uint8_t UINT8; typedef
84 typedef unsigned char UINT8; typedef
90 typedef unsigned char UINT8; typedef
96 typedef unsigned char UINT8; typedef
102 typedef unsigned char UINT8; typedef
[all...]
H A D_rijndael.c29 print_block(UINT8 *block)
179 UINT8 sbox[256] = {
200 UINT8 isbox[256] = {
222 UINT8 Logtable[256] = {
242 UINT8 Alogtable[256] = {
269 static UINT8
270 xtime(UINT8 a)
272 UINT8 b;
280 static UINT8
281 mul(UINT8
[all...]
H A DRijndael.xs18 UINT8 iv[RIJNDAEL_BLOCKSIZE];
128 rijndael_setup(&RETVAL->ctx, keysize, (UINT8 *) SvPV_nolen(key));
170 (&self->ctx, rawbytes, size, (UINT8 *) SvPV_nolen(RETVAL), self->iv);
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael-1.10/
H A Drijndael.h39 * Defining UINT8 as unsigned char is, ultimately, what stdint.h
45 typedef unsigned char UINT8; typedef
56 typedef uint8_t UINT8; typedef
64 typedef u_char UINT8; typedef
72 typedef u_char UINT8; typedef
79 typedef __uint8_t UINT8; typedef
85 typedef unsigned char UINT8; typedef
91 typedef unsigned char UINT8; typedef
97 typedef unsigned char UINT8; typedef
103 typedef unsigned char UINT8; typedef
[all...]
H A D_rijndael.c29 print_block(UINT8 *block)
179 UINT8 sbox[256] = {
200 UINT8 isbox[256] = {
222 UINT8 Logtable[256] = {
242 UINT8 Alogtable[256] = {
269 static UINT8
270 xtime(UINT8 a)
272 UINT8 b;
280 static UINT8
281 mul(UINT8
[all...]
H A DRijndael.xs38 UINT8 iv[RIJNDAEL_BLOCKSIZE];
148 rijndael_setup(&RETVAL->ctx, keysize, (UINT8 *) SvPV_nolen(key));
190 (&self->ctx, rawbytes, size, (UINT8 *) SvPV_nolen(RETVAL), self->iv);
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djmorecfg.h133 /* UINT8 must hold at least the values 0..255. */
136 typedef unsigned char UINT8; typedef
139 typedef char UINT8; typedef
141 typedef short UINT8; typedef
H A Djpeglib.h109 UINT8 bits[17]; /* bits[k] = # of symbols with codes of */
111 UINT8 huffval[256]; /* The symbols, in order of incr code length */
204 UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */
330 UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
331 UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
332 UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
360 UINT8 JFIF_major_version; /* What to write for the JFIF version number */
361 UINT8 JFIF_minor_version;
366 UINT8 density_unit; /* JFIF code for pixel size units */
571 UINT8 arith_dc_
[all...]
H A Djcparam.c170 JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val)
191 MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8));
203 static const UINT8 bits_dc_luminance[17] =
205 static const UINT8 val_dc_luminance[] =
208 static const UINT8 bits_dc_chrominance[17] =
210 static const UINT8 val_dc_chrominance[] =
213 static const UINT8 bits_ac_luminance[17] =
215 static const UINT8 val_ac_luminance[] =
238 static const UINT8 bits_ac_chrominanc
[all...]
H A Djdsample.c58 UINT8 h_expand[MAX_COMPONENTS];
59 UINT8 v_expand[MAX_COMPONENTS];
349 upsample->h_expand[ci] = (UINT8) (h_out_group / h_in_group);
350 upsample->v_expand[ci] = (UINT8) (v_out_group / v_in_group);
H A Djcsample.c72 UINT8 h_expand[MAX_COMPONENTS];
73 UINT8 v_expand[MAX_COMPONENTS];
535 downsample->h_expand[ci] = (UINT8) (h_in_group / h_out_group);
536 downsample->v_expand[ci] = (UINT8) (v_in_group / v_out_group);
H A Djdmarker.c400 cinfo->arith_ac_K[index-NUM_ARITH_TBLS] = (UINT8) val;
402 cinfo->arith_dc_L[index] = (UINT8) (val & 0x0F);
403 cinfo->arith_dc_U[index] = (UINT8) (val >> 4);
428 UINT8 bits[17];
429 UINT8 huffval[256];
719 cinfo->Adobe_transform = (UINT8) transform;
804 cur_marker->marker = (UINT8) cinfo->unread_marker;
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dumac.c88 typedef u_int8_t UINT8; /* 1 byte */ typedef
199 static void kdf(void *bufp, aes_int_key key, UINT8 ndx, int nbytes)
201 UINT8 in_buf[AES_BLOCK_LEN] = {0};
202 UINT8 out_buf[AES_BLOCK_LEN];
203 UINT8 *dst_buf = (UINT8 *)bufp;
230 UINT8 cache[AES_BLOCK_LEN]; /* Previous AES output is saved */
231 UINT8 nonce[AES_BLOCK_LEN]; /* The AES input making above cache */
237 UINT8 buf[UMAC_KEY_LEN];
247 static void pdf_gen_xor(pdf_ctx *pc, UINT8 nonc
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/idl_compiler/
H A Dkeywds.c108 #define UINT8 unsigned char macro
139 static UINT8 keyword_hash_table [HASH_TABLE_SIZE];
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/include/
H A Dffi_common.h76 typedef unsigned int UINT8 __attribute__((__mode__(__QI__))); typedef
/macosx-10.9.5/libffi-18.1/include/
H A Dffi_common.h84 typedef unsigned int UINT8 __attribute__((__mode__(__QI__))); typedef
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/libffi-src/include/
H A Dffi_common.h88 typedef unsigned int UINT8 __attribute__((__mode__(__QI__))); typedef
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/include/
H A Dffi_common.h88 typedef unsigned int UINT8 __attribute__((__mode__(__QI__))); typedef
/macosx-10.9.5/swig-10/Lib/
H A Dwindows.i93 typedef unsigned char UINT8, *PUINT8;
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSShared/
H A Ddns_sd.h114 typedef UINT8 uint8_t;
126 typedef UINT8 uint8_t;
/macosx-10.9.5/swig-10/Lib/typemaps/
H A Dprimtypes.swg298 Macro2(%checkcode(UINT8), unsigned char);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/x86/
H A Dffi.c79 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv);
H A Dffi_darwin.c98 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv);
/macosx-10.9.5/libffi-18.1/x86/
H A Dx86-ffi_darwin.c76 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi_darwin.c76 *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv);

Completed in 200 milliseconds

12