Searched refs:u_int8_t (Results 1 - 25 of 80) sorted by relevance

1234

/osnet-11/usr/src/cmd/sendmail/db/include/
H A Ddb_swap.h54 ((u_int8_t *)&a)[0] = ((u_int8_t *)&_tmp)[3]; \
55 ((u_int8_t *)&a)[1] = ((u_int8_t *)&_tmp)[2]; \
56 ((u_int8_t *)&a)[2] = ((u_int8_t *)&_tmp)[1]; \
57 ((u_int8_t *)&a)[3] = ((u_int8_t *)&_tmp)[0]; \
60 ((u_int8_t *)b)[0] = ((u_int8_t *)
[all...]
H A Dos.h24 u_int8_t *buf; /* Buffer. */
H A Ddb_page.h66 u_int8_t uid[DB_FILE_ID_LEN];
97 u_int8_t uid[DB_FILE_ID_LEN];
149 u_int8_t level; /* 24: Btree tree level. */
159 u_int8_t type; /* 25: Page type. */
222 #define P_ENTRY(pg, indx) ((u_int8_t *)pg + ((PAGE *)pg)->inp[indx])
267 #define HPAGE_PTYPE(p) (*(u_int8_t *)p)
289 u_int8_t type; /* 00: Page type. */
290 u_int8_t data[1]; /* Variable length key/data item. */
292 #define HKEYDATA_DATA(p) (((u_int8_t *)p) + SSZA(HKEYDATA, data))
317 memcpy((u_int8_t *)p
[all...]
H A Dlock.h79 #define SH_DBT_PTR(p) ((void *)(((u_int8_t *)(p)) + (p)->off))
98 u_int8_t objdata[sizeof(struct __db_ilock)];
99 u_int8_t type; /* Real object or locker id. */
116 u_int8_t *conflicts; /* Pointer to conflict matrix. */
167 ((struct __db_lock *)((u_int8_t *)((lt)->region) + (off)))
169 ((size_t)((u_int8_t *)(lock) - (u_int8_t *)lt->region))
171 ((DB_LOCKOBJ *)((u_int8_t *)((lt)->region) + (off)))
173 ((size_t)((u_int8_t *)(obj) - (u_int8_t *)l
[all...]
H A Dshqueue.h56 ((struct type *)(((u_int8_t *)(head)) + (head)->slh_first))
60 ((struct type *)(((u_int8_t *)(head)) + (head)->slh_first)))
63 ((struct type *)(((u_int8_t *)(elm)) + (elm)->field.sle_next))
67 ((struct type *)(((u_int8_t *)(elm)) + (elm)->field.sle_next)))
70 ((ssize_t *)(((u_int8_t *)(elm)) + (elm)->field.sle_prev))
73 ((ssize_t)(((u_int8_t *)(dest)) - ((u_int8_t *)(src))))
139 ((struct type *)((u_int8_t *)(head) + (head)->stqh_first))
145 ((struct type *)((u_int8_t *)(elm) + (elm)->field.stqe_next))
151 ((ssize_t *)((u_int8_t *)(el
[all...]
/osnet-11/usr/src/cmd/sendmail/db/lock/
H A Dlock_conflict.c24 const u_int8_t db_rw_conflicts[] = {
31 const u_int8_t db_riw_conflicts[] = {
H A Dlock_util.c91 u_int8_t *__cp, *__hp; \
92 __hp = (u_int8_t *)&__h; \
93 __cp = (u_int8_t *)(P); \
H A Dlock_region.c134 lt->conflicts = (u_int8_t *)lt->region + sizeof(DB_LOCKREGION);
136 (DB_HASHTAB *)((u_int8_t *)lt->region + lt->region->hash_off);
137 lt->mem = (void *)((u_int8_t *)lt->region + lt->region->mem_off);
185 const u_int8_t *conflicts;
186 u_int8_t *curaddr;
218 curaddr = (u_int8_t *)lrp + sizeof(DB_LOCKREGION);
225 curaddr = (u_int8_t *)ALIGNP(curaddr, LOCK_HASH_ALIGN);
226 lrp->hash_off = curaddr - (u_int8_t *)lrp;
236 curaddr = (u_int8_t *)ALIGNP(curaddr, MUTEX_ALIGNMENT);
261 curaddr = (u_int8_t *)ALIGN
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/include/
H A Ddb-config.h26 #define u_int8_t unsigned char macro
40 #define u_int8_t unsigned char macro
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Diso9660.h64 typedef unsigned int u_int8_t __attribute__((mode(QI))); typedef
76 typedef unsigned char u_int8_t; typedef
82 u_int8_t l,b;
95 typedef u_int8_t iso_date_t[7];
108 u_int8_t name[1];
113 u_int8_t id[5];
115 u_int8_t _unused1[1];
116 u_int8_t system_id[32];
117 u_int8_t volume_id[32];
118 u_int8_t _unused
[all...]
/osnet-11/usr/src/lib/libresolv2/include/sys/
H A Dbitypes.h33 typedef unsigned char u_int8_t; typedef
/osnet-11/usr/src/lib/libresolv2/common/dst/
H A Ddst_internal.h81 const u_int8_t *data, const int len,
82 u_int8_t *signature, const int sig_len);
84 const u_int8_t *data, const int len,
85 const u_int8_t *signature, const int sig_len);
90 int (*to_dns_key)(const DST_KEY *key, u_int8_t *out,
92 int (*from_dns_key)(DST_KEY *key, const u_int8_t *str,
120 int dst_s_calculate_bits( const u_int8_t *str, const int max_bits);
136 u_int16_t dst_s_get_int16( const u_int8_t *buf);
137 void dst_s_put_int16( u_int8_t *buf, const u_int16_t val);
139 u_int32_t dst_s_get_int32( const u_int8_t *bu
[all...]
H A Dsupport.c195 dst_s_put_int16(u_int8_t *buf, const u_int16_t val)
197 buf[0] = (u_int8_t)(val >> 8);
198 buf[1] = (u_int8_t)(val);
213 dst_s_put_int32(u_int8_t *buf, const u_int32_t val)
215 buf[0] = (u_int8_t)(val >> 24);
216 buf[1] = (u_int8_t)(val >> 16);
217 buf[2] = (u_int8_t)(val >> 8);
218 buf[3] = (u_int8_t)(val);
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_func.c74 u_int8_t *k;
77 k = (u_int8_t *)key;
96 u_int8_t *e, c, *k;
98 k = (u_int8_t *)key;
124 u_int8_t *k;
129 k = (u_int8_t *)key;
167 const u_int8_t *k;
174 k = (const u_int8_t *)key;
H A Dhash.h93 u_int8_t *bigdata_buf; /* Temporary Buffer for BIG data */
94 u_int8_t *bigkey_buf; /* Temporary Buffer for BIG keys */
176 u_int8_t status;
181 u_int8_t caused_expand;
/osnet-11/usr/src/cmd/sendmail/db/os/
H A Dos_fid.c30 * PUBLIC: int __os_fileid __P((DB_ENV *, const char *, int, u_int8_t *));
37 u_int8_t *fidp;
42 u_int8_t *p;
62 for (p = (u_int8_t *)&sb.st_ino +
65 for (p = (u_int8_t *)&sb.st_dev +
71 for (p = (u_int8_t *)&now +
H A Dos_rw.c96 u_int8_t *taddr;
107 *nrp = taddr - (u_int8_t *)addr;
126 u_int8_t *taddr;
/osnet-11/usr/src/cmd/sendmail/db/db/
H A Ddb_salloc.c99 rp = (u_int8_t *)elp + sizeof(size_t) + elp->len;
100 rp = (u_int8_t *)rp - len;
101 rp = (u_int8_t *)((ALIGNTYPE)rp & ~(align - 1));
107 if ((u_int8_t *)rp < (u_int8_t *)&elp->links)
117 if ((u_int8_t *)rp >=
118 (u_int8_t *)&elp->links + SHALLOC_FRAGMENT) {
121 ((u_int8_t *)rp - (u_int8_t *)&elp->links);
136 for (sp = rp; (u_int8_t *)
[all...]
H A Ddb_overflow.c93 u_int8_t *p, *src;
140 src = (u_int8_t *)h + P_OVERHEAD;
179 u_int8_t *p;
229 memcpy((u_int8_t *)pagep + P_OVERHEAD, p, pagespace);
317 tmp_dbt.data = (u_int8_t *)pagep + P_OVERHEAD;
359 u_int8_t *p1, *p2;
388 (u_int8_t *)pagep + P_OVERHEAD; cmp_bytes-- > 0; ++p1, ++p2)
/osnet-11/usr/src/cmd/sendmail/db/hash/
H A Dhash_func.c81 const u_int8_t *e, *k;
83 u_int8_t c;
112 const u_int8_t *k;
159 const u_int8_t *k;
216 const u_int8_t *k, *e;
H A Dhash_conv.c95 u_int8_t *p;
98 p = (u_int8_t *)pg;
/osnet-11/usr/src/cmd/sendmail/db/btree/
H A Dbt_conv.c77 u_int8_t *p;
79 p = (u_int8_t *)pg;
/osnet-11/usr/src/cmd/sendmail/db/mp/
H A Dmp_fput.c79 (u_int8_t *)pgaddr <= (u_int8_t *)dbmfp->addr + dbmfp->len) {
85 bhp = (BH *)((u_int8_t *)pgaddr - SSZA(BH, buf));
/osnet-11/usr/src/cmd/sendmail/db/txn/
H A Dtxn_auto.c34 u_int8_t *bp;
58 if ((u_int32_t)(bp - (u_int8_t *)logrec.data) != logrec.size)
115 u_int8_t *bp;
154 u_int8_t *bp;
187 if ((u_int32_t)(bp - (u_int8_t *)logrec.data) != logrec.size)
247 u_int8_t *bp;
294 u_int8_t *bp;
344 if ((u_int32_t)(bp - (u_int8_t *)logrec.data) != logrec.size)
389 ch = ((u_int8_t *)argp->xid.data)[i];
415 u_int8_t *b
[all...]
/osnet-11/usr/src/cmd/sendmail/db/
H A Ddb_int.h76 #define R_ADDR(base, offset) ((void *)((u_int8_t *)((base)->addr) + offset))
77 #define R_OFFSET(base, p) ((u_int8_t *)(p) - (u_int8_t *)(base)->addr)
162 #define MUTEX_LOCK_OFFSET(a, b) ((u_int32_t)((u_int8_t *)b - (u_int8_t *)a))

Completed in 118 milliseconds

1234