bin/cpdup/cpdup.h
61
int32_t hc_bswap32(int32_t var);
bin/cpdup/hclink.c
352
hcc_leaf_int32(hctransaction_t trans, int16_t leafid, int32_t value)
bin/cpdup/hclink.c
361
*(int32_t *)(item + 1) = value;
bin/cpdup/hclink.c
477
int32_t *i32ptr;
bin/cpdup/hclink.h
44
int32_t magic; /* magic number / byte ordering */
bin/cpdup/hclink.h
45
int32_t bytes; /* size of packet */
bin/cpdup/hclink.h
48
int32_t error; /* error code (response) */
bin/cpdup/hclink.h
57
int32_t bytes;
bin/cpdup/hclink.h
78
#define HCC_INT32(item) (*(int32_t *)((item) + 1))
bin/cpdup/hclink.h
97
void hcc_leaf_int32(hctransaction_t trans, int16_t leafid, int32_t value);
bin/cpdup/misc.c
87
int32_t
bin/cpdup/misc.c
88
hc_bswap32(int32_t var)
crypto/libressl/crypto/curve25519/curve25519.c
130
int32_t h0 = h[0];
crypto/libressl/crypto/curve25519/curve25519.c
131
int32_t h1 = h[1];
crypto/libressl/crypto/curve25519/curve25519.c
132
int32_t h2 = h[2];
crypto/libressl/crypto/curve25519/curve25519.c
133
int32_t h3 = h[3];
crypto/libressl/crypto/curve25519/curve25519.c
134
int32_t h4 = h[4];
crypto/libressl/crypto/curve25519/curve25519.c
135
int32_t h5 = h[5];
crypto/libressl/crypto/curve25519/curve25519.c
136
int32_t h6 = h[6];
crypto/libressl/crypto/curve25519/curve25519.c
137
int32_t h7 = h[7];
crypto/libressl/crypto/curve25519/curve25519.c
138
int32_t h8 = h[8];
crypto/libressl/crypto/curve25519/curve25519.c
139
int32_t h9 = h[9];
crypto/libressl/crypto/curve25519/curve25519.c
140
int32_t q;
crypto/libressl/crypto/curve25519/curve25519.c
142
q = (19 * h9 + (((int32_t) 1) << 24)) >> 25;
crypto/libressl/crypto/curve25519/curve25519.c
211
memmove(h, f, sizeof(int32_t) * 10);
crypto/libressl/crypto/curve25519/curve25519.c
215
static void fe_0(fe h) { memset(h, 0, sizeof(int32_t) * 10); }
crypto/libressl/crypto/curve25519/curve25519.c
219
memset(h, 0, sizeof(int32_t) * 10);
crypto/libressl/crypto/curve25519/curve25519.c
283
int32_t f0 = f[0];
crypto/libressl/crypto/curve25519/curve25519.c
284
int32_t f1 = f[1];
crypto/libressl/crypto/curve25519/curve25519.c
285
int32_t f2 = f[2];
crypto/libressl/crypto/curve25519/curve25519.c
286
int32_t f3 = f[3];
crypto/libressl/crypto/curve25519/curve25519.c
287
int32_t f4 = f[4];
crypto/libressl/crypto/curve25519/curve25519.c
288
int32_t f5 = f[5];
crypto/libressl/crypto/curve25519/curve25519.c
289
int32_t f6 = f[6];
crypto/libressl/crypto/curve25519/curve25519.c
290
int32_t f7 = f[7];
crypto/libressl/crypto/curve25519/curve25519.c
291
int32_t f8 = f[8];
crypto/libressl/crypto/curve25519/curve25519.c
292
int32_t f9 = f[9];
crypto/libressl/crypto/curve25519/curve25519.c
293
int32_t g0 = g[0];
crypto/libressl/crypto/curve25519/curve25519.c
294
int32_t g1 = g[1];
crypto/libressl/crypto/curve25519/curve25519.c
295
int32_t g2 = g[2];
crypto/libressl/crypto/curve25519/curve25519.c
296
int32_t g3 = g[3];
crypto/libressl/crypto/curve25519/curve25519.c
297
int32_t g4 = g[4];
crypto/libressl/crypto/curve25519/curve25519.c
298
int32_t g5 = g[5];
crypto/libressl/crypto/curve25519/curve25519.c
299
int32_t g6 = g[6];
crypto/libressl/crypto/curve25519/curve25519.c
300
int32_t g7 = g[7];
crypto/libressl/crypto/curve25519/curve25519.c
301
int32_t g8 = g[8];
crypto/libressl/crypto/curve25519/curve25519.c
302
int32_t g9 = g[9];
crypto/libressl/crypto/curve25519/curve25519.c
303
int32_t g1_19 = 19 * g1; /* 1.959375*2^29 */
crypto/libressl/crypto/curve25519/curve25519.c
304
int32_t g2_19 = 19 * g2; /* 1.959375*2^30; still ok */
crypto/libressl/crypto/curve25519/curve25519.c
305
int32_t g3_19 = 19 * g3;
crypto/libressl/crypto/curve25519/curve25519.c
306
int32_t g4_19 = 19 * g4;
crypto/libressl/crypto/curve25519/curve25519.c
307
int32_t g5_19 = 19 * g5;
crypto/libressl/crypto/curve25519/curve25519.c
308
int32_t g6_19 = 19 * g6;
crypto/libressl/crypto/curve25519/curve25519.c
309
int32_t g7_19 = 19 * g7;
crypto/libressl/crypto/curve25519/curve25519.c
310
int32_t g8_19 = 19 * g8;
crypto/libressl/crypto/curve25519/curve25519.c
311
int32_t g9_19 = 19 * g9;
crypto/libressl/crypto/curve25519/curve25519.c
312
int32_t f1_2 = 2 * f1;
crypto/libressl/crypto/curve25519/curve25519.c
313
int32_t f3_2 = 2 * f3;
crypto/libressl/crypto/curve25519/curve25519.c
314
int32_t f5_2 = 2 * f5;
crypto/libressl/crypto/curve25519/curve25519.c
315
int32_t f7_2 = 2 * f7;
crypto/libressl/crypto/curve25519/curve25519.c
316
int32_t f9_2 = 2 * f9;
crypto/libressl/crypto/curve25519/curve25519.c
4741
int32_t x = f[i] ^ g[i];
crypto/libressl/crypto/curve25519/curve25519.c
4757
int32_t f0 = f[0];
crypto/libressl/crypto/curve25519/curve25519.c
4758
int32_t f1 = f[1];
crypto/libressl/crypto/curve25519/curve25519.c
4759
int32_t f2 = f[2];
crypto/libressl/crypto/curve25519/curve25519.c
4760
int32_t f3 = f[3];
crypto/libressl/crypto/curve25519/curve25519.c
4761
int32_t f4 = f[4];
crypto/libressl/crypto/curve25519/curve25519.c
4762
int32_t f5 = f[5];
crypto/libressl/crypto/curve25519/curve25519.c
4763
int32_t f6 = f[6];
crypto/libressl/crypto/curve25519/curve25519.c
4764
int32_t f7 = f[7];
crypto/libressl/crypto/curve25519/curve25519.c
4765
int32_t f8 = f[8];
crypto/libressl/crypto/curve25519/curve25519.c
4766
int32_t f9 = f[9];
crypto/libressl/crypto/curve25519/curve25519.c
509
int32_t f0 = f[0];
crypto/libressl/crypto/curve25519/curve25519.c
510
int32_t f1 = f[1];
crypto/libressl/crypto/curve25519/curve25519.c
511
int32_t f2 = f[2];
crypto/libressl/crypto/curve25519/curve25519.c
512
int32_t f3 = f[3];
crypto/libressl/crypto/curve25519/curve25519.c
513
int32_t f4 = f[4];
crypto/libressl/crypto/curve25519/curve25519.c
514
int32_t f5 = f[5];
crypto/libressl/crypto/curve25519/curve25519.c
515
int32_t f6 = f[6];
crypto/libressl/crypto/curve25519/curve25519.c
516
int32_t f7 = f[7];
crypto/libressl/crypto/curve25519/curve25519.c
517
int32_t f8 = f[8];
crypto/libressl/crypto/curve25519/curve25519.c
518
int32_t f9 = f[9];
crypto/libressl/crypto/curve25519/curve25519.c
519
int32_t f0_2 = 2 * f0;
crypto/libressl/crypto/curve25519/curve25519.c
520
int32_t f1_2 = 2 * f1;
crypto/libressl/crypto/curve25519/curve25519.c
521
int32_t f2_2 = 2 * f2;
crypto/libressl/crypto/curve25519/curve25519.c
522
int32_t f3_2 = 2 * f3;
crypto/libressl/crypto/curve25519/curve25519.c
523
int32_t f4_2 = 2 * f4;
crypto/libressl/crypto/curve25519/curve25519.c
524
int32_t f5_2 = 2 * f5;
crypto/libressl/crypto/curve25519/curve25519.c
525
int32_t f6_2 = 2 * f6;
crypto/libressl/crypto/curve25519/curve25519.c
526
int32_t f7_2 = 2 * f7;
crypto/libressl/crypto/curve25519/curve25519.c
527
int32_t f5_38 = 38 * f5; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
528
int32_t f6_19 = 19 * f6; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
529
int32_t f7_38 = 38 * f7; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
530
int32_t f8_19 = 19 * f8; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
531
int32_t f9_38 = 38 * f9; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
725
int32_t x = f[i] ^ g[i];
crypto/libressl/crypto/curve25519/curve25519.c
766
int32_t f0 = f[0];
crypto/libressl/crypto/curve25519/curve25519.c
767
int32_t f1 = f[1];
crypto/libressl/crypto/curve25519/curve25519.c
768
int32_t f2 = f[2];
crypto/libressl/crypto/curve25519/curve25519.c
769
int32_t f3 = f[3];
crypto/libressl/crypto/curve25519/curve25519.c
770
int32_t f4 = f[4];
crypto/libressl/crypto/curve25519/curve25519.c
771
int32_t f5 = f[5];
crypto/libressl/crypto/curve25519/curve25519.c
772
int32_t f6 = f[6];
crypto/libressl/crypto/curve25519/curve25519.c
773
int32_t f7 = f[7];
crypto/libressl/crypto/curve25519/curve25519.c
774
int32_t f8 = f[8];
crypto/libressl/crypto/curve25519/curve25519.c
775
int32_t f9 = f[9];
crypto/libressl/crypto/curve25519/curve25519.c
776
int32_t f0_2 = 2 * f0;
crypto/libressl/crypto/curve25519/curve25519.c
777
int32_t f1_2 = 2 * f1;
crypto/libressl/crypto/curve25519/curve25519.c
778
int32_t f2_2 = 2 * f2;
crypto/libressl/crypto/curve25519/curve25519.c
779
int32_t f3_2 = 2 * f3;
crypto/libressl/crypto/curve25519/curve25519.c
780
int32_t f4_2 = 2 * f4;
crypto/libressl/crypto/curve25519/curve25519.c
781
int32_t f5_2 = 2 * f5;
crypto/libressl/crypto/curve25519/curve25519.c
782
int32_t f6_2 = 2 * f6;
crypto/libressl/crypto/curve25519/curve25519.c
783
int32_t f7_2 = 2 * f7;
crypto/libressl/crypto/curve25519/curve25519.c
784
int32_t f5_38 = 38 * f5; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
785
int32_t f6_19 = 19 * f6; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
786
int32_t f7_38 = 38 * f7; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
787
int32_t f8_19 = 19 * f8; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519.c
788
int32_t f9_38 = 38 * f9; /* 1.959375*2^30 */
crypto/libressl/crypto/curve25519/curve25519_internal.h
29
typedef int32_t fe[10];
crypto/libressl/crypto/ec/ec_lcl.h
454
int32_t flags;
crypto/libressl/ssl/ssl_asn1.c
39
if (sizeof(time_t) == sizeof(int32_t))
crypto/openssh/audit-bsm.c
71
#define AUToReturnFunc(a,b) au_to_return32((a), (int32_t)(b))
crypto/openssh/crypto_api.h
22
typedef int32_t crypto_int32;
crypto/openssh/sftp-server.c
374
*stringp = xmalloc(sizeof(int32_t));
crypto/openssh/sftp-server.c
376
*hlenp = sizeof(int32_t);
crypto/openssh/sftp-server.c
385
if (hlen != sizeof(int32_t))
crypto/openssh/xmss_commons.c
21
int32_t i;
include/protocols/dumprestore.h
66
int32_t c_type; /* record type (see below) */
include/protocols/dumprestore.h
67
int32_t c_date; /* date of this dump */
include/protocols/dumprestore.h
68
int32_t c_ddate; /* date of previous dump */
include/protocols/dumprestore.h
69
int32_t c_volume; /* dump volume number */
include/protocols/dumprestore.h
72
int32_t c_magic; /* magic number (see above) */
include/protocols/dumprestore.h
73
int32_t c_checksum; /* record checksum */
include/protocols/dumprestore.h
75
int32_t c_count; /* number of valid c_addr entries */
include/protocols/dumprestore.h
78
int32_t c_level; /* level of this dump */
include/protocols/dumprestore.h
82
int32_t c_flags; /* additional information */
include/protocols/dumprestore.h
83
int32_t c_firstrec; /* first record on volume */
include/protocols/dumprestore.h
84
int32_t c_spare[32]; /* reserved for future uses */
include/protocols/rwhod.h
41
int32_t out_time; /* time on */
include/protocols/talkd.h
75
int32_t pid; /* caller's process id */
include/resolv.h
189
int32_t __align32; /* 32bit alignment */
include/rpc/auth.h
73
int32_t flags; /* AUTH_F_xxx flags */
include/rpc/auth.h
96
int32_t netnamelen; /* server's netname len */
include/rpc/clnt.h
76
int32_t s1;
include/rpc/clnt.h
77
int32_t s2;
include/rpc/types.h
44
typedef int32_t bool_t;
include/rpc/types.h
45
typedef int32_t enum_t;
include/rpc/types.h
52
typedef int32_t rpc_inline_t;
include/rpc/xdr.h
114
int32_t *(*x_inline)(struct __rpc_xdr *, u_int);
include/rpc/xdr.h
162
xdr_getint32(XDR *xdrs, int32_t *ip)
include/rpc/xdr.h
168
*ip = (int32_t)l;
include/rpc/xdr.h
173
xdr_putint32(XDR *xdrs, int32_t *ip)
include/rpc/xdr.h
258
#define IXDR_GET_INT32(buf) ((int32_t)__ntohl((uint32_t)*(buf)++))
include/rpc/xdr.h
259
#define IXDR_PUT_INT32(buf, v) (*(buf)++ =(int32_t)__htonl((uint32_t)v))
include/rpc/xdr.h
261
#define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32((buf), ((int32_t)(v)))
include/rpc/xdr.h
264
#define IXDR_PUT_LONG(buf, v) (*(buf)++ =(int32_t)__htonl((uint32_t)v))
include/rpc/xdr.h
292
extern bool_t xdr_int32_t(XDR *, int32_t *);
include/uuid.h
50
int32_t uuid_compare(const uuid_t *, const uuid_t *, uint32_t *);
include/uuid.h
53
int32_t uuid_equal(const uuid_t *, const uuid_t *, uint32_t *);
include/uuid.h
56
int32_t uuid_is_nil(const uuid_t *, uint32_t *);
lib/csu/common/crtbrand.c
54
int32_t namesz;
lib/csu/common/crtbrand.c
55
int32_t descsz;
lib/csu/common/crtbrand.c
56
int32_t type;
lib/csu/common/crtbrand.c
58
int32_t desc;
lib/csu/common/crtbrand.c
62
.descsz = sizeof(int32_t),
lib/csu/common/initfini.c
103
int32_t namesz;
lib/csu/common/initfini.c
104
int32_t descsz;
lib/csu/common/initfini.c
105
int32_t type;
lib/i18n_module/mapper_zone/citrus_mapper_zone.c
208
check_rowcol(struct _zone *z, int32_t ofs, uint32_t maxval)
lib/i18n_module/mapper_zone/citrus_mapper_zone.c
66
int32_t mz_col_offset;
lib/i18n_module/mapper_zone/citrus_mapper_zone.c
67
int32_t mz_row_offset;
lib/i18n_module/mapper_zone/citrus_mapper_zone.c
75
int32_t s_imm;
lib/libc/db/hash/hash.c
154
if ((int32_t)hashp->hash(CHARKEY, sizeof(CHARKEY)) != hashp->H_CHARKEY)
lib/libc/db/hash/hash.h
63
int32_t magic; /* Magic NO for hash tables */
lib/libc/db/hash/hash.h
64
int32_t version; /* Version ID */
lib/libc/db/hash/hash.h
66
int32_t bsize; /* Bucket/Page Size */
lib/libc/db/hash/hash.h
67
int32_t bshift; /* Bucket shift */
lib/libc/db/hash/hash.h
68
int32_t dsize; /* Directory Size */
lib/libc/db/hash/hash.h
69
int32_t ssize; /* Segment Size */
lib/libc/db/hash/hash.h
70
int32_t sshift; /* Segment shift */
lib/libc/db/hash/hash.h
71
int32_t ovfl_point; /* Where overflow pages are being
lib/libc/db/hash/hash.h
73
int32_t last_freed; /* Last overflow page freed */
lib/libc/db/hash/hash.h
79
int32_t nkeys; /* Number of keys in hash table */
lib/libc/db/hash/hash.h
80
int32_t hdrpages; /* Size of table header */
lib/libc/db/hash/hash.h
81
int32_t h_charkey; /* value of hash(CHARKEY) */
lib/libc/db/hash/hash.h
84
int32_t spares[NCACHED];/* spare pages for overflow */
lib/libc/gen/getpwent.c
967
int32_t pw_change, pw_expire;
lib/libc/gen/ldexp.c
98
int32_t k,hx,lx;
lib/libc/gen/modf.c
92
int32_t i0,i1,j0;
lib/libc/locale/collate.c
204
static const int32_t *
lib/libc/locale/collate.c
395
const int32_t *state;
lib/libc/locale/collate.c
541
const int32_t *state;
lib/libc/locale/collate.c
663
int32_t e;
lib/libc/locale/collate.h
102
int32_t pri[COLL_WEIGHTS_MAX];
lib/libc/locale/collate.h
106
int32_t val;
lib/libc/locale/collate.h
111
int32_t key;
lib/libc/locale/collate.h
112
int32_t pri[COLLATE_STR_LEN];
lib/libc/locale/collate.h
88
int32_t pri_count[COLL_WEIGHTS_MAX];
lib/libc/locale/collate.h
89
int32_t flags;
lib/libc/locale/collate.h
90
int32_t chain_count;
lib/libc/locale/collate.h
91
int32_t large_count;
lib/libc/locale/collate.h
92
int32_t subst_count[COLL_WEIGHTS_MAX];
lib/libc/locale/collate.h
93
int32_t undef_pri[COLL_WEIGHTS_MAX];
lib/libc/locale/collate.h
97
int32_t pri[COLL_WEIGHTS_MAX];
lib/libc/locale/runefile.h
39
int32_t min;
lib/libc/locale/runefile.h
40
int32_t max;
lib/libc/locale/runefile.h
41
int32_t map;
lib/libc/locale/runefile.h
49
int32_t maplower[_CACHED_RUNES];
lib/libc/locale/runefile.h
50
int32_t mapupper[_CACHED_RUNES];
lib/libc/locale/runefile.h
52
int32_t runetype_ext_nranges;
lib/libc/locale/runefile.h
53
int32_t maplower_ext_nranges;
lib/libc/locale/runefile.h
54
int32_t mapupper_ext_nranges;
lib/libc/locale/runefile.h
56
int32_t variable_len;
lib/libc/net/gethostbydns.c
99
int32_t al;
lib/libc/net/map_v4v6.c
71
int32_t al;
lib/libc/resolv/res_debug.c
1014
int32_t latval, longval, altval;
lib/libc/rpc/rpc_callmsg.c
56
int32_t *buf;
lib/libc/rpc/rpc_callmsg.c
91
buf += RNDUP(oa->oa_length) / sizeof (int32_t);
lib/libc/rpc/rpc_prot.c
259
error->re_lb.s1 = (int32_t)MSG_ACCEPTED;
lib/libc/rpc/rpc_prot.c
260
error->re_lb.s2 = (int32_t)acpt_stat;
lib/libc/rpc/rpc_prot.c
281
error->re_lb.s1 = (int32_t)MSG_DENIED;
lib/libc/rpc/rpc_prot.c
282
error->re_lb.s2 = (int32_t)rjct_stat;
lib/libc/rpc/rpc_prot.c
312
error->re_lb.s1 = (int32_t)(msg->rm_reply.rp_stat);
lib/libc/rpc/rpcb_prot.c
237
int32_t *buf;
lib/libc/rpc/rpcb_st_xdr.c
85
int32_t *buf;
lib/libc/rpc/svc_auth_unix.c
61
int32_t *buf;
lib/libc/rpc/svc_auth_unix.c
91
buf += str_len / sizeof (int32_t);
lib/libc/stdlib/dmalloc.c
220
int32_t magic; /* magic number for sanity check */
lib/libc/stdlib/dmalloc.c
318
static const int32_t weirdary[16] = {
lib/libc/stdlib/nmalloc.c
184
int32_t z_Magic; /* magic number for sanity check */
lib/libc/stdlib/random.c
201
static inline uint32_t good_rand(int32_t);
lib/libc/stdlib/random.c
212
good_rand(int32_t x)
lib/libc/stdlib/random.c
214
int32_t hi, lo;
lib/libc/string/wcscoll.c
73
const int32_t *st1 = NULL;
lib/libc/string/wcscoll.c
74
const int32_t *st2 = NULL;
lib/libc/uuid/uuid_compare.c
48
int32_t
lib/libc/uuid/uuid_equal.c
39
int32_t
lib/libc/uuid/uuid_is_nil.c
38
int32_t
lib/libc/xdr/xdr.c
199
xdr_int32_t(XDR *xdrs, int32_t *int32_p)
lib/libc/xdr/xdr.c
213
*int32_p = (int32_t) l;
lib/libc/xdr/xdr_float.c
103
i32p = (int32_t *)(void *)dp;
lib/libc/xdr/xdr_float.c
67
return (XDR_PUTINT32(xdrs, (int32_t *)fp));
lib/libc/xdr/xdr_float.c
70
return (XDR_GETINT32(xdrs, (int32_t *)fp));
lib/libc/xdr/xdr_float.c
82
int32_t *i32p;
lib/libc/xdr/xdr_float.c
88
i32p = (int32_t *)(void *)dp;
lib/libc/xdr/xdr_mem.c
103
xdrs->x_ops = ((unsigned long)addr & (sizeof(int32_t) - 1))
lib/libc/xdr/xdr_mem.c
120
if (xdrs->x_handy < sizeof(int32_t))
lib/libc/xdr/xdr_mem.c
122
xdrs->x_handy -= sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
124
xdrs->x_private = (char *)xdrs->x_private + sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
132
if (xdrs->x_handy < sizeof(int32_t))
lib/libc/xdr/xdr_mem.c
134
xdrs->x_handy -= sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
136
xdrs->x_private = (char *)xdrs->x_private + sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
145
if (xdrs->x_handy < sizeof(int32_t))
lib/libc/xdr/xdr_mem.c
147
xdrs->x_handy -= sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
148
memmove(&l, xdrs->x_private, sizeof(int32_t));
lib/libc/xdr/xdr_mem.c
150
xdrs->x_private = (char *)xdrs->x_private + sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
159
if (xdrs->x_handy < sizeof(int32_t))
lib/libc/xdr/xdr_mem.c
161
xdrs->x_handy -= sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
163
memmove(xdrs->x_private, &l, sizeof(int32_t));
lib/libc/xdr/xdr_mem.c
164
xdrs->x_private = (char *)xdrs->x_private + sizeof(int32_t);
lib/libc/xdr/xdr_mem.c
213
static int32_t *
lib/libc/xdr/xdr_mem.c
216
int32_t *buf = NULL;
lib/libc/xdr/xdr_mem.c
220
buf = (int32_t *)xdrs->x_private;
lib/libc/xdr/xdr_mem.c
227
static int32_t *
lib/libc/xdr/xdr_mem.c
67
static int32_t *xdrmem_inline_aligned(XDR *, u_int);
lib/libc/xdr/xdr_mem.c
68
static int32_t *xdrmem_inline_unaligned(XDR *, u_int);
lib/libc/xdr/xdr_rec.c
230
int32_t *buflp = (int32_t *)(void *)(rstrm->in_finger);
lib/libc/xdr/xdr_rec.c
231
int32_t mylong;
lib/libc/xdr/xdr_rec.c
234
if ((rstrm->fbtbc >= sizeof(int32_t)) &&
lib/libc/xdr/xdr_rec.c
235
(((long)rstrm->in_boundry - (long)buflp) >= sizeof(int32_t))) {
lib/libc/xdr/xdr_rec.c
237
rstrm->fbtbc -= sizeof(int32_t);
lib/libc/xdr/xdr_rec.c
238
rstrm->in_finger += sizeof(int32_t);
lib/libc/xdr/xdr_rec.c
241
sizeof(int32_t)))
lib/libc/xdr/xdr_rec.c
252
int32_t *dest_lp = ((int32_t *)(void *)(rstrm->out_finger));
lib/libc/xdr/xdr_rec.c
254
if ((rstrm->out_finger += sizeof(int32_t)) > rstrm->out_boundry) {
lib/libc/xdr/xdr_rec.c
259
rstrm->out_finger -= sizeof(int32_t);
lib/libc/xdr/xdr_rec.c
263
dest_lp = ((int32_t *)(void *)(rstrm->out_finger));
lib/libc/xdr/xdr_rec.c
264
rstrm->out_finger += sizeof(int32_t);
lib/libc/xdr/xdr_rec.c
266
*dest_lp = (int32_t)htonl((uint32_t)(*lp));
lib/libc/xdr/xdr_rec.c
380
static int32_t *
lib/libc/xdr/xdr_rec.c
384
int32_t *buf = NULL;
lib/libc/xdr/xdr_rec.c
390
buf = (int32_t *)(void *)rstrm->out_finger;
lib/libc/xdr/xdr_rec.c
398
buf = (int32_t *)(void *)rstrm->in_finger;
lib/libc/xdr/xdr_rec.c
79
static int32_t *xdrrec_inline(XDR *, u_int);
lib/libc/xdr/xdr_sizeof.c
101
return ((int32_t *) xdrs->x_private);
lib/libc/xdr/xdr_sizeof.c
78
static int32_t *
lib/libc/xdr/xdr_sizeof.c
90
return ((int32_t *) xdrs->x_private);
lib/libc/xdr/xdr_stdio.c
109
if (fread(&temp, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
lib/libc/xdr/xdr_stdio.c
118
int32_t mycopy = htonl((uint32_t)*lp);
lib/libc/xdr/xdr_stdio.c
120
if (fwrite(&mycopy, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
lib/libc/xdr/xdr_stdio.c
160
static int32_t *
lib/libc/xdr/xdr_stdio.c
60
static int32_t *xdrstdio_inline(XDR *, u_int);
lib/libcrypt/crypt-des.c
710
int32_t i0;
lib/libcrypt/crypt-des.c
711
int32_t i1;
lib/libdevattr/devattr.h
68
int32_t udev_device_get_major(struct udev_device *udev_device);
lib/libdevattr/devattr.h
69
int32_t udev_device_get_minor(struct udev_device *udev_device);
lib/libdevattr/devattr_device.c
180
int32_t
lib/libdevattr/devattr_device.c
184
int32_t major;
lib/libdevattr/devattr_device.c
193
major = (int32_t)prop_number_integer_value(pn);
lib/libdevattr/devattr_device.c
198
int32_t
lib/libdevattr/devattr_device.c
202
int32_t minor;
lib/libdevattr/devattr_device.c
211
minor = (int32_t)prop_number_integer_value(pn);
lib/libdm/libdm.h
39
int32_t open_count;
lib/libdm/libdm.h
40
int32_t target_count;
lib/libefivar/efi-osdep.h
46
typedef int32_t INT32;
lib/libefivar/uefi-dplib.h
629
int32_t ignored_status;
lib/libevtr/ktrfmt.yy.c
67
typedef int32_t flex_int32_t;
lib/libexecinfo/private_libelf.h
413
typedef int32_t Elf64_Sword; /* Signed integer. */
lib/libhammer/libhammer.h
104
int32_t rootvol; /* Root volume # */
lib/libhammer/libhammer.h
105
int32_t rsv[7];
lib/libhammer/libhammer.h
59
int32_t error;
lib/libhammer/libhammer.h
60
int32_t flags;
lib/libhammer/libhammer.h
61
int32_t rsv[2];
lib/libldns/ldns/util.h
289
struct tm * ldns_serial_arithmetics_gmtime_r(int32_t time, time_t now, struct tm *result);
lib/libsdp/sdp-int.h
56
int32_t s; /* L2CAP socket */
lib/libsdp/sdp-int.h
57
int32_t error; /* last error code */
lib/libsdp/sdp.h
459
int32_t sdp_close (void *xs);
lib/libsdp/sdp.h
460
int32_t sdp_error (void *xs);
lib/libsdp/sdp.h
462
int32_t sdp_search (void *xs,
lib/libsdp/sdp.h
594
int32_t sdp_register_service (void *xss, uint16_t uuid,
lib/libsdp/sdp.h
597
int32_t sdp_unregister_service (void *xss, uint32_t handle);
lib/libsdp/sdp.h
598
int32_t sdp_change_service (void *xss, uint32_t handle,
lib/libsdp/search.c
48
int32_t
lib/libsdp/search.c
61
int32_t t, len;
lib/libsdp/service.c
144
int32_t
lib/libsdp/service.c
150
int32_t len;
lib/libsdp/service.c
189
int32_t
lib/libsdp/service.c
196
int32_t len;
lib/libsdp/service.c
236
static int32_t
lib/libsdp/service.c
240
int32_t len;
lib/libsdp/service.c
76
static int32_t sdp_receive_error_pdu(sdp_session_p ss);
lib/libsdp/service.c
78
int32_t
lib/libsdp/service.c
85
int32_t len;
lib/libsdp/session.c
194
int32_t
lib/libsdp/session.c
215
int32_t
lib/libsdp/util.c
310
int32_t int32;
lib/libu4bhid/data.c
39
int32_t
lib/libu4bhid/data.c
75
data = (int32_t)((int32_t)data << hsize) >> hsize;
lib/libu4bhid/data.c
83
hid_set_data(void *p, const hid_item_t *h, int32_t data)
lib/libu4bhid/parse.c
216
int32_t mask;
lib/libu4bhid/parse.c
217
int32_t dval;
lib/libu4bhid/parse.c
48
int32_t rid;
lib/libu4bhid/parse.c
59
int32_t usages_min[MAXUSAGE];
lib/libu4bhid/parse.c
60
int32_t usages_max[MAXUSAGE];
lib/libu4bhid/parse.c
61
int32_t usage_last; /* last seen usage */
lib/libu4bhid/parse.c
72
int32_t reportid; /* requested report ID */
lib/libu4bhid/parse.c
95
hid_switch_rid(struct hid_data *s, struct hid_item *c, int32_t next_rID)
lib/libu4bhid/usbhid.h
106
int32_t hid_get_data(const void *p, const hid_item_t *h);
lib/libu4bhid/usbhid.h
107
void hid_set_data(void *p, const hid_item_t *h, int32_t data);
lib/libu4bhid/usbhid.h
45
int32_t logical_minimum;
lib/libu4bhid/usbhid.h
46
int32_t logical_maximum;
lib/libu4bhid/usbhid.h
47
int32_t physical_minimum;
lib/libu4bhid/usbhid.h
48
int32_t physical_maximum;
lib/libu4bhid/usbhid.h
49
int32_t unit_exponent;
lib/libu4bhid/usbhid.h
50
int32_t unit;
lib/libu4bhid/usbhid.h
51
int32_t report_size;
lib/libu4bhid/usbhid.h
52
int32_t report_ID;
lib/libu4bhid/usbhid.h
54
int32_t report_count;
lib/libu4bhid/usbhid.h
57
int32_t usage_minimum;
lib/libu4bhid/usbhid.h
58
int32_t usage_maximum;
lib/libu4bhid/usbhid.h
59
int32_t designator_index;
lib/libu4bhid/usbhid.h
60
int32_t designator_minimum;
lib/libu4bhid/usbhid.h
61
int32_t designator_maximum;
lib/libu4bhid/usbhid.h
62
int32_t string_index;
lib/libu4bhid/usbhid.h
63
int32_t string_minimum;
lib/libu4bhid/usbhid.h
64
int32_t string_maximum;
lib/libu4bhid/usbhid.h
65
int32_t set_delimiter;
lib/libu4bhid/usbhid.h
67
int32_t collection;
libexec/bootpd/bptypes.h
14
#define int32 int32_t
libexec/rtld-elf/rtld.c
1423
note->n_descsz != sizeof(int32_t))
libexec/rtld-elf/rtld.c
1436
obj->osrel = *(const int32_t *)(p);
libexec/rtld-elf/rtld.h
224
int32_t osrel; /* OSREL note value */
sbin/dhclient/convert.c
58
int32_t
sbin/dhclient/convert.c
61
int32_t ibuf;
sbin/dhclient/convert.c
94
putLong(unsigned char *obuf, int32_t val)
sbin/dhclient/convert.c
96
int32_t tmp = htonl(val);
sbin/dhclient/dhcpd.h
263
int32_t getLong(unsigned char *);
sbin/dhclient/dhcpd.h
267
void putLong(unsigned char *, int32_t);
sbin/dump/traverse.c
509
int32_t sum, cnt, *lp;
sbin/dump/traverse.c
514
lp = (int32_t *)&spcl;
sbin/dump/traverse.c
516
cnt = sizeof(union u_spcl) / (4 * sizeof(int32_t));
sbin/fsck/fsck.h
272
extern void ffs_fragacct(struct fs *, int, int32_t [], int);
sbin/fsck/pass5.c
121
newcg->cg_btotoff + fs->fs_cpg * sizeof(int32_t);
sbin/fsck/pass5.c
262
int32_t *sump = cg_clustersum(newcg);
sbin/fsdb/fsdb.c
806
dotime(char *name, int32_t *rts)
sbin/fsdb/fsdb.c
810
int32_t sec;
sbin/fsdb/fsdb.c
811
int32_t nsec;
sbin/growfs/growfs.c
386
acg.cg_boff = acg.cg_btotoff + sblock.fs_cpg * sizeof(int32_t);
sbin/growfs/growfs.c
466
int32_t *sump = cg_clustersum(&acg);
sbin/hammer/cmd_blockmap.c
456
collect_blockmap(hammer_off_t offset, int32_t length, int zone)
sbin/hammer/cmd_blockmap.c
79
static void collect_blockmap(hammer_off_t offset, int32_t length, int zone);
sbin/hammer/cmd_show.c
682
int32_t buf_len, len;
sbin/hammer/cmd_show.c
753
int32_t data_len;
sbin/hammer/hammer.c
275
int32_t crcx;
sbin/hammer/hammer.c
328
int32_t key;
sbin/hammer/hammer_util.h
128
volume_info_t init_volume(const char *filename, int oflags, int32_t vol_no);
sbin/hammer/hammer_util.h
132
volume_info_t get_volume(int32_t vol_no);
sbin/hammer/hammer_util.h
139
void *alloc_meta_element(hammer_off_t *offp, int32_t data_len,
sbin/hammer/ondisk.c
188
init_volume(const char *filename, int oflags, int32_t vol_no)
sbin/hammer/ondisk.c
298
get_volume(int32_t vol_no)
sbin/hammer/ondisk.c
505
((int32_t)buf_offset & HAMMER_BUFMASK));
sbin/hammer/ondisk.c
526
alloc_meta_element(hammer_off_t *offp, int32_t data_len,
sbin/hammer2/lz4/hammer2_lz4.c
123
typedef int32_t S32;
sbin/ipfw/ipfw2.c
3402
*((int32_t *)(dst+1)) = (int32_t)(match_prob * 0x7fffffff);
sbin/jscan/jattr.h
46
int32_t fflags;
sbin/newfs/mkfs.c
802
acg.cg_boff = acg.cg_btotoff + sblock.fs_cpg * sizeof(int32_t);
sbin/newfs/mkfs.c
886
int32_t *sump = cg_clustersum(&acg);
sbin/ping/ping.c
100
int32_t tv32_sec;
sbin/ping/ping.c
101
int32_t tv32_usec;
sbin/ping6/ping6.c
1485
int32_t ttl;
sbin/ping6/ping6.c
1507
ttl = (int32_t)ntohl(*(u_long *)&buf[off+ICMP6ECHOLEN+8]);
sbin/restore/dirs.c
66
int32_t t_seekpt;
sbin/restore/dirs.c
67
int32_t t_size;
sbin/restore/dirs.c
90
int32_t dd_loc;
sbin/restore/dirs.c
91
int32_t dd_size;
sbin/restore/symtab.c
419
int32_t volno;
sbin/restore/symtab.c
420
int32_t stringsize;
sbin/restore/symtab.c
421
int32_t entrytblsize;
sbin/restore/symtab.c
425
int32_t ntrec;
sbin/restore/tape.c
1005
int32_t val[2];
sbin/restore/tape.c
1010
int32_t c_type;
sbin/restore/tape.c
1011
int32_t c_date;
sbin/restore/tape.c
1012
int32_t c_ddate;
sbin/restore/tape.c
1013
int32_t c_volume;
sbin/restore/tape.c
1014
int32_t c_tapea;
sbin/restore/tape.c
1016
int32_t c_magic;
sbin/restore/tape.c
1017
int32_t c_checksum;
sbin/restore/tape.c
1023
int32_t odi_size;
sbin/restore/tape.c
1024
int32_t odi_rdev;
sbin/restore/tape.c
1026
int32_t odi_atime;
sbin/restore/tape.c
1027
int32_t odi_mtime;
sbin/restore/tape.c
1028
int32_t odi_ctime;
sbin/restore/tape.c
1030
int32_t c_count;
sbin/sysctl/sysctl.c
163
int32_t i32val;
sbin/sysctl/sysctl.c
270
i32val = (int32_t)strtol(newval, NULL, 0);
sbin/udevd/udevd.h
47
int32_t refs;
sbin/vquota/vquota.c
354
int32_t uid, gid;
stand/boot/common/dinode.h
118
int32_t di_mtimensec; /* 64: Last modified time. */
stand/boot/common/dinode.h
119
int32_t di_atimensec; /* 68: Last access time. */
stand/boot/common/dinode.h
120
int32_t di_ctimensec; /* 72: Last inode change time. */
stand/boot/common/dinode.h
121
int32_t di_birthnsec; /* 76: Inode creation time. */
stand/boot/common/dinode.h
122
int32_t di_gen; /* 80: Generation number. */
stand/boot/common/dinode.h
125
int32_t di_extsize; /* 92: External attributes block. */
stand/boot/common/dinode.h
154
int32_t di_atime; /* 16: Last access time. */
stand/boot/common/dinode.h
155
int32_t di_atimensec; /* 20: Last access time. */
stand/boot/common/dinode.h
156
int32_t di_mtime; /* 24: Last modified time. */
stand/boot/common/dinode.h
157
int32_t di_mtimensec; /* 28: Last modified time. */
stand/boot/common/dinode.h
158
int32_t di_ctime; /* 32: Last inode change time. */
stand/boot/common/dinode.h
159
int32_t di_ctimensec; /* 36: Last inode change time. */
stand/boot/common/dinode.h
163
int32_t di_blocks; /* 104: Blocks actually held. */
stand/boot/common/dinode.h
164
int32_t di_gen; /* 108: Generation number. */
stand/boot/common/dinode.h
167
int32_t di_spare[2]; /* 120: Reserved; currently unused */
stand/boot/common/dinode.h
70
typedef int32_t ufs1_daddr_t;
stand/boot/common/fs.h
216
int32_t version; /* version of command structure */
stand/boot/common/fs.h
217
int32_t handle; /* reference to filesystem to be changed */
stand/boot/common/fs.h
230
int32_t cs_ndir; /* number of directories */
stand/boot/common/fs.h
231
int32_t cs_nbfree; /* number of free blocks */
stand/boot/common/fs.h
232
int32_t cs_nifree; /* number of free inodes */
stand/boot/common/fs.h
233
int32_t cs_nffree; /* number of free frags */
stand/boot/common/fs.h
248
int32_t fs_firstfield; /* historic filesystem linked list, */
stand/boot/common/fs.h
249
int32_t fs_unused_1; /* used for incore super blocks */
stand/boot/common/fs.h
250
int32_t fs_sblkno; /* offset of super-block in filesys */
stand/boot/common/fs.h
251
int32_t fs_cblkno; /* offset of cyl-block in filesys */
stand/boot/common/fs.h
252
int32_t fs_iblkno; /* offset of inode-blocks in filesys */
stand/boot/common/fs.h
253
int32_t fs_dblkno; /* offset of first data after cg */
stand/boot/common/fs.h
254
int32_t fs_old_cgoffset; /* cylinder group offset in cylinder */
stand/boot/common/fs.h
255
int32_t fs_old_cgmask; /* used to calc mod fs_ntrak */
stand/boot/common/fs.h
256
int32_t fs_old_time; /* last time written */
stand/boot/common/fs.h
257
int32_t fs_old_size; /* number of blocks in fs */
stand/boot/common/fs.h
258
int32_t fs_old_dsize; /* number of data blocks in fs */
stand/boot/common/fs.h
259
int32_t fs_ncg; /* number of cylinder groups */
stand/boot/common/fs.h
260
int32_t fs_bsize; /* size of basic blocks in fs */
stand/boot/common/fs.h
261
int32_t fs_fsize; /* size of frag blocks in fs */
stand/boot/common/fs.h
262
int32_t fs_frag; /* number of frags in a block in fs */
stand/boot/common/fs.h
264
int32_t fs_minfree; /* minimum percentage of free blocks */
stand/boot/common/fs.h
265
int32_t fs_old_rotdelay; /* num of ms for optimal next block */
stand/boot/common/fs.h
266
int32_t fs_old_rps; /* disk revolutions per second */
stand/boot/common/fs.h
268
int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */
stand/boot/common/fs.h
269
int32_t fs_fmask; /* ``fragoff'' calc of frag offsets */
stand/boot/common/fs.h
270
int32_t fs_bshift; /* ``lblkno'' calc of logical blkno */
stand/boot/common/fs.h
271
int32_t fs_fshift; /* ``numfrags'' calc number of frags */
stand/boot/common/fs.h
273
int32_t fs_maxcontig; /* max number of contiguous blks */
stand/boot/common/fs.h
274
int32_t fs_maxbpg; /* max number of blks per cyl group */
stand/boot/common/fs.h
276
int32_t fs_fragshift; /* block to frag shift */
stand/boot/common/fs.h
277
int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */
stand/boot/common/fs.h
278
int32_t fs_sbsize; /* actual size of super block */
stand/boot/common/fs.h
279
int32_t fs_spare1[2]; /* old fs_csmask */
stand/boot/common/fs.h
281
int32_t fs_nindir; /* value of NINDIR */
stand/boot/common/fs.h
282
int32_t fs_inopb; /* value of INOPB */
stand/boot/common/fs.h
283
int32_t fs_old_nspf; /* value of NSPF */
stand/boot/common/fs.h
285
int32_t fs_optim; /* optimization preference, see below */
stand/boot/common/fs.h
286
int32_t fs_old_npsect; /* # sectors/track including spares */
stand/boot/common/fs.h
287
int32_t fs_old_interleave; /* hardware sector interleave */
stand/boot/common/fs.h
288
int32_t fs_old_trackskew; /* sector 0 skew, per track */
stand/boot/common/fs.h
289
int32_t fs_id[2]; /* unique filesystem id */
stand/boot/common/fs.h
291
int32_t fs_old_csaddr; /* blk addr of cyl grp summary area */
stand/boot/common/fs.h
292
int32_t fs_cssize; /* size of cyl grp summary area */
stand/boot/common/fs.h
293
int32_t fs_cgsize; /* cylinder group size */
stand/boot/common/fs.h
294
int32_t fs_spare2; /* old fs_ntrak */
stand/boot/common/fs.h
295
int32_t fs_old_nsect; /* sectors per track */
stand/boot/common/fs.h
296
int32_t fs_old_spc; /* sectors per cylinder */
stand/boot/common/fs.h
297
int32_t fs_old_ncyl; /* cylinders in filesystem */
stand/boot/common/fs.h
298
int32_t fs_old_cpg; /* cylinders per group */
stand/boot/common/fs.h
299
int32_t fs_ipg; /* inodes per group */
stand/boot/common/fs.h
300
int32_t fs_fpg; /* blocks per group * fs_frag */
stand/boot/common/fs.h
311
int32_t fs_pad; /* due to alignment of fs_swuid */
stand/boot/common/fs.h
313
int32_t fs_cgrotor; /* last cg searched */
stand/boot/common/fs.h
317
int32_t *fs_maxcluster; /* max cluster in each cyl group */
stand/boot/common/fs.h
319
int32_t fs_old_cpc; /* cyl per cycle in postbl */
stand/boot/common/fs.h
320
int32_t fs_maxbsize; /* maximum blocking factor permitted */
stand/boot/common/fs.h
329
int32_t fs_pendinginodes; /* inodes in process of being freed */
stand/boot/common/fs.h
330
int32_t fs_snapinum[FSMAXSNAP];/* list of snapshot inode numbers */
stand/boot/common/fs.h
331
int32_t fs_avgfilesize; /* expected average file size */
stand/boot/common/fs.h
332
int32_t fs_avgfpdir; /* expected # of files per directory */
stand/boot/common/fs.h
333
int32_t fs_save_cgsize; /* save real cg size to use fs_bsize */
stand/boot/common/fs.h
334
int32_t fs_sparecon32[26]; /* reserved for future constants */
stand/boot/common/fs.h
335
int32_t fs_flags; /* see FS_ flags below */
stand/boot/common/fs.h
336
int32_t fs_contigsumsize; /* size of cluster summary array */
stand/boot/common/fs.h
337
int32_t fs_maxsymlinklen; /* max length of an internal symlink */
stand/boot/common/fs.h
338
int32_t fs_old_inodefmt; /* format of on-disk inodes */
stand/boot/common/fs.h
342
int32_t fs_state; /* validate fs_clean field */
stand/boot/common/fs.h
343
int32_t fs_old_postblformat; /* format of positional layout tables */
stand/boot/common/fs.h
344
int32_t fs_old_nrpos; /* number of rotational positions */
stand/boot/common/fs.h
345
int32_t fs_spare5[2]; /* old fs_postbloff */
stand/boot/common/fs.h
347
int32_t fs_magic; /* magic number */
stand/boot/common/fs.h
422
/* base cg */ (sizeof(struct cg) + sizeof(int32_t) + \
stand/boot/common/fs.h
423
/* old btotoff */ (fs)->fs_old_cpg * sizeof(int32_t) + \
stand/boot/common/fs.h
428
/* cluster sum */ (fs)->fs_contigsumsize * sizeof(int32_t) + \
stand/boot/common/fs.h
446
int32_t cg_firstfield; /* historic cyl groups linked list */
stand/boot/common/fs.h
447
int32_t cg_magic; /* magic number */
stand/boot/common/fs.h
448
int32_t cg_old_time; /* time last written */
stand/boot/common/fs.h
449
int32_t cg_cgx; /* we are the cgx'th cylinder group */
stand/boot/common/fs.h
452
int32_t cg_ndblk; /* number of data blocks this cg */
stand/boot/common/fs.h
454
int32_t cg_rotor; /* position of last used block */
stand/boot/common/fs.h
455
int32_t cg_frotor; /* position of last used frag */
stand/boot/common/fs.h
456
int32_t cg_irotor; /* position of last used inode */
stand/boot/common/fs.h
457
int32_t cg_frsum[MAXFRAG]; /* counts of available frags */
stand/boot/common/fs.h
458
int32_t cg_old_btotoff; /* (int32) block totals per cylinder */
stand/boot/common/fs.h
459
int32_t cg_old_boff; /* (u_int16) free block positions */
stand/boot/common/fs.h
460
int32_t cg_iusedoff; /* (u_int8) used inode map */
stand/boot/common/fs.h
461
int32_t cg_freeoff; /* (u_int8) free block map */
stand/boot/common/fs.h
462
int32_t cg_nextfreeoff; /* (u_int8) next available space */
stand/boot/common/fs.h
463
int32_t cg_clustersumoff; /* (u_int32) counts of avail clusters */
stand/boot/common/fs.h
464
int32_t cg_clusteroff; /* (u_int8) free cluster map */
stand/boot/common/fs.h
465
int32_t cg_nclusterblks; /* number of clusters this cg */
stand/boot/common/fs.h
466
int32_t cg_niblk; /* number of inode blocks this cg */
stand/boot/common/fs.h
467
int32_t cg_initediblk; /* last initialized inode */
stand/boot/common/fs.h
468
int32_t cg_sparecon32[3]; /* reserved for future use */
stand/boot/common/fs.h
486
((int32_t *)((u_int8_t *)(cgp) + (cgp)->cg_clustersumoff))
stand/boot/pc32/boot2/boot2.c
275
(void *)(roundup2(__base + (int32_t)&_end, 0x10000) - __base);
stand/lib/bootparam.c
383
int32_t *ip;
stand/lib/bootparam.c
418
int32_t *ip;
stand/lib/bootparam.c
80
int32_t addr[4];
stand/lib/rpc.c
63
int32_t authtype; /* auth type */
stand/lib/rpc.c
68
int32_t ua_time;
stand/lib/rpc.c
69
int32_t ua_hostname; /* null */
stand/lib/rpc.c
70
int32_t ua_uid;
stand/lib/rpc.c
71
int32_t ua_gid;
stand/lib/rpc.c
72
int32_t ua_gidlist; /* null */
stand/lib/rpc.c
77
int32_t rp_direction; /* call direction (0) */
stand/lib/rpc.c
86
int32_t rp_direction; /* call direction (1) */
stand/lib/rpc.c
87
int32_t rp_astatus; /* accept status (0: accepted) */
sys/bus/cam/cam.h
87
#define GENERATIONCMP(x, op, y) ((int32_t)((x) - (y)) op 0)
sys/bus/cam/cam_ccb.h
858
int32_t src_resid; /* Source residual length: 2's comp */
sys/bus/cam/cam_xpt.c
1562
int32_t
sys/bus/cam/cam_xpt.c
1566
int32_t status;
sys/bus/cam/cam_xpt_periph.h
45
int32_t xpt_add_periph(struct cam_periph *periph);
sys/bus/cam/scsi/scsi_all.h
1391
static __inline int32_t
sys/bus/cam/scsi/scsi_all.h
1399
return (int32_t) rc;
sys/bus/cam/scsi/scsi_sa.c
2357
int32_t info = 0;
sys/bus/cam/scsi/scsi_sa.c
2378
info = (int32_t) scsi_4btoul(sense->info);
sys/bus/pccard/pccardvar.h
176
int32_t manufacturer;
sys/bus/pccard/pccardvar.h
178
int32_t product;
sys/bus/pccard/pccardvar.h
206
int32_t manufacturer;
sys/bus/pccard/pccardvar.h
207
int32_t product;
sys/bus/u4b/audio/uaudio.c
142
int32_t minval;
sys/bus/u4b/audio/uaudio.c
143
int32_t maxval;
sys/bus/u4b/audio/uaudio.c
145
int32_t wValue[MIX_MAX_CHAN]; /* using nchan */
sys/bus/u4b/audio/uaudio.c
215
int32_t jitter_rem;
sys/bus/u4b/audio/uaudio.c
216
int32_t jitter_curr;
sys/bus/u4b/audio/uaudio.c
3072
int32_t res;
sys/bus/u4b/audio/uaudio.c
528
struct uaudio_mixer_node *, uint8_t, int32_t val);
sys/bus/u4b/audio/uaudio.c
5282
uaudio_mixer_bsd2value(struct uaudio_mixer_node *mc, int32_t val)
sys/bus/u4b/audio/uaudio.c
530
static int uaudio_mixer_bsd2value(struct uaudio_mixer_node *, int32_t val);
sys/bus/u4b/audio/uaudio.c
5313
uint8_t chan, int32_t val)
sys/bus/u4b/audio/uaudio.c
5329
int32_t i;
sys/bus/u4b/audio/uaudio.c
5415
int32_t i;
sys/bus/u4b/gadget/g_audio.c
379
static int32_t
sys/bus/u4b/input/uep.c
152
int32_t x, y;
sys/bus/u4b/input/ukbd.c
1200
int32_t unit = device_get_unit(dev);
sys/bus/u4b/input/ukbd.c
1597
int32_t usbcode;
sys/bus/u4b/input/ukbd.c
1648
int32_t usbcode;
sys/bus/u4b/input/ukbd.c
482
static int32_t
sys/bus/u4b/input/ukbd.c
485
int32_t c;
sys/bus/u4b/input/ums.c
170
static void ums_evdev_push(struct ums_softc *, int32_t, int32_t,
sys/bus/u4b/input/ums.c
171
int32_t, int32_t, int32_t);
sys/bus/u4b/input/ums.c
176
static void ums_put_queue(struct ums_softc *, int32_t, int32_t,
sys/bus/u4b/input/ums.c
177
int32_t, int32_t, int32_t);
sys/bus/u4b/input/ums.c
218
int32_t buttons = 0;
sys/bus/u4b/input/ums.c
219
int32_t buttons_found = 0;
sys/bus/u4b/input/ums.c
221
int32_t buttons_reported = 0;
sys/bus/u4b/input/ums.c
223
int32_t dw = 0;
sys/bus/u4b/input/ums.c
224
int32_t dx = 0;
sys/bus/u4b/input/ums.c
225
int32_t dy = 0;
sys/bus/u4b/input/ums.c
226
int32_t dz = 0;
sys/bus/u4b/input/ums.c
227
int32_t dt = 0;
sys/bus/u4b/input/ums.c
286
int32_t temp;
sys/bus/u4b/input/ums.c
886
ums_put_queue(struct ums_softc *sc, int32_t dx, int32_t dy,
sys/bus/u4b/input/ums.c
887
int32_t dz, int32_t dt, int32_t buttons)
sys/bus/u4b/input/ums.c
932
ums_evdev_push(struct ums_softc *sc, int32_t dx, int32_t dy,
sys/bus/u4b/input/ums.c
933
int32_t dz, int32_t dt, int32_t buttons)
sys/bus/u4b/net/if_cdce.c
876
static int32_t
sys/bus/u4b/serial/uark.c
197
int32_t error;
sys/bus/u4b/serial/ucycom.c
207
int32_t error;
sys/bus/u4b/serial/ufoma.c
1016
int32_t error;
sys/bus/u4b/serial/ufoma.c
370
int32_t error;
sys/bus/u4b/serial/ufoma.c
516
int32_t error;
sys/bus/u4b/serial/ufoma.c
538
int32_t error;
sys/bus/u4b/serial/ugensa.c
186
int32_t error;
sys/bus/u4b/serial/umct.c
239
int32_t error;
sys/bus/u4b/serial/uplcom.c
597
static const int32_t uplcom_rates[] = {
sys/bus/u4b/usb_hid.c
119
hid_switch_rid(struct hid_data *s, struct hid_item *c, int32_t next_rID)
sys/bus/u4b/usb_hid.c
242
int32_t mask;
sys/bus/u4b/usb_hid.c
243
int32_t dval;
sys/bus/u4b/usb_hid.c
611
hid_locate(const void *desc, usb_size_t size, int32_t u, enum hid_kind k,
sys/bus/u4b/usb_hid.c
679
data = (int32_t)((int32_t)data << n) >> n;
sys/bus/u4b/usb_hid.c
688
int32_t
sys/bus/u4b/usb_hid.c
72
int32_t rid;
sys/bus/u4b/usb_hid.c
741
hid_is_collection(const void *desc, usb_size_t size, int32_t usage)
sys/bus/u4b/usb_hid.c
82
int32_t usages_min[MAXUSAGE];
sys/bus/u4b/usb_hid.c
83
int32_t usages_max[MAXUSAGE];
sys/bus/u4b/usb_hid.c
84
int32_t usage_last; /* last seen usage */
sys/bus/u4b/usbhid.h
194
int32_t _usage_page;
sys/bus/u4b/usbhid.h
195
int32_t logical_minimum;
sys/bus/u4b/usbhid.h
196
int32_t logical_maximum;
sys/bus/u4b/usbhid.h
197
int32_t physical_minimum;
sys/bus/u4b/usbhid.h
198
int32_t physical_maximum;
sys/bus/u4b/usbhid.h
199
int32_t unit_exponent;
sys/bus/u4b/usbhid.h
200
int32_t unit;
sys/bus/u4b/usbhid.h
201
int32_t report_ID;
sys/bus/u4b/usbhid.h
203
int32_t usage;
sys/bus/u4b/usbhid.h
204
int32_t usage_minimum;
sys/bus/u4b/usbhid.h
205
int32_t usage_maximum;
sys/bus/u4b/usbhid.h
206
int32_t designator_index;
sys/bus/u4b/usbhid.h
207
int32_t designator_minimum;
sys/bus/u4b/usbhid.h
208
int32_t designator_maximum;
sys/bus/u4b/usbhid.h
209
int32_t string_index;
sys/bus/u4b/usbhid.h
210
int32_t string_minimum;
sys/bus/u4b/usbhid.h
211
int32_t string_maximum;
sys/bus/u4b/usbhid.h
212
int32_t set_delimiter;
sys/bus/u4b/usbhid.h
214
int32_t collection;
sys/bus/u4b/usbhid.h
229
int hid_locate(const void *desc, usb_size_t size, int32_t usage,
sys/bus/u4b/usbhid.h
232
int32_t hid_get_data(const uint8_t *buf, usb_size_t len,
sys/bus/u4b/usbhid.h
238
int hid_is_collection(const void *desc, usb_size_t size, int32_t usage);
sys/bus/u4b/uvc/uvc_drv.h
513
int32_t (*get)(struct uvc_ctrl_sub_info *this, uint8_t query,
sys/bus/u4b/uvc/uvc_drv.h
515
void (*set)(struct uvc_ctrl_sub_info *this, int32_t value,
sys/cpu/x86_64/include/npx.h
51
int32_t en_cw; /* control word (16bits) */
sys/cpu/x86_64/include/npx.h
52
int32_t en_sw; /* status word (16bits) */
sys/cpu/x86_64/include/npx.h
53
int32_t en_tw; /* tag word (16bits) */
sys/cpu/x86_64/include/npx.h
54
int32_t en_fip; /* floating point instruction pointer */
sys/cpu/x86_64/include/npx.h
57
int32_t en_foo; /* floating operand offset */
sys/cpu/x86_64/include/npx.h
58
int32_t en_fos; /* floating operand segment selector */
sys/dev/apple/smc/smc_io.c
418
int32_t exp;
sys/dev/apple/smc/smc_io.c
427
exp = (int32_t)((d >> 23) & 0xff) - 0x7f;
sys/dev/apple/smc/smc_sysctl.c
110
int32_t v;
sys/dev/apple/smc/smc_sysctl.c
131
int32_t v;
sys/dev/apple/smc/smc_sysctl.c
273
int32_t v;
sys/dev/apple/smc/smc_sysctl.c
280
v = (int32_t)val;
sys/dev/apple/smc/smc_sysctl.c
305
int32_t v;
sys/dev/apple/smc/smc_sysctl.c
59
int32_t v;
sys/dev/apple/smc/smc_sysctl.c
86
int32_t v;
sys/dev/crypto/rdrand/rdrand.c
80
int32_t sc_rng_ticks;
sys/dev/crypto/tpm/tpm20.c
324
int32_t
sys/dev/crypto/tpm/tpm20.c
327
int32_t timeout;
sys/dev/crypto/tpm/tpm20.h
134
int32_t tpm20_get_timeout(uint32_t command);
sys/dev/crypto/tpm/tpm_crb.c
247
int32_t timeout)
sys/dev/crypto/tpm/tpm_crb.c
96
uint32_t mask, uint32_t val, int32_t timeout);
sys/dev/crypto/tpm/tpm_tis.c
250
int32_t timeout)
sys/dev/crypto/tpm/tpm_tis.c
94
uint32_t mask, uint32_t val, int32_t timeout);
sys/dev/disk/buslogic/btreg.h
534
int32_t data_len; /* residuals can be negative */
sys/dev/disk/isp/ispmbox.h
2164
int32_t ct_resid; /* residual length */
sys/dev/disk/isp/ispmbox.h
2259
int32_t ct_resid; /* residual length */
sys/dev/disk/isp/ispmbox.h
2313
int32_t ct_resid; /* residual length */
sys/dev/disk/isp/ispmbox.h
2393
int32_t ct_resid; /* residual length */
sys/dev/disk/mpt/mpilib/mpi_type.h
82
typedef int32_t S32;
sys/dev/disk/nata/ata-all.h
476
int (*load)(device_t dev, caddr_t data, int32_t count, int dir, void *addr, int *nsegs);
sys/dev/disk/nata/ata-dma.c
219
ata_dmaload(device_t dev, caddr_t data, int32_t count, int dir,
sys/dev/disk/nata/ata-dma.c
48
static int ata_dmaload(device_t, caddr_t, int32_t, int, void *, int *);
sys/dev/disk/nata/ata-lowlevel.c
810
if (ch->flags & ATA_USE_16BIT || (size % sizeof(int32_t)))
sys/dev/disk/nata/ata-lowlevel.c
817
size / sizeof(int32_t));
sys/dev/disk/nata/ata-lowlevel.c
835
if (ch->flags & ATA_USE_16BIT || (size % sizeof(int32_t)))
sys/dev/disk/nata/ata-lowlevel.c
842
size / sizeof(int32_t));
sys/dev/disk/nata/ata-raid.c
3449
for (ckptr = (int32_t *)meta, count = 0; count < 511; count++)
sys/dev/disk/nata/ata-raid.h
709
int32_t filler2[346];
sys/dev/disk/nata/atapi-cd.c
1265
acd_read_track_info(device_t dev, int32_t lba, struct acd_track_info *info)
sys/dev/disk/nata/atapi-cd.c
1322
int32_t error;
sys/dev/disk/nata/atapi-cd.c
87
static int acd_read_track_info(device_t, int32_t, struct acd_track_info *);
sys/dev/disk/nata/atapi-tape.c
587
ast_space(device_t dev, u_int8_t function, int32_t count)
sys/dev/disk/nata/atapi-tape.c
85
static int ast_space(device_t, u_int8_t, int32_t);
sys/dev/disk/sym/sym_hipd.c
103
typedef int32_t s32;
sys/dev/drm/amd/amdgpu/amdgpu_debugfs.c
586
r = put_user(values[x++], (int32_t *)buf);
sys/dev/drm/amd/amdgpu/amdgpu_fence.c
338
} while ((int32_t)(wait_seq - seq) > 0 && timeout > 0);
sys/dev/drm/amd/amdgpu/amdgpu_uvd.c
712
int32_t *msg, msg_type, handle;
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
576
int lo, int hi, unsigned size, int32_t index)
sys/dev/drm/amd/amdgpu/dce_v10_0.c
2352
int32_t hot_x,
sys/dev/drm/amd/amdgpu/dce_v10_0.c
2353
int32_t hot_y)
sys/dev/drm/amd/amdgpu/dce_v11_0.c
2431
int32_t hot_x,
sys/dev/drm/amd/amdgpu/dce_v11_0.c
2432
int32_t hot_y)
sys/dev/drm/amd/amdgpu/dce_v8_0.c
2253
int32_t hot_x,
sys/dev/drm/amd/amdgpu/dce_v8_0.c
2254
int32_t hot_y)
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm.c
1809
int32_t i;
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm.c
1814
int32_t total_overlay_planes, total_primary_planes;
sys/dev/drm/amd/display/amdgpu_dm/amdgpu_dm_pp_smu.c
508
int32_t i;
sys/dev/drm/amd/display/dc/basics/conversion.c
41
int32_t numerator;
sys/dev/drm/amd/display/dc/basics/conversion.c
42
int32_t divisor = 1 << fractional_bits;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
119
int32_t number_of_displays_enabled = 0;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
120
int32_t number_of_displays_enabled_with_margin = 0;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
121
int32_t number_of_aligned_displays_with_no_margin = 0;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
80
const int32_t pixels_per_chunk = 512;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
81
const int32_t high = 2;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
82
const int32_t mid = 1;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
83
const int32_t low = 0;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
95
int32_t num_cursor_lines;
sys/dev/drm/amd/display/dc/calcs/dce_calcs.c
97
int32_t i, j, k;
sys/dev/drm/amd/display/dc/dc_hw_types.h
48
int32_t high_part;
sys/dev/drm/amd/display/dc/dc_hw_types.h
53
int32_t high_part;
sys/dev/drm/amd/display/dc/dce/dce_i2c_sw.c
125
int32_t shift = 7;
sys/dev/drm/amd/display/dc/dce/dce_i2c_sw.c
183
int32_t shift = 7;
sys/dev/drm/amd/display/dc/dce/dce_link_encoder.c
1111
int32_t lane = 0;
sys/dev/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
436
int32_t region_start, region_end;
sys/dev/drm/amd/display/dc/dce110/dce110_timing_generator.h
89
int32_t crtc;
sys/dev/drm/amd/display/dc/dce110/dce110_timing_generator.h
90
int32_t dcp;
sys/dev/drm/amd/display/dc/dce110/dce110_timing_generator.h
93
int32_t dmif;
sys/dev/drm/amd/display/dc/dcn10/dcn10_cm_common.c
255
int32_t region_start, region_end;
sys/dev/drm/amd/display/dc/dcn10/dcn10_cm_common.c
256
int32_t i;
sys/dev/drm/amd/display/dc/dcn10/dcn10_cm_common.c
437
int32_t region_start, region_end;
sys/dev/drm/amd/display/dc/dcn10/dcn10_cm_common.c
438
int32_t i;
sys/dev/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
1865
int32_t numerator;
sys/dev/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
1866
int32_t divisor = 1 << fractional_bits;
sys/dev/drm/amd/display/dc/dcn10/dcn10_link_encoder.c
1029
int32_t lane = 0;
sys/dev/drm/amd/display/dc/dcn10/dcn10_optc.c
188
int32_t vertical_line_start;
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
772
static const int32_t ddc_setup_offset[] = {
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
790
static const int32_t ddc_speed_offset[] = {
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
859
if ((arg->engine_id >= sizeof(ddc_setup_offset) / sizeof(int32_t)) ||
sys/dev/drm/amd/display/dc/i2caux/dce80/i2c_hw_engine_dce80.c
860
(arg->engine_id >= sizeof(ddc_speed_offset) / sizeof(int32_t)) ||
sys/dev/drm/amd/display/dc/i2caux/i2c_sw_engine.c
191
int32_t shift = 7;
sys/dev/drm/amd/display/dc/i2caux/i2c_sw_engine.c
248
int32_t shift = 7;
sys/dev/drm/amd/display/dc/inc/bw_fixed.h
80
static inline int32_t bw_fixed_to_int(struct bw_fixed value)
sys/dev/drm/amd/display/dc/inc/compressor.h
43
int32_t high_part;
sys/dev/drm/amd/display/dc/inc/hw/link_encoder.h
105
int32_t aux_channel_offset;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
170
int32_t left_index;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
171
int32_t right_index;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
224
int32_t adjust_divider;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
225
int32_t grph_cont;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
226
int32_t grph_sat;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
227
int32_t grph_bright;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
228
int32_t grph_hue;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
234
int32_t hw_default;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
235
int32_t min;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
236
int32_t max;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
237
int32_t step;
sys/dev/drm/amd/display/dc/inc/hw/timing_generator.h
35
int32_t vertical_count;
sys/dev/drm/amd/display/dc/inc/hw/timing_generator.h
36
int32_t horizontal_count;
sys/dev/drm/amd/display/dc/inc/hw/timing_generator.h
37
int32_t nominal_vcount;
sys/dev/drm/amd/display/modules/color/color_gamma.c
1018
int32_t index = 0, index_next = 0;
sys/dev/drm/amd/display/modules/color/color_gamma.c
1197
int32_t index;
sys/dev/drm/amd/display/modules/color/color_gamma.c
1198
int32_t index_next;
sys/dev/drm/amd/display/modules/color/color_gamma.c
245
static const int32_t numerator01[] = { 31308, 180000};
sys/dev/drm/amd/display/modules/color/color_gamma.c
246
static const int32_t numerator02[] = { 12920, 4500};
sys/dev/drm/amd/display/modules/color/color_gamma.c
247
static const int32_t numerator03[] = { 55, 99};
sys/dev/drm/amd/display/modules/color/color_gamma.c
248
static const int32_t numerator04[] = { 55, 99};
sys/dev/drm/amd/display/modules/color/color_gamma.c
249
static const int32_t numerator05[] = { 2400, 2200};
sys/dev/drm/amd/display/modules/color/color_gamma.c
47
int32_t segment;
sys/dev/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
2733
int32_t tmp_mclk;
sys/dev/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
2734
int32_t tmp_sclk;
sys/dev/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
2735
int32_t count;
sys/dev/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
2897
int32_t count;
sys/dev/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
2898
int32_t stable_pstate_sclk = 0, stable_pstate_mclk = 0;
sys/dev/drm/amd/powerplay/hwmgr/smu7_powertune.c
857
int32_t result = 0;
sys/dev/drm/amd/powerplay/hwmgr/smu_helper.c
368
int32_t phm_get_dpm_level_enable_mask_value(void *table)
sys/dev/drm/amd/powerplay/hwmgr/smu_helper.c
370
int32_t i;
sys/dev/drm/amd/powerplay/hwmgr/smu_helper.c
371
int32_t mask = 0;
sys/dev/drm/amd/powerplay/hwmgr/smu_helper.c
458
uint16_t virtual_voltage_id, int32_t *sclk)
sys/dev/drm/amd/powerplay/hwmgr/smu_helper.h
82
extern int32_t phm_get_dpm_level_enable_mask_value(void *table);
sys/dev/drm/amd/powerplay/hwmgr/smu_helper.h
89
uint16_t virtual_voltage_id, int32_t *sclk);
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2152
(int32_t)data->disp_clk_quad_eqn_a;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2154
(int32_t)data->disp_clk_quad_eqn_b;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2156
(int32_t)data->disp_clk_quad_eqn_c;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2159
(int32_t)avfs_params.ulDispclk2GfxclkM1;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2161
(int32_t)avfs_params.ulDispclk2GfxclkM2;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2163
(int32_t)avfs_params.ulDispclk2GfxclkB;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2175
(int32_t)data->dcef_clk_quad_eqn_a;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2177
(int32_t)data->dcef_clk_quad_eqn_b;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2179
(int32_t)data->dcef_clk_quad_eqn_c;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2182
(int32_t)avfs_params.ulDcefclk2GfxclkM1;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2184
(int32_t)avfs_params.ulDcefclk2GfxclkM2;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2186
(int32_t)avfs_params.ulDcefclk2GfxclkB;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2198
(int32_t)data->pixel_clk_quad_eqn_a;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2200
(int32_t)data->pixel_clk_quad_eqn_b;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2202
(int32_t)data->pixel_clk_quad_eqn_c;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2205
(int32_t)avfs_params.ulPixelclk2GfxclkM1;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2207
(int32_t)avfs_params.ulPixelclk2GfxclkM2;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2209
(int32_t)avfs_params.ulPixelclk2GfxclkB;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2220
(int32_t)data->phy_clk_quad_eqn_a;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2222
(int32_t)data->phy_clk_quad_eqn_b;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2224
(int32_t)data->phy_clk_quad_eqn_c;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2227
(int32_t)avfs_params.ulPhyclk2GfxclkM1;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2229
(int32_t)avfs_params.ulPhyclk2GfxclkM2;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
2231
(int32_t)avfs_params.ulPhyclk2GfxclkB;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
3118
int32_t count;
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
494
uint16_t virtual_voltage_id, int32_t *socclk)
sys/dev/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
936
int32_t ret = 0;
sys/dev/drm/amd/powerplay/hwmgr/vega12_hwmgr.c
988
int32_t i = 0;
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
2560
int32_t input_index, input_clk, input_vol, i;
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.h
421
int32_t min_value;
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.h
422
int32_t max_value;
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.h
423
int32_t current_value;
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.h
424
int32_t default_value;
sys/dev/drm/amd/powerplay/inc/smu10_driver_if.h
32
int32_t value;
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
725
int32_t VFT0_m1[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
726
int32_t VFT0_m2[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
727
int32_t VFT0_b[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
729
int32_t VFT1_m1[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
730
int32_t VFT1_m2[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
731
int32_t VFT1_b[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
733
int32_t VFT2_m1[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
734
int32_t VFT2_m2[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
735
int32_t VFT2_b[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
737
int32_t AvfsGb0_m1[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
738
int32_t AvfsGb0_m2[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
739
int32_t AvfsGb0_b[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
741
int32_t AcBtcGb_m1[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
742
int32_t AcBtcGb_m2[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
743
int32_t AcBtcGb_b[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
752
int32_t P2V_m1[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
753
int32_t P2V_m2[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu11_driver_if.h
754
int32_t P2V_b[AVFS_VOLTAGE_COUNT];
sys/dev/drm/amd/powerplay/inc/smu7.h
107
int32_t LFWindupUL;
sys/dev/drm/amd/powerplay/inc/smu7.h
108
int32_t LFWindupLL;
sys/dev/drm/amd/powerplay/inc/smu71.h
124
int32_t LFWindupUpperLim;
sys/dev/drm/amd/powerplay/inc/smu71.h
125
int32_t LFWindupLowerLim;
sys/dev/drm/amd/powerplay/inc/smu71.h
140
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu71.h
141
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu71.h
142
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu71_discrete.h
409
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu71_discrete.h
410
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu71_discrete.h
411
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu72.h
209
int32_t LFWindupUpperLim;
sys/dev/drm/amd/powerplay/inc/smu72.h
210
int32_t LFWindupLowerLim;
sys/dev/drm/amd/powerplay/inc/smu72.h
224
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu72.h
225
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu72.h
226
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu72.h
395
int32_t Telemetry_1_offset;
sys/dev/drm/amd/powerplay/inc/smu72.h
396
int32_t Telemetry_2_offset;
sys/dev/drm/amd/powerplay/inc/smu72.h
429
int32_t temperature_gradient;
sys/dev/drm/amd/powerplay/inc/smu72.h
432
int32_t WeightedSensorTemperature;
sys/dev/drm/amd/powerplay/inc/smu72.h
50
int32_t a;
sys/dev/drm/amd/powerplay/inc/smu72.h
51
int32_t b;
sys/dev/drm/amd/powerplay/inc/smu72.h
52
int32_t c;
sys/dev/drm/amd/powerplay/inc/smu72.h
53
int32_t d;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
411
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
412
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
413
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
548
int32_t entity_temperatures[SMU72_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
549
int32_t initial_entity_temperatures[SMU72_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
550
int32_t Limit;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
551
int32_t Hyst;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
552
int32_t therm_influence_coeff_table[SMU72_DTE_ITERATIONS * SMU72_DTE_SOURCES * SMU72_DTE_SINKS * 2];
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
553
int32_t therm_node_table[SMU72_DTE_ITERATIONS * SMU72_DTE_SOURCES * SMU72_DTE_SINKS];
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
564
int32_t temperature_gradient_slope;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
565
int32_t temperature_gradient;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
690
int32_t T_meas_max;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
691
int32_t T_meas_acc;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
692
int32_t T_calc_max;
sys/dev/drm/amd/powerplay/inc/smu72_discrete.h
693
int32_t T_calc_acc;
sys/dev/drm/amd/powerplay/inc/smu73.h
205
int32_t LFWindupUpperLim;
sys/dev/drm/amd/powerplay/inc/smu73.h
206
int32_t LFWindupLowerLim;
sys/dev/drm/amd/powerplay/inc/smu73.h
222
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu73.h
223
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu73.h
224
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu73.h
415
int32_t Telemetry_1_offset;
sys/dev/drm/amd/powerplay/inc/smu73.h
416
int32_t Telemetry_2_offset;
sys/dev/drm/amd/powerplay/inc/smu73.h
42
int32_t a;
sys/dev/drm/amd/powerplay/inc/smu73.h
43
int32_t b;
sys/dev/drm/amd/powerplay/inc/smu73.h
44
int32_t c;
sys/dev/drm/amd/powerplay/inc/smu73.h
45
int32_t d;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
405
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
406
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
407
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
545
int32_t entity_temperatures[SMU73_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
546
int32_t initial_entity_temperatures[SMU73_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
547
int32_t Limit;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
548
int32_t Hyst;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
549
int32_t therm_influence_coeff_table[SMU73_DTE_ITERATIONS * SMU73_DTE_SOURCES * SMU73_DTE_SINKS * 2];
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
550
int32_t therm_node_table[SMU73_DTE_ITERATIONS * SMU73_DTE_SOURCES * SMU73_DTE_SINKS];
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
561
int32_t temperature_gradient_slope;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
562
int32_t temperature_gradient;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
581
int32_t m1;
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
725
int32_t T_meas_max[SMU73_THERMAL_INPUT_LOOP_COUNT];
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
726
int32_t T_meas_acc[SMU73_THERMAL_INPUT_LOOP_COUNT];
sys/dev/drm/amd/powerplay/inc/smu73_discrete.h
727
int32_t T_meas_acc_cnt[SMU73_THERMAL_INPUT_LOOP_COUNT];
sys/dev/drm/amd/powerplay/inc/smu74.h
236
int32_t LFWindupUpperLim;
sys/dev/drm/amd/powerplay/inc/smu74.h
237
int32_t LFWindupLowerLim;
sys/dev/drm/amd/powerplay/inc/smu74.h
251
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu74.h
252
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu74.h
253
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu74.h
440
int32_t Telemetry_1_offset;
sys/dev/drm/amd/powerplay/inc/smu74.h
441
int32_t Telemetry_2_offset;
sys/dev/drm/amd/powerplay/inc/smu74.h
474
int32_t temperature_gradient;
sys/dev/drm/amd/powerplay/inc/smu74.h
477
int32_t WeightedSensorTemperature;
sys/dev/drm/amd/powerplay/inc/smu74.h
75
int32_t a;
sys/dev/drm/amd/powerplay/inc/smu74.h
76
int32_t b;
sys/dev/drm/amd/powerplay/inc/smu74.h
77
int32_t c;
sys/dev/drm/amd/powerplay/inc/smu74.h
78
int32_t d;
sys/dev/drm/amd/powerplay/inc/smu74.h
804
int32_t a0;
sys/dev/drm/amd/powerplay/inc/smu74.h
805
int32_t a1;
sys/dev/drm/amd/powerplay/inc/smu74.h
806
int32_t a2;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
227
int32_t m1;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
405
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
406
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
407
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
538
int32_t entity_temperatures[SMU74_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
539
int32_t initial_entity_temperatures[SMU74_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
540
int32_t Limit;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
541
int32_t Hyst;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
542
int32_t therm_influence_coeff_table[SMU74_DTE_ITERATIONS * SMU74_DTE_SOURCES * SMU74_DTE_SINKS * 2];
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
543
int32_t therm_node_table[SMU74_DTE_ITERATIONS * SMU74_DTE_SOURCES * SMU74_DTE_SINKS];
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
554
int32_t temperature_gradient_slope;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
555
int32_t temperature_gradient;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
692
int32_t T_meas_max;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
693
int32_t T_meas_acc;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
694
int32_t T_calc_max;
sys/dev/drm/amd/powerplay/inc/smu74_discrete.h
695
int32_t T_calc_acc;
sys/dev/drm/amd/powerplay/inc/smu75.h
170
int32_t LFWindupUpperLim;
sys/dev/drm/amd/powerplay/inc/smu75.h
171
int32_t LFWindupLowerLim;
sys/dev/drm/amd/powerplay/inc/smu75.h
185
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu75.h
186
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu75.h
187
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu75.h
370
int32_t Telemetry_1_offset;
sys/dev/drm/amd/powerplay/inc/smu75.h
371
int32_t Telemetry_2_offset;
sys/dev/drm/amd/powerplay/inc/smu75.h
697
int32_t a0;
sys/dev/drm/amd/powerplay/inc/smu75.h
698
int32_t a1;
sys/dev/drm/amd/powerplay/inc/smu75.h
699
int32_t a2;
sys/dev/drm/amd/powerplay/inc/smu75.h
705
int32_t m1;
sys/dev/drm/amd/powerplay/inc/smu75.h
706
int32_t b;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
412
int32_t PIDError;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
413
int32_t PIDIntegral;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
414
int32_t PIDOutput;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
559
int32_t entity_temperatures[SMU75_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
560
int32_t initial_entity_temperatures[SMU75_NUM_GPU_TES];
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
561
int32_t Limit;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
562
int32_t Hyst;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
563
int32_t therm_influence_coeff_table[SMU75_DTE_ITERATIONS * SMU75_DTE_SOURCES * SMU75_DTE_SINKS * 2];
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
564
int32_t therm_node_table[SMU75_DTE_ITERATIONS * SMU75_DTE_SOURCES * SMU75_DTE_SINKS];
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
575
int32_t temperature_gradient_slope;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
576
int32_t temperature_gradient;
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
721
int32_t T_meas_max[SMU75_THERMAL_INPUT_LOOP_COUNT];
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
722
int32_t T_meas_acc[SMU75_THERMAL_INPUT_LOOP_COUNT];
sys/dev/drm/amd/powerplay/inc/smu75_discrete.h
755
int32_t T_meas_acc[SMU75_THERMAL_INPUT_LOOP_COUNT];
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
100
int32_t m1;
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
101
int32_t m2;
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
102
int32_t b;
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
388
int32_t VFT0_m1; /* Q8.24 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
389
int32_t VFT0_m2; /* Q12.12 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
390
int32_t VFT0_b; /* Q32 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
392
int32_t VFT1_m1; /* Q8.16 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
393
int32_t VFT1_m2; /* Q12.12 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
394
int32_t VFT1_b; /* Q32 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
396
int32_t VFT2_m1; /* Q8.16 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
397
int32_t VFT2_m2; /* Q12.12 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
398
int32_t VFT2_b; /* Q32 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
400
int32_t AvfsGb0_m1; /* Q8.16 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
401
int32_t AvfsGb0_m2; /* Q12.12 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
402
int32_t AvfsGb0_b; /* Q32 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
404
int32_t AcBtcGb_m1; /* Q8.24 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
405
int32_t AcBtcGb_m2; /* Q12.12 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
406
int32_t AcBtcGb_b; /* Q32 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
414
int32_t P2V_m1; /* Q8.24 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
415
int32_t P2V_m2; /* Q12.12 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
416
int32_t P2V_b; /* Q32 */
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
89
int32_t a0;
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
90
int32_t a1;
sys/dev/drm/amd/powerplay/inc/smu9_driver_if.h
91
int32_t a2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
616
int32_t VFT0_m1;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
617
int32_t VFT0_m2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
618
int32_t VFT0_b;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
620
int32_t VFT1_m1;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
621
int32_t VFT1_m2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
622
int32_t VFT1_b;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
624
int32_t VFT2_m1;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
625
int32_t VFT2_m2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
626
int32_t VFT2_b;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
628
int32_t AvfsGb0_m1;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
629
int32_t AvfsGb0_m2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
630
int32_t AvfsGb0_b;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
632
int32_t AcBtcGb_m1;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
633
int32_t AcBtcGb_m2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
634
int32_t AcBtcGb_b;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
643
int32_t P2V_m1;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
644
int32_t P2V_m2;
sys/dev/drm/amd/powerplay/inc/vega12/smu9_driver_if.h
645
int32_t P2V_b;
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
1813
int32_t result;
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
2866
int32_t i;
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
2902
int32_t i;
sys/dev/drm/amd/powerplay/smumgr/fiji_smumgr.c
1498
int32_t eng_clock, int32_t mem_clock,
sys/dev/drm/amd/powerplay/smumgr/fiji_smumgr.c
225
int32_t vr_config;
sys/dev/drm/amd/powerplay/smumgr/fiji_smumgr.c
246
(uint8_t *)&vr_config, sizeof(int32_t), 0x40000),
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
1780
int32_t result;
sys/dev/drm/amd/powerplay/smumgr/polaris10_smumgr.c
1336
int32_t eng_clock, int32_t mem_clock,
sys/dev/drm/amd/powerplay/smumgr/tonga_smumgr.c
2159
int32_t result;
sys/dev/drm/amd/powerplay/smumgr/vegam_smumgr.c
1255
int32_t eng_clock, int32_t mem_clock,
sys/dev/drm/drm_atomic.c
564
state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
sys/dev/drm/drm_atomic.c
566
state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
sys/dev/drm/drm_plane.c
596
int32_t crtc_x, int32_t crtc_y,
sys/dev/drm/drm_plane.c
624
crtc_x > INT_MAX - (int32_t) crtc_w ||
sys/dev/drm/drm_plane.c
626
crtc_y > INT_MAX - (int32_t) crtc_h) {
sys/dev/drm/drm_plane.c
650
int32_t crtc_x, int32_t crtc_y,
sys/dev/drm/drm_plane.c
703
int32_t crtc_x, int32_t crtc_y,
sys/dev/drm/drm_plane.c
738
int32_t crtc_x, int32_t crtc_y,
sys/dev/drm/drm_plane.c
841
int32_t crtc_x, crtc_y;
sys/dev/drm/include/asm/int-ll64.h
38
typedef int32_t s32;
sys/dev/drm/include/drm/drm_crtc.h
426
int32_t hot_x, int32_t hot_y);
sys/dev/drm/include/drm/drm_plane.h
89
int32_t crtc_x;
sys/dev/drm/include/drm/drm_plane.h
96
int32_t crtc_y;
sys/dev/drm/include/linux/atomic.h
181
while (!atomic_fcmpset_32((volatile int32_t *)(ptr), \
sys/dev/drm/include/linux/atomic.h
182
(int32_t *)&__ret, (u64)(new)) && __ret == (old)) \
sys/dev/drm/include/linux/jiffies.h
45
#define time_after32(a,b) ((int32_t)((uint32_t)(b) - (uint32_t)(a)) < 0)
sys/dev/drm/include/linux/math64.h
70
div_s64(int64_t dividend, int32_t divisor)
sys/dev/drm/include/linux/time.h
103
int32_t rem;
sys/dev/drm/include/uapi/asm-generic/int-ll64.h
40
typedef int32_t __s32;
sys/dev/drm/include/uapi/drm/drm.h
53
typedef int32_t __s32;
sys/dev/drm/radeon/radeon_cursor.c
279
int32_t hot_x,
sys/dev/drm/radeon/radeon_cursor.c
280
int32_t hot_y)
sys/dev/drm/radeon/radeon_mode.h
873
int32_t hot_x,
sys/dev/drm/radeon/radeon_mode.h
874
int32_t hot_y);
sys/dev/drm/radeon/radeon_uvd.c
468
int32_t *msg, msg_type, handle;
sys/dev/drm/radeon/smu7.h
88
int32_t LFWindupUL;
sys/dev/drm/radeon/smu7.h
89
int32_t LFWindupLL;
sys/dev/drm/radeon/vce_v1_0.c
40
int32_t off;
sys/dev/drm/radeon/vce_v1_0.c
42
int32_t num;
sys/dev/misc/evdev/cdev.c
548
MIN(len / sizeof(int32_t) - 1, MAXIMAL_MT_SLOT(evdev) + 1);
sys/dev/misc/evdev/cdev.c
550
((int32_t *)data)[i + 1] =
sys/dev/misc/evdev/cdev.c
767
int32_t value)
sys/dev/misc/evdev/evdev.c
104
static int evdev_check_event(struct evdev_dev *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev.c
491
evdev_support_abs(struct evdev_dev *evdev, uint16_t code, int32_t minimum,
sys/dev/misc/evdev/evdev.c
492
int32_t maximum, int32_t fuzz, int32_t flat, int32_t resolution)
sys/dev/misc/evdev/evdev.c
600
int32_t value)
sys/dev/misc/evdev/evdev.c
685
int32_t *value)
sys/dev/misc/evdev/evdev.c
687
int32_t fuzz, old_value, abs_change;
sys/dev/misc/evdev/evdev.c
746
int32_t value)
sys/dev/misc/evdev/evdev.c
748
int32_t last_mt_slot;
sys/dev/misc/evdev/evdev.c
855
int32_t value)
sys/dev/misc/evdev/evdev.c
881
int32_t value)
sys/dev/misc/evdev/evdev.c
905
int32_t value)
sys/dev/misc/evdev/evdev.c
930
int32_t value)
sys/dev/misc/evdev/evdev.h
106
int32_t val[MT_CNT];
sys/dev/misc/evdev/evdev.h
108
int32_t maj; /* ABS_MT_TOUCH_MAJOR */
sys/dev/misc/evdev/evdev.h
109
int32_t min; /* ABS_MT_TOUCH_MINOR */
sys/dev/misc/evdev/evdev.h
110
int32_t w_maj; /* ABS_MT_WIDTH_MAJOR */
sys/dev/misc/evdev/evdev.h
111
int32_t w_min; /* ABS_MT_WIDTH_MINOR */
sys/dev/misc/evdev/evdev.h
112
int32_t ori; /* ABS_MT_ORIENTATION */
sys/dev/misc/evdev/evdev.h
113
int32_t x; /* ABS_MT_POSITION_X */
sys/dev/misc/evdev/evdev.h
114
int32_t y; /* ABS_MT_POSITION_Y */
sys/dev/misc/evdev/evdev.h
115
int32_t type; /* ABS_MT_TOOL_TYPE */
sys/dev/misc/evdev/evdev.h
116
int32_t blob_id; /* ABS_MT_BLOB_ID */
sys/dev/misc/evdev/evdev.h
117
int32_t id; /* ABS_MT_TRACKING_ID */
sys/dev/misc/evdev/evdev.h
118
int32_t p; /* ABS_MT_PRESSURE */
sys/dev/misc/evdev/evdev.h
119
int32_t dist; /* ABS_MT_DISTANCE */
sys/dev/misc/evdev/evdev.h
120
int32_t tool_x; /* ABS_MT_TOOL_X */
sys/dev/misc/evdev/evdev.h
121
int32_t tool_y; /* ABS_MT_TOOL_Y */
sys/dev/misc/evdev/evdev.h
140
int evdev_push_event(struct evdev_dev *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev.h
145
void evdev_support_abs(struct evdev_dev *, uint16_t, int32_t, int32_t, int32_t,
sys/dev/misc/evdev/evdev.h
146
int32_t, int32_t);
sys/dev/misc/evdev/evdev.h
158
int evdev_mt_id_to_slot(struct evdev_dev *, int32_t);
sys/dev/misc/evdev/evdev.h
192
evdev_push_key(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
199
evdev_push_rel(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
206
evdev_push_abs(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
213
evdev_push_msc(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
220
evdev_push_led(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
227
evdev_push_snd(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
234
evdev_push_sw(struct evdev_dev *evdev, uint16_t code, int32_t value)
sys/dev/misc/evdev/evdev.h
44
uint16_t, int32_t);
sys/dev/misc/evdev/evdev_mt.c
410
int32_t value)
sys/dev/misc/evdev/evdev_mt.c
488
evdev_mt_set_last_slot(struct evdev_dev *evdev, int32_t slot)
sys/dev/misc/evdev/evdev_mt.c
498
int32_t
sys/dev/misc/evdev/evdev_mt.c
499
evdev_mt_get_value(struct evdev_dev *evdev, int32_t slot, int16_t code)
sys/dev/misc/evdev/evdev_mt.c
509
evdev_mt_set_value(struct evdev_dev *evdev, int32_t slot, int16_t code,
sys/dev/misc/evdev/evdev_mt.c
510
int32_t value)
sys/dev/misc/evdev/evdev_mt.c
526
evdev_mt_id_to_slot(struct evdev_dev *evdev, int32_t tracking_id)
sys/dev/misc/evdev/evdev_mt.c
550
int32_t
sys/dev/misc/evdev/evdev_mt.c
551
evdev_mt_reassign_id(struct evdev_dev *evdev, int slot, int32_t id)
sys/dev/misc/evdev/evdev_mt.c
554
int32_t nid;
sys/dev/misc/evdev/evdev_mt.c
578
static inline int32_t
sys/dev/misc/evdev/evdev_mt.c
579
evdev_mt_normalize(int32_t value, int32_t mtmin, int32_t mtmax, int32_t stmax)
sys/dev/misc/evdev/evdev_mt.c
72
int32_t max;
sys/dev/misc/evdev/evdev_mt.c
83
int32_t tracking_ids[MAX_MT_SLOTS];
sys/dev/misc/evdev/evdev_private.h
205
void evdev_send_event(struct evdev_dev *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev_private.h
206
int evdev_inject_event(struct evdev_dev *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev_private.h
218
void evdev_client_push(struct evdev_client *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev_private.h
228
int32_t evdev_mt_get_value(struct evdev_dev *, int, int16_t);
sys/dev/misc/evdev/evdev_private.h
229
void evdev_mt_set_value(struct evdev_dev *, int, int16_t, int32_t);
sys/dev/misc/evdev/evdev_private.h
230
int32_t evdev_mt_reassign_id(struct evdev_dev *, int, int32_t);
sys/dev/misc/evdev/evdev_private.h
231
bool evdev_mt_record_event(struct evdev_dev *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev_utils.c
346
uint16_t code, int32_t value)
sys/dev/misc/evdev/input.h
46
int32_t value;
sys/dev/misc/evdev/input.h
59
int32_t value;
sys/dev/misc/evdev/input.h
60
int32_t minimum;
sys/dev/misc/evdev/input.h
61
int32_t maximum;
sys/dev/misc/evdev/input.h
62
int32_t fuzz;
sys/dev/misc/evdev/input.h
63
int32_t flat;
sys/dev/misc/evdev/input.h
64
int32_t resolution;
sys/dev/misc/kbd/atkbd.c
1223
int32_t value)
sys/dev/misc/kbd/kbd.c
1501
kbd_ev_event(keyboard_t *kbd, uint16_t type, uint16_t code, int32_t value)
sys/dev/misc/kbd/kbdreg.h
331
void kbd_ev_event(keyboard_t *kbd, uint16_t type, uint16_t code, int32_t value);
sys/dev/misc/tbridge/tbridge.c
92
int32_t val;
sys/dev/netif/ath/ath/if_ath_alq.h
71
int32_t tsfdelta;
sys/dev/netif/ath/ath/if_ath_alq.h
72
int32_t avg_plus;
sys/dev/netif/ath/ath/if_ath_alq.h
73
int32_t avg_minus;
sys/dev/netif/ath/ath/if_ath_alq.h
80
int32_t tsfdelta;
sys/dev/netif/ath/ath/if_ath_rx.c
355
int32_t tsf_delta_bmiss;
sys/dev/netif/ath/ath/if_ath_rx.c
356
int32_t tsf_remainder;
sys/dev/netif/ath/ath/if_ath_rx.c
449
(int32_t) tsf_beacon - (int32_t) nexttbtt + tsf_intval);
sys/dev/netif/ath/ath/if_ath_tdma.c
369
int32_t tudelta, tsfdelta;
sys/dev/netif/ath/ath/if_ath_tdma.c
477
tsfdelta = (int32_t)((nextslot % TU_TO_TSF(HAL_BEACON_PERIOD + 1)) - nexttbtt);
sys/dev/netif/ath/ath/if_athvar.h
308
int32_t bfs_keyix; /* crypto key index */
sys/dev/netif/ath/ath/if_athvar.h
309
int32_t bfs_txantenna; /* TX antenna config */
sys/dev/netif/ath/ath_hal/ah.c
1366
ath_hal_adjusttsf(struct ath_hal *ah, int32_t tsfdelta)
sys/dev/netif/ath/ath_hal/ah.h
1000
int32_t pe_en_relstep_check;
sys/dev/netif/ath/ath_hal/ah.h
1014
int32_t ss_nf_temp_data; /* temperature data taken during nf scan */
sys/dev/netif/ath/ath_hal/ah.h
1776
extern void __ahdecl ath_hal_adjusttsf(struct ath_hal *ah, int32_t tsfdelta);
sys/dev/netif/ath/ath_hal/ah.h
977
int32_t pe_firpwr; /* FIR pwr out threshold */
sys/dev/netif/ath/ath_hal/ah.h
978
int32_t pe_rrssi; /* Radar rssi thresh */
sys/dev/netif/ath/ath_hal/ah.h
979
int32_t pe_height; /* Pulse height thresh */
sys/dev/netif/ath/ath_hal/ah.h
980
int32_t pe_prssi; /* Pulse rssi thresh */
sys/dev/netif/ath/ath_hal/ah.h
981
int32_t pe_inband; /* Inband thresh */
sys/dev/netif/ath/ath_hal/ah.h
987
int32_t pe_usefir128; /* Use the average in-band power measured over 128 cycles */
sys/dev/netif/ath/ath_hal/ah.h
988
int32_t pe_blockradar; /*
sys/dev/netif/ath/ath_hal/ah.h
993
int32_t pe_enmaxrssi; /*
sys/dev/netif/ath/ath_hal/ah.h
997
int32_t pe_extchannel; /* Enable DFS on ext channel */
sys/dev/netif/ath/ath_hal/ah.h
998
int32_t pe_enabled; /* Whether radar detection is enabled */
sys/dev/netif/ath/ath_hal/ah.h
999
int32_t pe_enrelpwr;
sys/dev/netif/ath/ath_hal/ah_internal.h
558
int32_t i;
sys/dev/netif/ath/ath_hal/ah_internal.h
879
int32_t cckTrigHigh;
sys/dev/netif/ath/ath_hal/ah_internal.h
880
int32_t cckTrigLow;
sys/dev/netif/ath/ath_hal/ah_internal.h
881
int32_t rssiThrLow;
sys/dev/netif/ath/ath_hal/ah_internal.h
882
int32_t rssiThrHigh;
sys/dev/netif/ath/ath_hal/ar5210/ar5210_reset.c
619
int32_t i;
sys/dev/netif/ath/ath_hal/ar5210/ar5210_reset.c
958
int32_t nf, nfLoops;
sys/dev/netif/ath/ath_hal/ar5211/ar5211.h
73
int32_t stepGain;
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
143
static int32_t ar5211AdjustGain(struct ath_hal *, GAIN_VALUES *);
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
1851
if (abs(pList[i] * EEP_SCALE - (int32_t) target) < EEP_DELTA) {
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
2026
static int32_t
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
646
int32_t qCoff, qCoffDenom;
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
648
int32_t iqCorrMeas;
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
649
int32_t iCoff, iCoffDenom;
sys/dev/netif/ath/ath_hal/ar5211/ar5211_reset.c
683
qCoff = ((int32_t)powerMeasI / qCoffDenom) - 64;
sys/dev/netif/ath/ath_hal/ar5212/ar2316.c
368
int32_t ss;/* potentially -ve index for taking care of pdGainOverlap */
sys/dev/netif/ath/ath_hal/ar5212/ar2317.c
346
int32_t ss;/* potentially -ve index for taking care of pdGainOverlap */
sys/dev/netif/ath/ath_hal/ar5212/ar2413.c
365
int32_t ss;/* potentially -ve index for taking care of pdGainOverlap */
sys/dev/netif/ath/ath_hal/ar5212/ar2425.c
364
int32_t ss;/* potentially -ve index for taking care of pdGainOverlap */
sys/dev/netif/ath/ath_hal/ar5212/ar5212.h
109
int32_t stepGain;
sys/dev/netif/ath/ath_hal/ar5212/ar5212.h
168
int32_t rssiThrLow;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
421
int32_t rssi = BEACON_RSSI(ahp);
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
523
int32_t rssi = BEACON_RSSI(ahp);
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
791
int32_t rssi = BEACON_RSSI(ahp);
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
864
static int32_t
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
869
int32_t listenTime = 0;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
905
int32_t ccdelta =
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
907
int32_t rfdelta =
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
909
int32_t tfdelta =
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
935
int32_t ofdmPhyErrCnt, cckPhyErrCnt;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_ani.c
986
int32_t listenTime;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_reset.c
1397
int32_t val;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_reset.c
1755
int32_t spurDeltaPhase = 0, spurFreqSd = 0, spurOffset, binOffsetNumT16, curBinOffset;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_reset.c
2424
int32_t cckIndex;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_reset.c
2682
int32_t bitPosition, bitsLeft;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_reset.c
979
int32_t qCoff, qCoffDenom;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_reset.c
980
int32_t iqCorrMeas, iCoff, iCoffDenom;
sys/dev/netif/ath/ath_hal/ar5212/ar5212_rfgain.c
187
static int32_t
sys/dev/netif/ath/ath_hal/ar5212/ar5212_rfgain.c
96
int32_t bitsLeft;
sys/dev/netif/ath/ath_hal/ar5212/ar5413.c
409
int32_t ss;/* potentially -ve index for taking care of pdGainOverlap */
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
407
int32_t rssi = BEACON_RSSI(ahp);
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
487
int32_t rssi = BEACON_RSSI(ahp);
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
747
int32_t rssi = BEACON_RSSI(ahp);
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
813
static int32_t
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
818
int32_t listenTime = 0;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
854
int32_t ccdelta =
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
856
int32_t rfdelta =
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
858
int32_t tfdelta =
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
884
int32_t ofdmPhyErrCnt, cckPhyErrCnt;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_ani.c
933
int32_t listenTime;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal.c
592
int32_t val;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal.h
39
int32_t s;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
42
cal->totalAdcDcOffsetIOddPhase(i) += (int32_t)
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
44
cal->totalAdcDcOffsetIEvenPhase(i) += (int32_t)
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
46
cal->totalAdcDcOffsetQOddPhase(i) += (int32_t)
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
48
cal->totalAdcDcOffsetQEvenPhase(i) += (int32_t)
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
73
int32_t qOddMeasOffset = cal->totalAdcDcOffsetQOddPhase(i);
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
74
int32_t qEvenMeasOffset = cal->totalAdcDcOffsetQEvenPhase(i);
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_adcdc.c
75
int32_t qDcMismatch, iDcMismatch;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_iq.c
100
int32_t iCoff = iqCorrMeas/iCoffDenom;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_iq.c
101
int32_t qCoff = powerMeasI/qCoffDenom - 64;
sys/dev/netif/ath/ath_hal/ar5416/ar5416_cal_iq.c
51
cal->totalIqCorrMeas(i) += (int32_t)
sys/dev/netif/ath/ath_hal/ar9002/ar9285.h
30
int32_t prev_offset; /* Previous value of PA offset value */
sys/dev/netif/ath/ath_hal/ar9002/ar9287_olc.c
132
ar9287olcSetPDADCs(struct ath_hal *ah, int32_t txPower,
sys/dev/netif/ath/ath_hal/ar9002/ar9287_olc.c
68
int32_t delta, currPDADC, slope;
sys/dev/netif/ath/ath_hal/ar9002/ar9287_olc.h
29
int32_t txPower, uint16_t chain);
sys/dev/netif/bwn/bwn/if_bwn.c
5187
int32_t average;
sys/dev/netif/bwn/bwn/if_bwn.c
5451
int32_t tmp;
sys/dev/netif/bwn/bwn/if_bwn_phy_g.c
209
int32_t m1, m2, f, q, delta;
sys/dev/netif/bwn/bwn/if_bwn_phy_g.c
2697
int32_t a, b;
sys/dev/netif/bwn/bwn/if_bwn_phy_g.c
2756
int32_t i, tmp32, phy3_idx = 0;
sys/dev/netif/bwn/bwn/if_bwn_phy_lp.c
168
static uint8_t bwn_nbits(int32_t);
sys/dev/netif/bwn/bwn/if_bwn_phy_lp.c
3622
bwn_nbits(int32_t val)
sys/dev/netif/bwn/bwn/if_bwnvar.h
346
int32_t pg_nrssi_slope;
sys/dev/netif/bwn/bwn/if_bwnvar.h
369
int32_t plp_antenna;
sys/dev/netif/bwn/bwn/if_bwnvar.h
386
int32_t plp_tonefreq;
sys/dev/netif/bwn/bwn/if_bwnvar.h
570
int32_t rtsfail;
sys/dev/netif/bwn/bwn/if_bwnvar.h
571
int32_t rts;
sys/dev/netif/bwn/bwn/if_bwnvar.h
572
int32_t link_noise;
sys/dev/netif/bwn/bwn/if_bwnvar.h
60
((int32_t)((num < 0) ? num / den : (num + den / 2) / den))
sys/dev/netif/de/if_devar.h
432
int32_t probe_timeout; /* time (ms) of probe timeout */
sys/dev/netif/fwe/if_fwe.c
508
*(u_int32_t *)&xfer->send.hdr = *(int32_t *)&fwe->pkt_hdr;
sys/dev/netif/ig_hal/e1000_osdep.c
100
int32_t
sys/dev/netif/ig_hal/e1000_osdep.c
86
int32_t
sys/dev/netif/ig_hal/e1000_osdep.h
75
typedef int32_t s32;
sys/dev/netif/iwm/if_iwmreg.h
6793
int32_t temp;
sys/dev/netif/iwm/if_iwmreg.h
6794
int32_t voltage;
sys/dev/netif/iwm/if_iwmreg.h
6805
int32_t temp;
sys/dev/netif/iwm/if_iwmreg.h
6806
int32_t voltage;
sys/dev/netif/iwm/if_iwmreg.h
6807
int32_t threshold_idx;
sys/dev/netif/iwn/if_iwn.c
2373
int32_t volt;
sys/dev/netif/iwn/if_iwn.c
5564
int32_t temp;
sys/dev/netif/iwn/if_iwn.c
5644
int32_t vdiff, tdiff;
sys/dev/netif/iwn/if_iwn.c
5669
vdiff = ((int32_t)le32toh(uc->volt) - sc->eeprom_voltage) / 7;
sys/dev/netif/iwn/if_iwn.c
5750
idx += (int32_t)le32toh(uc->atten[grp][c]);
sys/dev/netif/iwn/if_iwn.c
5885
int32_t r1, r2, r3, r4, temp;
sys/dev/netif/iwn/if_iwn.c
5911
int32_t temp;
sys/dev/netif/iwn/if_iwn.c
6084
delta = (noise - (int32_t)calib->noise[i]) / 30;
sys/dev/netif/iwn/if_iwn.c
6120
delta = ((int32_t)calib->noise[ant] -
sys/dev/netif/iwn/if_iwn.c
6121
(int32_t)calib->noise[i]) / div;
sys/dev/netif/iwn/if_iwn.c
6259
(((int32_t)calib->noise_ref - (int32_t)noise_ref) > 2 ||
sys/dev/netif/iwn/if_iwn.c
6342
int32_t delta_ofdm, delta_ht, delta_cck;
sys/dev/netif/iwn/if_iwnreg.h
1265
int32_t volt;
sys/dev/netif/iwn/if_iwnreg.h
1267
int32_t chan20MHz;
sys/dev/netif/iwn/if_iwnreg.h
1268
int32_t chan40MHz;
sys/dev/netif/iwn/if_iwnreg.h
1270
int32_t atten[IWN_NATTEN_GROUPS][2];
sys/dev/netif/iwn/if_iwnvar.h
376
int32_t temp_off;
sys/dev/netif/ix/if_ix.c
3410
int32_t ret;
sys/dev/netif/ix/if_ix.c
4835
int32_t retval;
sys/dev/netif/ix/ixgbe_osdep.h
125
typedef int32_t s32;
sys/dev/netif/lnc/am79900reg.h
108
int32_t pad; /* Pad to 8 ints. */
sys/dev/netif/lnc/am79900reg.h
86
int32_t rmd3;
sys/dev/netif/lnc/am79900reg.h
96
int32_t tmd3;
sys/dev/netif/msk/if_mskreg.h
2507
int32_t msk_port; /* port # on controller */
sys/dev/netif/wpi/if_wpireg.h
875
int32_t coef[5];
sys/dev/netif/wpi/if_wpireg.h
876
int32_t corr[5];
sys/dev/powermng/amdtemp/amdtemp.c
1092
int32_t temp;
sys/dev/powermng/amdtemp/amdtemp.c
253
static int32_t amdtemp_gettemp0f(device_t dev, amdsensor_t sensor);
sys/dev/powermng/amdtemp/amdtemp.c
254
static int32_t amdtemp_gettemp(device_t dev, amdsensor_t sensor);
sys/dev/powermng/amdtemp/amdtemp.c
255
static int32_t amdtemp_gettemp15hm60h(device_t dev, amdsensor_t sensor);
sys/dev/powermng/amdtemp/amdtemp.c
256
static int32_t amdtemp_gettemp17to19h(device_t dev, amdsensor_t sensor);
sys/dev/powermng/amdtemp/amdtemp.c
815
int32_t auxtemp[2], temp;
sys/dev/powermng/amdtemp/amdtemp.c
840
static int32_t
sys/dev/powermng/amdtemp/amdtemp.c
881
amdtemp_decode_fam10h_to_17h(int32_t sc_offset, uint32_t val, bool minus49)
sys/dev/powermng/amdtemp/amdtemp.c
896
amdtemp_decode_fam10h_to_16h(int32_t sc_offset, uint32_t val)
sys/dev/powermng/amdtemp/amdtemp.c
914
amdtemp_decode_fam17h_tctl(int32_t sc_offset, uint32_t val)
sys/dev/powermng/amdtemp/amdtemp.c
92
int32_t sc_offset;
sys/dev/powermng/amdtemp/amdtemp.c
923
static int32_t
sys/dev/powermng/amdtemp/amdtemp.c
93
int32_t sc_ccd_offset;
sys/dev/powermng/amdtemp/amdtemp.c
933
static int32_t
sys/dev/powermng/amdtemp/amdtemp.c
94
int32_t (*sc_gettemp)(device_t, amdsensor_t);
sys/dev/powermng/amdtemp/amdtemp.c
945
static int32_t
sys/dev/powermng/kate/kate.c
76
int32_t sc_flags;
sys/dev/raid/aac/aac_ioctl.h
179
int32_t ContainerNumber;
sys/dev/raid/aac/aac_ioctl.h
180
int32_t Bus;
sys/dev/raid/aac/aac_ioctl.h
181
int32_t Target;
sys/dev/raid/aac/aac_ioctl.h
182
int32_t Lun;
sys/dev/raid/aac/aac_ioctl.h
186
int32_t Instance;
sys/dev/raid/aac/aacreg.h
843
int32_t scsi_dh; /* For SCSI progress
sys/dev/raid/amr/amr.c
167
int32_t flag, struct sysmsg *sm);
sys/dev/raid/amr/amr.c
513
amr_linux_ioctl_int(struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag,
sys/dev/raid/amr/amrio.h
117
int32_t au_direction; /* data transfer direction */
sys/dev/raid/amr/amrio.h
118
int32_t au_status; /* command status returned by adapter */
sys/dev/raid/arcmsr/arcmsr.c
1582
int32_t allxfer_len=0;
sys/dev/raid/arcmsr/arcmsr.c
2630
int32_t allxfer_len = 0;
sys/dev/raid/arcmsr/arcmsr.c
2657
int32_t my_empty_len, user_len, wqbuf_firstindex, wqbuf_lastindex;
sys/dev/raid/arcmsr/arcmsr.h
1279
int32_t workingsrb_doneindex; /* done srb array index */
sys/dev/raid/arcmsr/arcmsr.h
1280
int32_t workingsrb_startindex; /* start srb array index */
sys/dev/raid/arcmsr/arcmsr.h
1281
int32_t srboutstandingcount;
sys/dev/raid/arcmsr/arcmsr.h
554
int32_t postq_index; /* post queue index */
sys/dev/raid/arcmsr/arcmsr.h
555
int32_t doneq_index; /* done queue index */
sys/dev/raid/asr/i2odep.h
84
typedef int32_t S32;
sys/dev/raid/dpt/dpt.h
909
int32_t ha_base; /* Base I/O address */
sys/dev/raid/ips/ips.h
458
int32_t flags);
sys/dev/raid/ips/ips_ioctl.c
153
int32_t flags)
sys/dev/raid/mfi/mfi.c
115
static int32_t mfi_read_fw_status_xscale(struct mfi_softc *sc);
sys/dev/raid/mfi/mfi.c
116
static int32_t mfi_read_fw_status_ppc(struct mfi_softc *sc);
sys/dev/raid/mfi/mfi.c
205
static int32_t
sys/dev/raid/mfi/mfi.c
211
static int32_t
sys/dev/raid/mfi/mfi.c
220
int32_t status;
sys/dev/raid/mfi/mfi.c
233
int32_t status;
sys/dev/raid/mfi/mfi_tbolt.c
100
int32_t
sys/dev/raid/mfi/mfi_tbolt.c
106
int32_t
sys/dev/raid/mfi/mfi_tbolt.c
109
int32_t status, mfi_status = 0;
sys/dev/raid/mfi/mfivar.h
311
int32_t (*mfi_read_fw_status)(struct mfi_softc *sc);
sys/dev/raid/mfi/mfivar.h
423
extern int32_t mfi_tbolt_read_fw_status_ppc(struct mfi_softc *);
sys/dev/raid/mfi/mfivar.h
424
extern int32_t mfi_tbolt_check_clear_intr_ppc(struct mfi_softc *);
sys/dev/raid/mlx/mlx.c
915
caddr_t addr, int32_t flag)
sys/dev/raid/mlx/mlxvar.h
244
caddr_t addr, int32_t flag);
sys/dev/raid/mly/mlyreg.h
337
int32_t residue;
sys/dev/raid/mly/mlyvar.h
133
int32_t mc_resid; /* I/O residual count */
sys/dev/raid/mpr/mpi/mpi2_type.h
86
typedef int32_t S32;
sys/dev/raid/mps/mpi/mpi2_type.h
79
typedef int32_t S32;
sys/dev/raid/mrsas/mrsas_cam.c
387
static int32_t mrsas_startio(struct mrsas_softc *sc, struct cam_sim *sim,
sys/dev/raid/mrsas/mrsas_cam.c
86
static int32_t mrsas_startio(struct mrsas_softc *sc, struct cam_sim *sim,
sys/dev/raid/tws/tws_cam.c
62
int32_t tws_map_request(struct tws_softc *sc, struct tws_request *req);
sys/dev/raid/tws/tws_cam.c
682
static int32_t
sys/dev/raid/tws/tws_cam.c
70
static int32_t tws_execute_scsi(struct tws_softc *sc, union ccb *ccb);
sys/dev/raid/tws/tws_cam.c
977
int32_t
sys/dev/raid/tws/tws_cam.c
980
int32_t error = 0;
sys/dev/raid/tws/tws_user.c
56
extern int32_t tws_map_request(struct tws_softc *sc, struct tws_request *req);
sys/dev/sound/pci/als4000.c
279
int32_t pos, sz;
sys/dev/sound/pci/emu10kx.c
2611
emumix_set_fxvol(struct emu_sc_info *sc, unsigned gpr, int32_t vol)
sys/dev/sound/pci/emu10kx.c
2619
emumix_set_gpr(struct emu_sc_info *sc, unsigned gpr, int32_t val)
sys/dev/sound/pci/emu10kx.c
394
static void emumix_set_fxvol(struct emu_sc_info *sc, unsigned gpr, int32_t vol);
sys/dev/sound/pci/emu10kx.c
395
static void emumix_set_gpr(struct emu_sc_info *sc, unsigned gpr, int32_t val);
sys/dev/sound/pci/vibes.c
260
int32_t m, best_m = 0, ms, me, err, min_err;
sys/dev/sound/pci/vibes.c
486
int32_t g;
sys/dev/sound/pci/vibes.c
516
int32_t i;
sys/dev/sound/pcm/feeder_eq.c
125
int32_t preamp;
sys/dev/sound/pcm/feeder_eq.c
152
int32_t pmul, pshift; \
sys/dev/sound/pcm/feeder_eq.c
270
((int32_t)(sizeof(feed_eq_biquad_tab) / sizeof(feed_eq_biquad_tab[0])))
sys/dev/sound/pcm/feeder_eq.c
501
static int32_t
sys/dev/sound/pcm/feeder_eq.c
87
((int32_t)((FEEDEQ_GAIN_MAX * (FEEDEQ_GAIN_DIV / \
sys/dev/sound/pcm/feeder_format.c
119
((int32_t)(sizeof(feed_format_ops) / sizeof(feed_format_ops[0])))
sys/dev/sound/pcm/feeder_mixer.c
129
#define FEEDMIXER_TAB_SIZE ((int32_t) \
sys/dev/sound/pcm/feeder_rate.c
1005
int32_t alpha, c, i, z, idx;
sys/dev/sound/pcm/feeder_rate.c
1027
info->z_pcoeff = kmalloc(sizeof(int32_t) *
sys/dev/sound/pcm/feeder_rate.c
1070
int32_t align, i, z_scale;
sys/dev/sound/pcm/feeder_rate.c
121
int32_t rsrc, rdst; /* original source / destination rates */
sys/dev/sound/pcm/feeder_rate.c
122
int32_t src, dst; /* rounded source / destination rates */
sys/dev/sound/pcm/feeder_rate.c
123
int32_t channels; /* total channels */
sys/dev/sound/pcm/feeder_rate.c
124
int32_t bps; /* bytes-per-sample */
sys/dev/sound/pcm/feeder_rate.c
125
int32_t quality; /* resampling quality */
sys/dev/sound/pcm/feeder_rate.c
127
int32_t z_gx, z_gy; /* interpolation / decimation ratio */
sys/dev/sound/pcm/feeder_rate.c
128
int32_t z_alpha; /* output sample time phase / drift */
sys/dev/sound/pcm/feeder_rate.c
130
int32_t *z_coeff; /* FIR coefficients */
sys/dev/sound/pcm/feeder_rate.c
131
int32_t *z_dcoeff; /* FIR coefficients differences */
sys/dev/sound/pcm/feeder_rate.c
132
int32_t *z_pcoeff; /* FIR polyphase coefficients */
sys/dev/sound/pcm/feeder_rate.c
133
int32_t z_scale; /* output scaling */
sys/dev/sound/pcm/feeder_rate.c
134
int32_t z_dx; /* input sample drift increment */
sys/dev/sound/pcm/feeder_rate.c
1340
(int32_t)info->z_##x)
sys/dev/sound/pcm/feeder_rate.c
135
int32_t z_dy; /* output sample drift increment */
sys/dev/sound/pcm/feeder_rate.c
137
int32_t z_alphadrift; /* alpha drift rate */
sys/dev/sound/pcm/feeder_rate.c
1370
(int32_t)z_gx2gy(info, info->z_full - (info->z_size << 1)));
sys/dev/sound/pcm/feeder_rate.c
1373
(int32_t)z_gx2gy(info, (info->z_alloc / align) -
sys/dev/sound/pcm/feeder_rate.c
1376
"z_gy2gx()", (int32_t)z_gy2gx(info, 1));
sys/dev/sound/pcm/feeder_rate.c
1378
"Max", (int32_t)gy2gx_max, (int32_t)z_gy2gx(info, gy2gx_max));
sys/dev/sound/pcm/feeder_rate.c
138
int32_t z_startdrift; /* buffer start position drift rate */
sys/dev/sound/pcm/feeder_rate.c
1380
"z_gx2gy()", (int32_t)z_gx2gy(info, 1));
sys/dev/sound/pcm/feeder_rate.c
1382
"Max", (int32_t)gx2gy_max, (int32_t)z_gx2gy(info, gx2gy_max));
sys/dev/sound/pcm/feeder_rate.c
140
int32_t z_mask; /* delay line full length mask */
sys/dev/sound/pcm/feeder_rate.c
1408
z_resampler_set(struct pcm_feeder *f, int what, int32_t value)
sys/dev/sound/pcm/feeder_rate.c
141
int32_t z_size; /* half width of FIR taps */
sys/dev/sound/pcm/feeder_rate.c
1411
int32_t oquality;
sys/dev/sound/pcm/feeder_rate.c
142
int32_t z_full; /* full size of delay line */
sys/dev/sound/pcm/feeder_rate.c
143
int32_t z_alloc; /* largest allocated full size of delay line */
sys/dev/sound/pcm/feeder_rate.c
144
int32_t z_start; /* buffer processing start position */
sys/dev/sound/pcm/feeder_rate.c
145
int32_t z_pos; /* current position for the next feed */
sys/dev/sound/pcm/feeder_rate.c
149
int32_t z_maxfeed; /* maximum feed to avoid 32bit overflow */
sys/dev/sound/pcm/feeder_rate.c
1546
int32_t alphadrift, startdrift, reqout, ocount, reqin, align;
sys/dev/sound/pcm/feeder_rate.c
1547
int32_t fetch, fetched, start, cp;
sys/dev/sound/pcm/feeder_rate.c
339
((int32_t)(((uint64_t)z_coeff_tab[Z_SINC_COEFF_IDX(i)].len << \
sys/dev/sound/pcm/feeder_rate.c
371
static int32_t
sys/dev/sound/pcm/feeder_rate.c
372
z_gcd(int32_t x, int32_t y)
sys/dev/sound/pcm/feeder_rate.c
374
int32_t w;
sys/dev/sound/pcm/feeder_rate.c
385
static int32_t
sys/dev/sound/pcm/feeder_rate.c
386
z_roundpow2(int32_t v)
sys/dev/sound/pcm/feeder_rate.c
388
int32_t i;
sys/dev/sound/pcm/feeder_rate.c
440
int32_t z; \
sys/dev/sound/pcm/feeder_rate.c
527
int32_t coeff, z, *z_coeff, *z_dcoeff; \
sys/dev/sound/pcm/feeder_rate.c
568
int32_t ch, i, start, *z_pcoeff; \
sys/dev/sound/pcm/feeder_rate.c
676
((int32_t)(sizeof(z_resampler_tab) / sizeof(z_resampler_tab[0])))
sys/dev/sound/pcm/feeder_rate.c
710
static int32_t
sys/dev/sound/pcm/feeder_rate.c
713
int32_t c, z, len, lmax;
sys/dev/sound/pcm/feeder_rate.c
790
static int32_t
sys/dev/sound/pcm/feeder_rate.c
791
z_coeff_interpolate(int32_t z, int32_t *z_coeff)
sys/dev/sound/pcm/feeder_rate.c
793
int32_t coeff;
sys/dev/sound/pcm/feeder_rate.c
800
int32_t zl0, zl1;
sys/dev/sound/pcm/feeder_rate.c
808
int32_t zq0, zq1, zq2;
sys/dev/sound/pcm/feeder_rate.c
818
int32_t zh0, zh1, zh2, zh3;
sys/dev/sound/pcm/feeder_rate.c
830
int32_t zb0, zb1, zb2, zb3;
sys/dev/sound/pcm/feeder_rate.c
843
int32_t zoz, zoe1, zoe2, zoe3, zoo1, zoo2, zoo3;
sys/dev/sound/pcm/feeder_rate.c
844
int32_t zoc0, zoc1, zoc2, zoc3, zoc4, zoc5;
sys/dev/sound/pcm/feeder_rate.c
873
int32_t zoz, zoe1, zoe2, zoe3, zoo1, zoo2, zoo3;
sys/dev/sound/pcm/feeder_rate.c
874
int32_t zoc0, zoc1, zoc2, zoc3, zoc4, zoc5;
sys/dev/sound/pcm/feeder_rate.c
903
int32_t zoz, zoe1, zoe2, zoe3, zoo1, zoo2, zoo3;
sys/dev/sound/pcm/feeder_rate.c
904
int32_t zoc0, zoc1, zoc2, zoc3, zoc4, zoc5;
sys/dev/sound/pcm/feeder_rate.c
933
int32_t zoz, zoe1, zoe2, zoe3, zoo1, zoo2, zoo3;
sys/dev/sound/pcm/feeder_rate.c
934
int32_t zoc0, zoc1, zoc2, zoc3, zoc4, zoc5;
sys/dev/sound/pcm/feeder_rate.c
963
int32_t zoz, zoe1, zoe2, zoe3, zoo1, zoo2, zoo3;
sys/dev/sound/pcm/feeder_rate.c
964
int32_t zoc0, zoc1, zoc2, zoc3, zoc4, zoc5;
sys/dev/sound/pcm/feeder_volume.c
135
#define FEEDVOLUME_TAB_SIZE ((int32_t) \
sys/dev/sound/pcm/pcm.h
111
#define _PCM_READ_S32_LE(b8) INTPCM_T(*((int32_t *)(b8)))
sys/dev/sound/pcm/pcm.h
122
*((int32_t *)(b8)) = (val); \
sys/dev/sound/pcm/pcm.h
142
INTPCM_T((int32_t)(*((uint32_t *)(b8)) ^ 0x80000000))
sys/dev/sound/pcm/pcm.h
185
#define _PCM_READ_S32_BE(b8) INTPCM_T(*((int32_t *)(b8)))
sys/dev/sound/pcm/pcm.h
205
*((int32_t *)(b8)) = (val); \
sys/dev/sound/pcm/pcm.h
216
INTPCM_T((int32_t)(*((uint32_t *)(b8)) ^ 0x80000000))
sys/dev/sound/pcm/pcm.h
52
typedef int32_t intpcm_t;
sys/dev/sound/pcm/pcm.h
54
typedef int32_t intpcm8_t;
sys/dev/sound/pcm/pcm.h
55
typedef int32_t intpcm16_t;
sys/dev/sound/pcm/pcm.h
56
typedef int32_t intpcm24_t;
sys/dev/sound/pcm/pcm.h
68
typedef int32_t intpcm32_t;
sys/dev/sound/pcm/sound.h
421
int32_t eqpreamp;
sys/kern/imgact_elf.c
131
.hdr.n_descsz = sizeof(int32_t),
sys/kern/imgact_elf.c
1672
int32_t *osrel)
sys/kern/imgact_elf.c
1722
int32_t *osrel, const Elf_Phdr * pnote)
sys/kern/imgact_elf.c
1866
__elfN(bsd_trans_osrel)(const Elf_Note *note, int32_t *osrel)
sys/kern/imgact_elf.c
1872
*osrel = *(const int32_t *)(p);
sys/kern/imgact_elf.c
536
int32_t *osrel)
sys/kern/imgact_elf.c
614
int32_t osrel = 0;
sys/kern/imgact_elf.c
78
const char *interp, int32_t *osrel);
sys/kern/imgact_elf.c
87
int32_t *osrel);
sys/kern/imgact_elf.c
89
Elf_Brandnote *checknote, int32_t *osrel);
sys/kern/imgact_elf.c
93
Elf_Brandnote *checknote, int32_t *osrel, const Elf_Phdr * pnote);
sys/kern/kern_clock.c
311
int32_t ntp_tick_delta; /* current adjustment rate */
sys/kern/kern_clock.c
312
int32_t ntp_default_tick_delta; /* adjustment rate for ntp_delta */
sys/kern/kern_slaballoc.c
231
__read_frequently static int32_t weirdary[16];
sys/kern/kern_sysctl.c
973
error = SYSCTL_OUT(req, arg1, sizeof(int32_t));
sys/kern/kern_sysctl.c
978
error = SYSCTL_IN(req, arg1, sizeof(int32_t));
sys/kern/kern_umtx.c
255
int32_t value;
sys/kern/uipc_mbuf.c
103
int32_t mcl_refs;
sys/kern/vfs_mount.c
600
int32_t val;
sys/kern/vfs_subr.c
2625
int32_t val[2];
sys/libprop/prop_array.h
116
int32_t *);
sys/libprop/prop_array.h
120
int32_t);
sys/libprop/prop_array.h
139
bool prop_array_add_int32(prop_array_t, int32_t);
sys/libprop/prop_dictionary.h
144
int32_t *);
sys/libprop/prop_dictionary.h
148
int32_t);
sys/net/altq/altq_red.c
578
int32_t
sys/net/altq/altq_red.c
582
int32_t val;
sys/net/altq/altq_red.h
119
int32_t pow_w(struct wtab *, int);
sys/net/altq/altq_red.h
67
int32_t w_tab[32];
sys/net/altq/altq_subr.c
785
int32_t sum;
sys/net/bpf.h
54
typedef int32_t bpf_int32;
sys/net/bpf_filter.c
208
if (k > buflen || sizeof(int32_t) > buflen - k) {
sys/net/bpf_filter.c
227
A = ntohl(*(int32_t *)(p + k));
sys/net/bpf_filter.c
277
sizeof(int32_t) > buflen - k) {
sys/net/bpf_filter.c
296
A = ntohl(*(int32_t *)(p + k));
sys/net/if_loop.c
247
int32_t *afp;
sys/net/if_loop.c
255
M_PREPEND(m, sizeof(int32_t), M_NOWAIT);
sys/net/if_loop.c
258
afp = mtod(m, int32_t *);
sys/net/if_loop.c
259
*afp = (int32_t)af;
sys/net/if_loop.c
295
int32_t af, *afp;
sys/net/if_loop.c
305
afp = mtod(m, int32_t *);
sys/net/if_loop.c
307
m_adj(m, sizeof(int32_t));
sys/net/netmap/netmap_kern.h
164
int32_t nr_hwreserved;
sys/net/netmap/netmap_kern.h
167
int32_t nkr_hwofs; /* offset between NIC and netmap ring */
sys/net/ppp_layer/slcompress.c
175
th = (struct tcphdr *)&((int32_t *)ip)[hlen];
sys/net/ppp_layer/slcompress.c
188
*(int32_t *)th != ((int32_t *)&cs->cs_ip)[cs->cs_ip.ip_hl]) {
sys/net/ppp_layer/slcompress.c
209
&& *(int32_t *)th ==
sys/net/ppp_layer/slcompress.c
210
((int32_t *)&cs->cs_ip)[cs->cs_ip.ip_hl])
sys/net/ppp_layer/slcompress.c
254
oth = (struct tcphdr *)&((int32_t *)&cs->cs_ip)[hlen];
sys/netgraph/bpf/ng_bpf.h
56
int32_t bpf_prog_len; /* #isns in program */
sys/netgraph/iface/ng_iface.c
426
dst->sa_family = (sa_family_t)*mtod(m, int32_t *);
sys/netgraph/iface/ng_iface.c
487
int32_t family4 = (int32_t)family;
sys/netgraph/ksocket/ng_ksocket.c
1006
NGM_KSOCKET_CONNECT, sizeof(int32_t), waitflag);
sys/netgraph/ksocket/ng_ksocket.c
1010
*(int32_t *)response->data = error;
sys/netgraph/ksocket/ng_ksocket.c
668
if (msg->header.arglen != sizeof(int32_t))
sys/netgraph/ksocket/ng_ksocket.c
674
error = solisten(so, *((int32_t *)msg->data), td);
sys/netgraph/ksocket/ng_ksocket.h
54
int32_t level; /* second arg of [gs]etsockopt() */
sys/netgraph/ksocket/ng_ksocket.h
55
int32_t name; /* third arg of [gs]etsockopt() */
sys/netgraph/netgraph/ng_parse.c
523
int32_t val32;
sys/netgraph/netgraph/ng_parse.c
527
if (val < (int32_t)0x80000000
sys/netgraph/netgraph/ng_parse.c
531
val32 = (int32_t)val;
sys/netgraph/netgraph/ng_parse.c
532
bcopy(&val32, buf, sizeof(int32_t));
sys/netgraph/netgraph/ng_parse.c
533
*buflen = sizeof(int32_t);
sys/netgraph/netgraph/ng_parse.c
543
int32_t val;
sys/netgraph/netgraph/ng_parse.c
545
bcopy(data + *off, &val, sizeof(int32_t));
sys/netgraph/netgraph/ng_parse.c
563
*off += sizeof(int32_t);
sys/netgraph/netgraph/ng_parse.c
571
int32_t val;
sys/netgraph/netgraph/ng_parse.c
573
if (*buflen < sizeof(int32_t))
sys/netgraph/netgraph/ng_parse.c
576
bcopy(&val, buf, sizeof(int32_t));
sys/netgraph/netgraph/ng_parse.c
577
*buflen = sizeof(int32_t);
sys/netgraph/netgraph/ng_parse.c
64
int32_t y;
sys/netgraph/one2many/ng_one2many.c
332
if (msg->header.arglen != sizeof(int32_t)) {
sys/netgraph/one2many/ng_one2many.c
336
linkNum = *((int32_t *)msg->data);
sys/netgraph/ppp/ng_ppp.c
182
int32_t seq; /* highest rec'd seq# - MSEQ */
sys/netgraph/ppp/ng_ppp.c
193
int32_t xseq; /* next out MP seq # */
sys/netgraph/ppp/ng_ppp.c
194
int32_t mseq; /* min links[i].seq */
sys/netgraph/ppp/ng_ppp.h
90
int32_t rseq[NG_PPP_MAX_LINKS]; /* highest rec'd MP seq # */
sys/netgraph/ppp/ng_ppp.h
91
int32_t mseq; /* min rseq[i] */
sys/netgraph/ppp/ng_ppp.h
92
int32_t xseq; /* next xmit MP seq # */
sys/netgraph/pptpgre/ng_pptpgre.c
139
#define PPTP_SEQ_DIFF(x,y) ((int32_t)(x) - (int32_t)(y))
sys/netgraph/pptpgre/ng_pptpgre.c
143
int32_t ato; /* adaptive time-out value */
sys/netgraph/pptpgre/ng_pptpgre.c
144
int32_t rtt; /* round trip time estimate */
sys/netgraph/pptpgre/ng_pptpgre.c
145
int32_t dev; /* deviation estimate */
sys/netgraph7/bluetooth/include/ng_bt3c.h
83
int32_t queue; /* queue index */
sys/netgraph7/bluetooth/include/ng_bt3c.h
87
int32_t qlen; /* queue length */
sys/netgraph7/bluetooth/include/ng_h4.h
96
typedef int32_t ng_h4_node_qlen_ep;
sys/netgraph7/bluetooth/include/ng_ubt.h
67
int32_t queue; /* queue index */
sys/netgraph7/bluetooth/include/ng_ubt.h
72
int32_t qlen; /* queue length */
sys/netgraph7/bluetooth/l2cap/ng_l2cap_var.h
114
int32_t refcnt; /* reference count */
sys/netgraph7/bpf/ng_bpf.h
57
int32_t bpf_prog_len; /* #insns in program */
sys/netgraph7/iface/ng_iface.c
479
int32_t family4 = (int32_t)family;
sys/netgraph7/ksocket/ng_ksocket.c
1036
NGM_KSOCKET_CONNECT, sizeof(int32_t), M_WAITOK | M_NULLOK);
sys/netgraph7/ksocket/ng_ksocket.c
1040
*(int32_t *)response->data = error;
sys/netgraph7/ksocket/ng_ksocket.c
691
if (msg->header.arglen != sizeof(int32_t))
sys/netgraph7/ksocket/ng_ksocket.c
697
error = solisten(so, *((int32_t *)msg->data), td);
sys/netgraph7/ksocket/ng_ksocket.h
56
int32_t level; /* second arg of [gs]etsockopt() */
sys/netgraph7/ksocket/ng_ksocket.h
57
int32_t name; /* third arg of [gs]etsockopt() */
sys/netgraph7/netgraph/ng_parse.c
535
int32_t val32;
sys/netgraph7/netgraph/ng_parse.c
542
if (val < (int32_t)0x80000000
sys/netgraph7/netgraph/ng_parse.c
546
val32 = (int32_t)val;
sys/netgraph7/netgraph/ng_parse.c
547
bcopy(&val32, buf, sizeof(int32_t));
sys/netgraph7/netgraph/ng_parse.c
548
*buflen = sizeof(int32_t);
sys/netgraph7/netgraph/ng_parse.c
559
int32_t val;
sys/netgraph7/netgraph/ng_parse.c
561
bcopy(data + *off, &val, sizeof(int32_t));
sys/netgraph7/netgraph/ng_parse.c
583
*off += sizeof(int32_t);
sys/netgraph7/netgraph/ng_parse.c
591
int32_t val;
sys/netgraph7/netgraph/ng_parse.c
593
if (*buflen < sizeof(int32_t))
sys/netgraph7/netgraph/ng_parse.c
596
bcopy(&val, buf, sizeof(int32_t));
sys/netgraph7/netgraph/ng_parse.c
597
*buflen = sizeof(int32_t);
sys/netgraph7/netgraph/ng_parse.c
77
int32_t y;
sys/netgraph7/ng_source.h
107
int32_t increment;
sys/netgraph7/one2many/ng_one2many.c
328
if (msg->header.arglen != sizeof(int32_t)) {
sys/netgraph7/one2many/ng_one2many.c
332
linkNum = *((int32_t *)msg->data);
sys/netgraph7/ppp/ng_ppp.c
1624
ng_ppp_bump_mseq(node_p node, int32_t new_mseq)
sys/netgraph7/ppp/ng_ppp.c
1975
int32_t seq;
sys/netgraph7/ppp/ng_ppp.c
201
int32_t seq; /* highest rec'd seq# - MSEQ */
sys/netgraph7/ppp/ng_ppp.c
212
int32_t xseq; /* next out MP seq # */
sys/netgraph7/ppp/ng_ppp.c
213
int32_t mseq; /* min links[i].seq */
sys/netgraph7/ppp/ng_ppp.c
311
static void ng_ppp_bump_mseq(node_p node, int32_t new_mseq);
sys/netgraph7/ppp/ng_ppp.h
110
int32_t rseq[NG_PPP_MAX_LINKS]; /* highest rec'd MP seq # */
sys/netgraph7/ppp/ng_ppp.h
111
int32_t mseq; /* min rseq[i] */
sys/netgraph7/ppp/ng_ppp.h
112
int32_t xseq; /* next xmit MP seq # */
sys/netgraph7/pptpgre/ng_pptpgre.c
138
#define PPTP_SEQ_DIFF(x,y) ((int32_t)(x) - (int32_t)(y))
sys/netgraph7/pptpgre/ng_pptpgre.c
153
int32_t ato; /* adaptive time-out value */
sys/netgraph7/pptpgre/ng_pptpgre.c
154
int32_t rtt; /* round trip time estimate */
sys/netgraph7/pptpgre/ng_pptpgre.c
155
int32_t dev; /* deviation estimate */
sys/netinet/icmp6.h
374
int32_t icmp6_nl_ttl;
sys/netinet/ip_input.c
1719
if (off > optlen - (int)sizeof(int32_t)) {
sys/netinet/ip_output.c
1341
if (m->m_len % sizeof(int32_t))
sys/netinet/tcp.h
43
typedef int32_t tcp_seq_diff_t;
sys/netproto/802_11/ieee80211_mesh.h
506
#define IEEE80211_MESH_SEQ_LEQ(a, b) ((int32_t)((a)-(b)) <= 0)
sys/netproto/802_11/ieee80211_mesh.h
507
#define IEEE80211_MESH_SEQ_GEQ(a, b) ((int32_t)((a)-(b)) >= 0)
sys/netproto/802_11/wlan/ieee80211_hwmp.c
128
#define HWMP_SEQ_LT(a, b) ((int32_t)((a)-(b)) < 0)
sys/netproto/802_11/wlan/ieee80211_hwmp.c
129
#define HWMP_SEQ_LEQ(a, b) ((int32_t)((a)-(b)) <= 0)
sys/netproto/802_11/wlan/ieee80211_hwmp.c
130
#define HWMP_SEQ_EQ(a, b) ((int32_t)((a)-(b)) == 0)
sys/netproto/802_11/wlan/ieee80211_hwmp.c
131
#define HWMP_SEQ_GT(a, b) ((int32_t)((a)-(b)) > 0)
sys/netproto/802_11/wlan/ieee80211_hwmp.c
132
#define HWMP_SEQ_GEQ(a, b) ((int32_t)((a)-(b)) >= 0)
sys/netproto/802_11/wlan/ieee80211_node.c
1149
int32_t rssi;
sys/netproto/802_11/wlan/ieee80211_node.c
1170
int32_t rssi;
sys/netproto/802_11/wlan/ieee80211_tdma.c
592
int32_t rtt;
sys/platform/pc64/include/pmap.h
296
int32_t (*fuword32)(const uint32_t *);
sys/platform/pc64/x86_64/pmap.c
343
extern int32_t std_fuword32 (const uint32_t *base);
sys/platform/pc64/x86_64/uwrapper.c
39
int32_t
sys/platform/vkernel64/platform/copyio.c
418
int32_t
sys/sys/atomic_common.h
103
#define atomic_load_32(p) __atomic_load_generic(p, int32_t, uint32_t, 32)
sys/sys/atomic_common.h
118
__atomic_store_generic(p, v, int32_t, uint32_t, 32)
sys/sys/cdrio.h
78
int32_t len;
sys/sys/devicestat.h
165
int32_t busy_count; /*
sys/sys/elf32.h
46
typedef int32_t Elf32_Sword;
sys/sys/elf64.h
47
typedef int32_t Elf64_Sword;
sys/sys/imgact_elf.h
64
boolean_t (*trans_osrel)(const Elf_Note *, int32_t *);
sys/sys/ipmi.h
143
int32_t msgid;
sys/sys/ipmi.h
151
int32_t msgid;
sys/sys/journal.h
126
int32_t recsize; /* stream data block (incls beg & end) */
sys/sys/journal.h
134
int32_t recsize; /* same as rawrecbeg->recsize, for rev scan */
sys/sys/journal.h
139
int32_t filler0;
sys/sys/journal.h
140
int32_t filler1;
sys/sys/journal.h
245
int32_t recsize; /* record size (mandatory if not NESTED) */
sys/sys/journal.h
332
int32_t modes;
sys/sys/journal.h
333
int32_t fflags;
sys/sys/journal.h
341
int32_t uid;
sys/sys/journal.h
342
int32_t gid;
sys/sys/journal.h
343
int32_t pid;
sys/sys/journal.h
344
int32_t flags; /* suid/sgid and other flags */
sys/sys/ktr.h
73
int32_t *kf_master_enable; /* the master enable variable */
sys/sys/ktr.h
84
int32_t ktr_line;
sys/sys/ktr.h
85
int32_t ktr_unused;
sys/sys/ktr.h
86
int32_t ktr_data[KTR_BUFSIZE / sizeof(int32_t)];
sys/sys/mount.h
71
typedef struct fsid { int32_t val[2]; } fsid_t; /* file system id type */
sys/sys/mtio.h
158
int32_t io_resid; /* residual count from last Data I/O */
sys/sys/mtio.h
161
int32_t ctl_resid; /* residual count from last Control I/O */
sys/sys/pipe.h
57
int32_t rip; /* blocking read requested (FIFO) */
sys/sys/pipe.h
58
int32_t unu01; /* blocking read requested (FIFO) */
sys/sys/pipe.h
64
int32_t wip;
sys/sys/pipe.h
65
int32_t unu02;
sys/sys/sysent.h
45
int32_t sy_narg; /* number of arguments */
sys/sys/systm.h
312
int32_t fuword32 (const uint32_t *base);
sys/sys/time.h
168
extern int32_t ntp_tick_delta;
sys/sys/time.h
169
extern int32_t ntp_default_tick_delta;
sys/sys/upmap.h
186
int32_t version;
sys/sys/upmap.h
187
int32_t upticks; /* userland reads ts_*[upticks & 1] */
sys/sys/upmap.h
191
int32_t tick_freq; /* scheduler tick frequency */
sys/sys/upmap.h
192
int32_t fast_gtod; /* fast gettimeofday() */
sys/sys/xdiskioctl.h
51
int32_t reserved02[8];
sys/vfs/dirfs/dirfs.h
164
int32_t dn_atime;
sys/vfs/dirfs/dirfs.h
165
int32_t dn_atimensec;
sys/vfs/dirfs/dirfs.h
166
int32_t dn_mtime;
sys/vfs/dirfs/dirfs.h
167
int32_t dn_mtimensec;
sys/vfs/dirfs/dirfs.h
168
int32_t dn_ctime;
sys/vfs/dirfs/dirfs.h
169
int32_t dn_ctimensec;
sys/vfs/ext2fs/ext2_alloc.c
1140
int32_t *lp;
sys/vfs/ext2fs/ext2_bmap.c
108
ext4_bmapext(struct vnode *vp, int32_t bn, daddr_t/*int64_t*/ *bnp, int *runp, int *runb)
sys/vfs/ext2fs/ext2_extern.h
66
int ext4_bmapext(struct vnode *, int32_t, daddr_t/*int64_t*/ *, int *, int *);
sys/vfs/ext2fs/ext2_inode.c
195
fsbtodb(fs, nb), (int32_t)-1, level - 1, &blkcount)) != 0)
sys/vfs/ext2fs/ext2_inode_cnv.c
200
ext2_encode_extra_time(int64_t sec, int32_t nsec)
sys/vfs/ext2fs/ext2_inode_cnv.c
204
extra = ((sec - (int32_t)sec) >> 32) & EXT3_EPOCH_MASK;
sys/vfs/ext2fs/ext2_inode_cnv.c
97
ext2_decode_extra_time(ext_time_t *sec, int32_t *nsec, uint32_t extra)
sys/vfs/ext2fs/ext2_subr.c
116
int32_t *sump = fs->e2fs_clustersum[cg].cs_sum;
sys/vfs/ext2fs/ext2_subr.c
117
int32_t *lp;
sys/vfs/ext2fs/ext2_vfsops.c
792
int32_t *lp;
sys/vfs/ext2fs/ext2_vfsops.c
871
int32_t *lp;
sys/vfs/ext2fs/ext2_vfsops.c
872
int32_t e2fs_maxcontig;
sys/vfs/ext2fs/ext2_vfsops.c
948
size = ump->um_e2fs->e2fs_gcount * sizeof(int32_t);
sys/vfs/ext2fs/ext2_vfsops.c
958
sizeof(int32_t), M_EXT2MNT, M_WAITOK | M_ZERO);
sys/vfs/ext2fs/ext2fs.h
182
int32_t e2fs_contigsumsize; /* size of cluster summary array */
sys/vfs/ext2fs/ext2fs.h
183
int32_t *e2fs_maxcluster; /* max cluster in each cyl group */
sys/vfs/ext2fs/ext2fs.h
185
int32_t e2fs_uhash; /* 3 if hash should be signed, 0 if not */
sys/vfs/ext2fs/ext2fs.h
193
int32_t *cs_sum; /* cluster summary array */
sys/vfs/ext2fs/inode.h
108
int32_t i_mtimensec; /* Last modified time. */
sys/vfs/ext2fs/inode.h
109
int32_t i_atimensec; /* Last access time. */
sys/vfs/ext2fs/inode.h
110
int32_t i_ctimensec; /* Last inode change time. */
sys/vfs/ext2fs/inode.h
111
int32_t i_birthnsec; /* Inode creation time. */
sys/vfs/ext2fs/inode.h
53
#define doff_t int32_t
sys/vfs/ext2fs/inode.h
88
int32_t i_count; /* Size of free slot in directory. */
sys/vfs/ext2fs/inode.h
99
int32_t i_nlink; /* File link count. */
sys/vfs/fuse/fuse_abi.h
686
int32_t result;
sys/vfs/fuse/fuse_abi.h
729
int32_t error;
sys/vfs/hammer/hammer.h
1160
int32_t vol_no, int *errorp);
sys/vfs/hammer/hammer.h
1194
void *hammer_alloc_data(hammer_transaction_t trans, int32_t data_len,
sys/vfs/hammer/hammer.h
563
hammer_vol_rb_compare, int32_t);
sys/vfs/hammer/hammer.h
650
int32_t vol_no;
sys/vfs/hammer/hammer_blockmap.c
1119
int32_t bytes;
sys/vfs/hammer/hammer_blockmap.c
898
int32_t temp;
sys/vfs/hammer/hammer_btree.c
687
int32_t data_len;
sys/vfs/hammer/hammer_btree.h
159
int32_t reserved01;
sys/vfs/hammer/hammer_btree.h
160
int32_t reserved02;
sys/vfs/hammer/hammer_btree.h
175
int32_t data_len;
sys/vfs/hammer/hammer_btree.h
225
int32_t count; /* maximum 62 for INTERNAL, 63 for LEAF */
sys/vfs/hammer/hammer_disk.h
1007
int32_t reserved01; /* reserved for future master_id */
sys/vfs/hammer/hammer_disk.h
1008
int32_t mirror_flags; /* misc flags */
sys/vfs/hammer/hammer_disk.h
1011
int32_t reserved02; /* was prune_{time,freq} */
sys/vfs/hammer/hammer_disk.h
1012
int32_t reserved03; /* was reblock_{time,freq} */
sys/vfs/hammer/hammer_disk.h
1013
int32_t reserved04; /* was snapshot_freq */
sys/vfs/hammer/hammer_disk.h
1014
int32_t prune_min; /* do not prune recent history */
sys/vfs/hammer/hammer_disk.h
1015
int32_t prune_max; /* do not retain history beyond here */
sys/vfs/hammer/hammer_disk.h
1016
int32_t reserved[16];
sys/vfs/hammer/hammer_disk.h
446
int32_t bytes_free; /* bytes free within this big-block */
sys/vfs/hammer/hammer_disk.h
615
int32_t undo_data_bytes;
sys/vfs/hammer/hammer_disk.h
616
int32_t undo_reserved01;
sys/vfs/hammer/hammer_disk.h
662
int32_t redo_data_bytes;
sys/vfs/hammer/hammer_disk.h
754
int32_t vol_no; /* volume number within filesystem */
sys/vfs/hammer/hammer_disk.h
755
int32_t vol_count; /* number of volumes making up filesystem */
sys/vfs/hammer/hammer_ioctl.h
126
int32_t allpfs; /* rebalance all PFS if set */
sys/vfs/hammer/hammer_ioctl.h
127
int32_t reserved02;
sys/vfs/hammer/hammer_ioctl.h
186
int32_t free_level; /* 0 for maximum compaction */
sys/vfs/hammer/hammer_ioctl.h
205
int32_t reserved04;
sys/vfs/hammer/hammer_ioctl.h
335
int32_t vol_no;
sys/vfs/hammer/hammer_ioctl.h
54
int32_t flags;
sys/vfs/hammer/hammer_ioctl.h
55
int32_t error;
sys/vfs/hammer/hammer_ioctl.h
56
int32_t reserved01[4];
sys/vfs/hammer/hammer_object.c
2433
int32_t data_len;
sys/vfs/hammer/hammer_ondisk.c
1120
int32_t xoff = (int32_t)buf_offset & HAMMER_BUFMASK;
sys/vfs/hammer/hammer_ondisk.c
1634
hammer_alloc_data(hammer_transaction_t trans, int32_t data_len,
sys/vfs/hammer/hammer_ondisk.c
421
hammer_get_volume(hammer_mount_t hmp, int32_t vol_no, int *errorp)
sys/vfs/hammer/hammer_ondisk.c
89
hammer_vol_rb_compare, int32_t, vol_no);
sys/vfs/hammer/hammer_subs.c
948
int32_t crcx;
sys/vfs/hammer/hammer_volume.c
296
int32_t vol_no;
sys/vfs/hammer2/hammer2_bulkfree.c
1251
if ((int32_t)live->avail < 0)
sys/vfs/hammer2/hammer2_bulkfree.c
915
if (bmap->linear < (int32_t)data_off + (int32_t)bytes)
sys/vfs/hammer2/hammer2_bulkfree.c
916
bmap->linear = (int32_t)data_off + (int32_t)bytes;
sys/vfs/hammer2/hammer2_bulkfree.c
917
} else if (bmap->linear >= (int32_t)data_off &&
sys/vfs/hammer2/hammer2_bulkfree.c
918
bmap->linear < (int32_t)data_off + (int32_t)bytes) {
sys/vfs/hammer2/hammer2_bulkfree.c
919
bmap->linear = (int32_t)data_off + (int32_t)bytes;
sys/vfs/hammer2/hammer2_ccms.h
165
int32_t upgrade; /* upgrades pending */
sys/vfs/hammer2/hammer2_ccms.h
166
int32_t count; /* active shared/exclusive count */
sys/vfs/hammer2/hammer2_ccms.h
167
int32_t blocked; /* wakeup blocked on release */
sys/vfs/hammer2/hammer2_disk.h
533
int32_t index;
sys/vfs/hammer2/hammer2_disk.h
534
int32_t unused01;
sys/vfs/hammer2/hammer2_disk.h
872
int32_t linear; /* 00 linear sub-granular allocation offset */
sys/vfs/hammer2/hammer2_lz4.c
126
typedef int32_t S32;
sys/vfs/hammer2/xxhash/xxhash.c
146
typedef int32_t S32;
sys/vfs/hpfs/hpfs.h
365
int32_t hpfid_gen; /* Generation number. */
sys/vfs/nfs/krpc_subr.c
100
int32_t rp_astatus; /* accept status (0: accepted) */
sys/vfs/nfs/krpc_subr.c
78
int32_t ua_time;
sys/vfs/nfs/krpc_subr.c
79
int32_t ua_hostname; /* null */
sys/vfs/nfs/krpc_subr.c
80
int32_t ua_uid;
sys/vfs/nfs/krpc_subr.c
81
int32_t ua_gid;
sys/vfs/nfs/krpc_subr.c
82
int32_t ua_gidlist; /* null */
sys/vfs/nfs/krpc_subr.c
87
int32_t rp_direction; /* call direction (0) */
sys/vfs/nfs/krpc_subr.c
99
int32_t rp_direction; /* call direction (1) */
sys/vfs/nfs/nfs.h
642
extern int32_t (*nfsrv3_procs[NFS_NPROCS]) (struct nfsrv_descript *nd,
sys/vfs/nfs/nfs_serv.c
1047
retlen = len = fxdr_unsigned(int32_t, *tl);
sys/vfs/nfs/nfs_serv.c
1276
len = fxdr_unsigned(int32_t, *tl);
sys/vfs/nfs/nfs_serv.c
1705
tsize = fxdr_unsigned(int32_t, sp->sa_size);
sys/vfs/nfs/nfs_serv.c
394
fxdr_unsigned(int32_t, sp->sa_atime.nfsv2_sec);
sys/vfs/nfs/nfs_socket.c
1498
i = fxdr_unsigned(int32_t, *tl);
sys/vfs/nfs/nfs_subs.c
657
int32_t t1;
sys/vfs/nfs/nfs_subs.c
703
rdev = fxdr_unsigned(int32_t, fp->fa2_rdev);
sys/vfs/nfs/nfs_subs.c
777
vap->va_blocksize = fxdr_unsigned(int32_t, fp->fa2_blocksize);
sys/vfs/nfs/nfs_subs.c
778
vap->va_bytes = (u_quad_t)fxdr_unsigned(int32_t, fp->fa2_blocks)
sys/vfs/nfs/nfs_subs.c
780
vap->va_fileid = fxdr_unsigned(int32_t, fp->fa2_fileid);
sys/vfs/nfs/nfs_vfsops.c
365
sbp->f_files = (fxdr_unsigned(int32_t,
sys/vfs/nfs/nfs_vfsops.c
367
sbp->f_ffree = (fxdr_unsigned(int32_t,
sys/vfs/nfs/nfs_vfsops.c
370
sbp->f_bsize = fxdr_unsigned(int32_t, sfp->sf_bsize);
sys/vfs/nfs/nfs_vfsops.c
371
sbp->f_blocks = fxdr_unsigned(int32_t, sfp->sf_blocks);
sys/vfs/nfs/nfs_vfsops.c
372
sbp->f_bfree = fxdr_unsigned(int32_t, sfp->sf_bfree);
sys/vfs/nfs/nfs_vfsops.c
373
sbp->f_bavail = fxdr_unsigned(int32_t, sfp->sf_bavail);
sys/vfs/nfs/nfs_vfsops.c
456
sbp->f_bsize = fxdr_unsigned(int32_t, sfp->sf_bsize);
sys/vfs/nfs/nfs_vfsops.c
457
sbp->f_blocks = fxdr_unsigned(int32_t, sfp->sf_blocks);
sys/vfs/nfs/nfs_vfsops.c
458
sbp->f_bfree = fxdr_unsigned(int32_t, sfp->sf_bfree);
sys/vfs/nfs/nfs_vfsops.c
459
sbp->f_bavail = fxdr_unsigned(int32_t, sfp->sf_bavail);
sys/vfs/nfs/nfs_vnops.c
1463
int32_t backup;
sys/vfs/nfs/nfsm_subs.c
642
len = fxdr_unsigned(int32_t, *tl);
sys/vfs/nfs/nfsm_subs.c
665
len = fxdr_unsigned(int32_t,*tl);
sys/vfs/nfs/nfsm_subs.c
697
len = fxdr_unsigned(int32_t,*tl);
sys/vfs/nfs/nfsproto.h
232
#define vtonfsv2_type(a) txdr_unsigned(nfsv2_type[((int32_t)(a))])
sys/vfs/nfs/nfsproto.h
233
#define vtonfsv3_type(a) txdr_unsigned(nfsv3_type[((int32_t)(a))])
sys/vfs/nfs/xdr_subs.h
52
#define fxdr_unsigned(t, v) ((t)ntohl((int32_t)(v)))
sys/vfs/nfs/xdr_subs.h
53
#define txdr_unsigned(v) (htonl((int32_t)(v)))
sys/vfs/ntfs/ntfs_inode.h
100
int32_t ntfid_gen; /* Generation number. */
sys/vfs/ufs/dinode.h
74
int32_t inumber; /* 4: Lfs: inode number. */
sys/vfs/ufs/dinode.h
86
int32_t di_blocks; /* 104: Blocks actually held. */
sys/vfs/ufs/dinode.h
87
int32_t di_gen; /* 108: Generation number. */
sys/vfs/ufs/dir.h
47
#define doff_t int32_t
sys/vfs/ufs/ffs_alloc.c
1239
int32_t *lp;
sys/vfs/ufs/ffs_alloc.c
1886
int32_t *sump;
sys/vfs/ufs/ffs_alloc.c
1887
int32_t *lp;
sys/vfs/ufs/ffs_extern.h
81
void ffs_fragacct(struct fs *, int, int32_t [], int);
sys/vfs/ufs/ffs_subr.c
163
ffs_fragacct(struct fs *fs, int fragmap, int32_t fraglist[], int cnt)
sys/vfs/ufs/ffs_vfsops.c
1301
int32_t *lp, tmp; /* XXX */
sys/vfs/ufs/ffs_vfsops.c
1303
lp = (int32_t *)&dfs->fs_qbmask; /* XXX */
sys/vfs/ufs/ffs_vfsops.c
455
int32_t *lp;
sys/vfs/ufs/ffs_vfsops.c
597
int32_t *lp;
sys/vfs/ufs/ffs_vfsops.c
683
size += fs->fs_ncg * sizeof(int32_t);
sys/vfs/ufs/fs.h
180
int32_t cs_ndir; /* number of directories */
sys/vfs/ufs/fs.h
181
int32_t cs_nbfree; /* number of free blocks */
sys/vfs/ufs/fs.h
182
int32_t cs_nifree; /* number of free inodes */
sys/vfs/ufs/fs.h
183
int32_t cs_nffree; /* number of free frags */
sys/vfs/ufs/fs.h
190
int32_t fs_firstfield; /* historic filesystem linked list, */
sys/vfs/ufs/fs.h
191
int32_t fs_unused_1; /* used for incore super blocks */
sys/vfs/ufs/fs.h
196
int32_t fs_cgoffset; /* cylinder group offset in cylinder */
sys/vfs/ufs/fs.h
197
int32_t fs_cgmask; /* used to calc mod fs_ntrak */
sys/vfs/ufs/fs.h
199
int32_t fs_size; /* number of blocks in fs */
sys/vfs/ufs/fs.h
200
int32_t fs_dsize; /* number of data blocks in fs */
sys/vfs/ufs/fs.h
201
int32_t fs_ncg; /* number of cylinder groups */
sys/vfs/ufs/fs.h
202
int32_t fs_bsize; /* size of basic blocks in fs */
sys/vfs/ufs/fs.h
203
int32_t fs_fsize; /* size of frag blocks in fs */
sys/vfs/ufs/fs.h
204
int32_t fs_frag; /* number of frags in a block in fs */
sys/vfs/ufs/fs.h
206
int32_t fs_minfree; /* minimum percentage of free blocks */
sys/vfs/ufs/fs.h
207
int32_t fs_rotdelay; /* num of ms for optimal next block */
sys/vfs/ufs/fs.h
208
int32_t fs_rps; /* disk revolutions per second */
sys/vfs/ufs/fs.h
210
int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */
sys/vfs/ufs/fs.h
211
int32_t fs_fmask; /* ``fragoff'' calc of frag offsets */
sys/vfs/ufs/fs.h
212
int32_t fs_bshift; /* ``lblkno'' calc of logical blkno */
sys/vfs/ufs/fs.h
213
int32_t fs_fshift; /* ``numfrags'' calc number of frags */
sys/vfs/ufs/fs.h
215
int32_t fs_maxcontig; /* max number of contiguous blks */
sys/vfs/ufs/fs.h
216
int32_t fs_maxbpg; /* max number of blks per cyl group */
sys/vfs/ufs/fs.h
218
int32_t fs_fragshift; /* block to frag shift */
sys/vfs/ufs/fs.h
219
int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */
sys/vfs/ufs/fs.h
220
int32_t fs_sbsize; /* actual size of super block */
sys/vfs/ufs/fs.h
221
int32_t fs_csmask; /* csum block offset (now unused) */
sys/vfs/ufs/fs.h
222
int32_t fs_csshift; /* csum block number (now unused) */
sys/vfs/ufs/fs.h
223
int32_t fs_nindir; /* value of NINDIR */
sys/vfs/ufs/fs.h
224
int32_t fs_inopb; /* value of INOPB */
sys/vfs/ufs/fs.h
225
int32_t fs_nspf; /* value of NSPF */
sys/vfs/ufs/fs.h
227
int32_t fs_optim; /* optimization preference, see below */
sys/vfs/ufs/fs.h
229
int32_t fs_npsect; /* # sectors/track including spares */
sys/vfs/ufs/fs.h
230
int32_t fs_interleave; /* hardware sector interleave */
sys/vfs/ufs/fs.h
231
int32_t fs_trackskew; /* sector 0 skew, per track */
sys/vfs/ufs/fs.h
233
int32_t fs_id[2]; /* unique filesystem id */
sys/vfs/ufs/fs.h
236
int32_t fs_cssize; /* size of cyl grp summary area */
sys/vfs/ufs/fs.h
237
int32_t fs_cgsize; /* cylinder group size */
sys/vfs/ufs/fs.h
239
int32_t fs_ntrak; /* tracks per cylinder */
sys/vfs/ufs/fs.h
240
int32_t fs_nsect; /* sectors per track */
sys/vfs/ufs/fs.h
241
int32_t fs_spc; /* sectors per cylinder */
sys/vfs/ufs/fs.h
243
int32_t fs_ncyl; /* cylinders in filesystem */
sys/vfs/ufs/fs.h
245
int32_t fs_cpg; /* cylinders per group */
sys/vfs/ufs/fs.h
246
int32_t fs_ipg; /* inodes per group */
sys/vfs/ufs/fs.h
247
int32_t fs_fpg; /* blocks per group * fs_frag */
sys/vfs/ufs/fs.h
258
int32_t fs_pad; /* due to alignment of fs_swuid */
sys/vfs/ufs/fs.h
260
int32_t fs_cgrotor; /* last cg searched */
sys/vfs/ufs/fs.h
264
int32_t *fs_maxcluster; /* max cluster in each cyl group */
sys/vfs/ufs/fs.h
265
int32_t fs_cpc; /* cyl per cycle in postbl */
sys/vfs/ufs/fs.h
267
int32_t fs_snapinum[FSMAXSNAP];/* RESERVED FROM 5.x */
sys/vfs/ufs/fs.h
268
int32_t fs_avgfilesize; /* expected average file size */
sys/vfs/ufs/fs.h
269
int32_t fs_avgfpdir; /* expected # of files per directory */
sys/vfs/ufs/fs.h
270
int32_t fs_sparecon[26]; /* reserved for future constants */
sys/vfs/ufs/fs.h
271
int32_t fs_pendingblocks; /* RESERVED FROM 5.x */
sys/vfs/ufs/fs.h
272
int32_t fs_pendinginodes; /* RESERVED FROM 5.x */
sys/vfs/ufs/fs.h
273
int32_t fs_contigsumsize; /* size of cluster summary array */
sys/vfs/ufs/fs.h
274
int32_t fs_maxsymlinklen; /* max length of an internal symlink */
sys/vfs/ufs/fs.h
275
int32_t fs_inodefmt; /* format of on-disk inodes */
sys/vfs/ufs/fs.h
279
int32_t fs_state; /* validate fs_clean field */
sys/vfs/ufs/fs.h
280
int32_t fs_postblformat; /* format of positional layout tables */
sys/vfs/ufs/fs.h
281
int32_t fs_nrpos; /* number of rotational positions */
sys/vfs/ufs/fs.h
282
int32_t fs_postbloff; /* (uint16) rotation block list head */
sys/vfs/ufs/fs.h
283
int32_t fs_rotbloff; /* (uint8) blocks for each rotation */
sys/vfs/ufs/fs.h
284
int32_t fs_magic; /* magic number */
sys/vfs/ufs/fs.h
334
/* base cg */ (sizeof(struct cg) + sizeof(int32_t) + \
sys/vfs/ufs/fs.h
335
/* blktot size */ (fs)->fs_cpg * sizeof(int32_t) + \
sys/vfs/ufs/fs.h
340
/* cluster sum */ (fs)->fs_contigsumsize * sizeof(int32_t) + \
sys/vfs/ufs/fs.h
353
int32_t cg_firstfield; /* historic cyl groups linked list */
sys/vfs/ufs/fs.h
354
int32_t cg_magic; /* magic number */
sys/vfs/ufs/fs.h
356
int32_t cg_cgx; /* we are the cgx'th cylinder group */
sys/vfs/ufs/fs.h
359
int32_t cg_ndblk; /* number of data blocks this cg */
sys/vfs/ufs/fs.h
361
int32_t cg_rotor; /* position of last used block */
sys/vfs/ufs/fs.h
362
int32_t cg_frotor; /* position of last used frag */
sys/vfs/ufs/fs.h
363
int32_t cg_irotor; /* position of last used inode */
sys/vfs/ufs/fs.h
364
int32_t cg_frsum[MAXFRAG]; /* counts of available frags */
sys/vfs/ufs/fs.h
365
int32_t cg_btotoff; /* (int32) block totals per cylinder */
sys/vfs/ufs/fs.h
366
int32_t cg_boff; /* (uint16) free block positions */
sys/vfs/ufs/fs.h
367
int32_t cg_iusedoff; /* (uint8) used inode map */
sys/vfs/ufs/fs.h
368
int32_t cg_freeoff; /* (uint8) free block map */
sys/vfs/ufs/fs.h
369
int32_t cg_nextfreeoff; /* (uint8) next available space */
sys/vfs/ufs/fs.h
370
int32_t cg_clustersumoff; /* (uint32) counts of avail clusters */
sys/vfs/ufs/fs.h
371
int32_t cg_clusteroff; /* (uint8) free cluster map */
sys/vfs/ufs/fs.h
372
int32_t cg_nclusterblks; /* number of clusters this cg */
sys/vfs/ufs/fs.h
373
int32_t cg_sparecon[13]; /* reserved for future use */
sys/vfs/ufs/fs.h
384
: ((int32_t *)((uint8_t *)(cgp) + (cgp)->cg_btotoff)))
sys/vfs/ufs/fs.h
403
((int32_t *)((uint8_t *)(cgp) + (cgp)->cg_clustersumoff))
sys/vfs/ufs/fs.h
410
int32_t cg_firstfield; /* historic linked list of cyl groups */
sys/vfs/ufs/fs.h
411
int32_t cg_unused_1; /* used for incore cyl groups */
sys/vfs/ufs/fs.h
413
int32_t cg_cgx; /* we are the cgx'th cylinder group */
sys/vfs/ufs/fs.h
416
int32_t cg_ndblk; /* number of data blocks this cg */
sys/vfs/ufs/fs.h
418
int32_t cg_rotor; /* position of last used block */
sys/vfs/ufs/fs.h
419
int32_t cg_frotor; /* position of last used frag */
sys/vfs/ufs/fs.h
420
int32_t cg_irotor; /* position of last used inode */
sys/vfs/ufs/fs.h
421
int32_t cg_frsum[8]; /* counts of available frags */
sys/vfs/ufs/fs.h
422
int32_t cg_btot[32]; /* block totals per cylinder */
sys/vfs/ufs/fs.h
425
int32_t cg_magic; /* magic number */
sys/vfs/ufs/inode.h
168
int32_t ufid_gen; /* Generation number. */
sys/vfs/ufs/inode.h
65
#define doff_t int32_t
sys/vfs/ufs/inode.h
93
int32_t i_count; /* Size of free slot in directory. */
sys/vm/vm_map.c
348
int32_t n;
tools/tools/usbtest/usbtest.c
62
int32_t
tools/tools/usbtest/usbtest.h
60
extern int32_t usb_ts_rand_noise(void);
usr.bin/dfregress/testcase.c
101
(int32_t)testcase->opts.timeout_in_secs);
usr.bin/dfregress/testcase.c
106
(int32_t)testcase->opts.rc);
usr.bin/dfregress/testcase.c
156
int32_t val;
usr.bin/dfregress/testcase.c
219
int32_t argc;
usr.bin/dfregress/testcase.c
280
int32_t rc;
usr.bin/dfregress/testcase.c
573
int32_t result = RESULT_NOTRUN;
usr.bin/dfregress/testcase.c
602
int32_t exitval;
usr.bin/dfregress/testcase.c
616
int32_t sig;
usr.bin/dfregress/testcase.c
73
(int32_t)testcase->argc);
usr.bin/dfregress/testcase.h
48
int32_t rc;
usr.bin/dsynth/monitor.c
42
int32_t maxworkers;
usr.bin/dsynth/monitor.c
43
int32_t maxjobs;
usr.bin/hexdump/display.c
58
int32_t s4;
usr.bin/localedef/collate.c
1023
add_weight(int32_t ref, int pass)
usr.bin/localedef/collate.c
1050
add_weights(int32_t *refs)
usr.bin/localedef/collate.c
1058
int32_t
usr.bin/localedef/collate.c
1059
get_weight(int32_t ref, int pass)
usr.bin/localedef/collate.c
1063
int32_t pri;
usr.bin/localedef/collate.c
1115
int32_t pri;
usr.bin/localedef/collate.c
138
int32_t pri;
usr.bin/localedef/collate.c
145
int32_t pri;
usr.bin/localedef/collate.c
158
int32_t ref;
usr.bin/localedef/collate.c
168
int32_t ref[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
181
int32_t ref[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
191
int32_t ref[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
202
int32_t key;
usr.bin/localedef/collate.c
203
int32_t ref[COLLATE_STR_LEN];
usr.bin/localedef/collate.c
216
static int32_t nweight[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
231
static int32_t ellipsis_weights[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
242
static int32_t order_weights[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
244
static int32_t subst_weights[COLLATE_STR_LEN];
usr.bin/localedef/collate.c
250
static int32_t pri_undefined[COLL_WEIGHTS_MAX];
usr.bin/localedef/collate.c
251
static int32_t pri_ignore;
usr.bin/localedef/collate.c
261
static int32_t
usr.bin/localedef/collate.c
283
get_pri(int32_t ref)
usr.bin/localedef/collate.c
293
set_pri(int32_t ref, int32_t v, res_t res)
usr.bin/localedef/collate.c
319
static int32_t
usr.bin/localedef/collate.c
320
resolve_pri(int32_t ref)
usr.bin/localedef/collate.c
323
static int32_t pass = 0;
usr.bin/localedef/collate.c
354
int32_t k1 = ((const weight_t *)n1)->pri;
usr.bin/localedef/collate.c
355
int32_t k2 = ((const weight_t *)n2)->pri;
usr.bin/localedef/collate.c
434
int32_t k1 = ((const subst_t *)n1)->key;
usr.bin/localedef/collate.c
435
int32_t k2 = ((const subst_t *)n2)->key;
usr.bin/localedef/collate.c
595
int32_t pri;
usr.bin/localedef/collate.c
596
int32_t ref;
usr.bin/localedef/collate.c
717
int32_t ref;
usr.bin/localedef/collate.c
859
add_order_pri(int32_t ref)
usr.bin/localedef/collate.c
975
add_subst_pri(int32_t ref)
usr.bin/localedef/ctype.c
79
int32_t ctype;
usr.bin/localedef/ctype.c
80
int32_t toupper;
usr.bin/localedef/ctype.c
81
int32_t tolower;
usr.bin/localedef/localedef.h
108
void add_weight(int32_t, int);
usr.bin/localedef/localedef.h
109
void add_weights(int32_t *);
usr.bin/localedef/localedef.h
122
int32_t get_weight(int32_t, int);
usr.bin/m4/expr.c
26
int32_t end_result;
usr.bin/m4/extern.h
46
extern int32_t end_result;
usr.bin/m4/manual_tokenizer.c
1807
int32_t
usr.bin/m4/manual_tokenizer.c
1821
int32_t
usr.bin/m4/manual_tokenizer.c
47
typedef int32_t flex_int32_t;
usr.bin/m4/manual_tokenizer.c
501
extern int32_t yylval;
usr.bin/m4/manual_tokenizer.c
503
int32_t number(void);
usr.bin/m4/manual_tokenizer.c
504
int32_t parse_radix(void);
usr.bin/m4/parser.y
30
#define YYSTYPE int32_t
usr.bin/sdpquery/search.c
569
int32_t type, value;
usr.bin/truss/syscalls.c
185
asprintf(&tmp, "%d", (int32_t)args[sc->offset]);
usr.bin/u4bhidctl/usbhid.c
220
hid_collection_type(int32_t type)
usr.sbin/cpucontrol/intel.c
92
int32_t revision;
usr.sbin/cpucontrol/intel.h
41
int32_t revision; /* Unique version number. */
usr.sbin/cpucontrol/via.c
89
int32_t revision;
usr.sbin/cpucontrol/via.h
41
int32_t revision; /* Unique version number. */
usr.sbin/fstyp/befs.c
44
int32_t magic1;
usr.sbin/makefs/ffs.c
345
int32_t spc, nspf, ncyl, fssize;
usr.sbin/makefs/ffs.c
382
ffs_opts->maxbpg = ffs_opts->bsize / sizeof(int32_t);
usr.sbin/makefs/ffs.h
125
/* base cg */ (sizeof(struct cg) + sizeof(int32_t) + \
usr.sbin/makefs/ffs.h
126
/* old btotoff */ (fs)->fs_cpg * sizeof(int32_t) + \
usr.sbin/makefs/ffs.h
131
/* cluster sum */ (fs)->fs_contigsumsize * sizeof(int32_t) + \
usr.sbin/makefs/ffs/ffs_alloc.c
156
ffs_blkpref_ufs1(struct inode *ip, makefs_daddr_t lbn, int indx, int32_t *bap)
usr.sbin/makefs/ffs/ffs_alloc.c
388
int32_t bno;
usr.sbin/makefs/ffs/ffs_alloc.c
441
int32_t fragno, cgbno;
usr.sbin/makefs/ffs/ffs_alloc.c
550
static int32_t
usr.sbin/makefs/ffs/ffs_alloc.c
553
int32_t bno;
usr.sbin/makefs/ffs/ffs_alloc.c
618
ffs_clusteracct(struct fs *fs, struct cg *cgp, int32_t blkno, int cnt)
usr.sbin/makefs/ffs/ffs_alloc.c
620
int32_t *sump;
usr.sbin/makefs/ffs/ffs_alloc.c
621
int32_t *lp;
usr.sbin/makefs/ffs/ffs_alloc.c
71
static int32_t ffs_mapsearch(struct fs *, struct cg *, makefs_daddr_t, int);
usr.sbin/makefs/ffs/ffs_balloc.c
202
ip->i_ffs1_db[lbn] = ufs_rw32((int32_t)newb, needswap);
usr.sbin/makefs/ffs/ffs_balloc.c
228
pref = ffs_blkpref_ufs1(ip, lbn, 0, (int32_t *)0);
usr.sbin/makefs/ffs/ffs_balloc.c
244
*allocib = ufs_rw32((int32_t)nb, needswap);
usr.sbin/makefs/ffs/ffs_balloc.c
258
bap = (int32_t *)bp->b_data;
usr.sbin/makefs/ffs/ffs_balloc.c
268
pref = ffs_blkpref_ufs1(ip, lbn, 0, (int32_t *)0);
usr.sbin/makefs/ffs/ffs_balloc.c
86
int32_t nb;
usr.sbin/makefs/ffs/ffs_balloc.c
91
int32_t *bap;
usr.sbin/makefs/ffs/ffs_balloc.c
93
int32_t *allocblk, allociblk[UFS_NIADDR + 1];
usr.sbin/makefs/ffs/ffs_balloc.c
94
int32_t *allocib;
usr.sbin/makefs/ffs/ffs_bswap.c
209
int32_t btotoff, boff, clustersumoff;
usr.sbin/makefs/ffs/ffs_extern.h
56
makefs_daddr_t ffs_blkpref_ufs1(struct inode *, makefs_daddr_t, int, int32_t *);
usr.sbin/makefs/ffs/ffs_extern.h
61
void ffs_clusteracct(struct fs *, struct cg *, int32_t, int);
usr.sbin/makefs/ffs/ffs_extern.h
76
void ffs_fragacct(struct fs *, int, int32_t[], int, int);
usr.sbin/makefs/ffs/ffs_extern.h
77
int ffs_isblock(struct fs *, u_char *, int32_t);
usr.sbin/makefs/ffs/ffs_extern.h
78
int ffs_isfreeblock(struct fs *, u_char *, int32_t);
usr.sbin/makefs/ffs/ffs_extern.h
79
void ffs_clrblock(struct fs *, u_char *, int32_t);
usr.sbin/makefs/ffs/ffs_extern.h
80
void ffs_setblock(struct fs *, u_char *, int32_t);
usr.sbin/makefs/ffs/ffs_subr.c
114
ffs_isfreeblock(struct fs *fs, u_char *cp, int32_t h)
usr.sbin/makefs/ffs/ffs_subr.c
136
ffs_clrblock(struct fs *fs, u_char *cp, int32_t h)
usr.sbin/makefs/ffs/ffs_subr.c
162
ffs_setblock(struct fs *fs, u_char *cp, int32_t h)
usr.sbin/makefs/ffs/ffs_subr.c
86
ffs_isblock(struct fs *fs, u_char *cp, int32_t h)
usr.sbin/makefs/ffs/mkfs.c
122
int32_t csfrags;
usr.sbin/makefs/ffs/mkfs.c
474
size += sblock.fs_ncg * sizeof(int32_t);
usr.sbin/makefs/ffs/mkfs.c
479
int32_t *lp;
usr.sbin/makefs/ffs/mkfs.c
663
int32_t blkno;
usr.sbin/makefs/ffs/mkfs.c
720
sblock.fs_old_cpg * sizeof(int32_t);
usr.sbin/makefs/ffs/mkfs.c
730
howmany(sblock.fs_fpg, CHAR_BIT) - sizeof(int32_t);
usr.sbin/makefs/ffs/mkfs.c
732
roundup(acg.cg_clustersumoff, sizeof(int32_t));
usr.sbin/makefs/ffs/mkfs.c
734
(sblock.fs_contigsumsize + 1) * sizeof(int32_t);
usr.sbin/makefs/ffs/mkfs.c
796
int32_t *sump = cg_clustersum_swap(&acg, 0);
usr.sbin/makefs/hammer2/hammer2_bulkfree.c
1262
if ((int32_t)live->avail < 0)
usr.sbin/makefs/hammer2/hammer2_bulkfree.c
926
if (bmap->linear < (int32_t)data_off + (int32_t)bytes)
usr.sbin/makefs/hammer2/hammer2_bulkfree.c
927
bmap->linear = (int32_t)data_off + (int32_t)bytes;
usr.sbin/makefs/hammer2/hammer2_bulkfree.c
928
} else if (bmap->linear >= (int32_t)data_off &&
usr.sbin/makefs/hammer2/hammer2_bulkfree.c
929
bmap->linear < (int32_t)data_off + (int32_t)bytes) {
usr.sbin/makefs/hammer2/hammer2_bulkfree.c
930
bmap->linear = (int32_t)data_off + (int32_t)bytes;
usr.sbin/makefs/hammer2/hammer2_lz4.c
128
typedef int32_t S32;
usr.sbin/makefs/makefs.h
307
((int32_t *)((uintptr_t)(cgp) + ufs_rw32((cgp)->cg_clustersumoff, ns)))
usr.sbin/mtree/pack_dev.c
113
#define major_8_8(x) ((int32_t)(((x) & 0x0000ff00) >> 8))
usr.sbin/mtree/pack_dev.c
114
#define minor_8_8(x) ((int32_t)(((x) & 0x000000ff) >> 0))
usr.sbin/mtree/pack_dev.c
135
#define major_12_20(x) ((int32_t)(((x) & 0xfff00000) >> 20))
usr.sbin/mtree/pack_dev.c
136
#define minor_12_20(x) ((int32_t)(((x) & 0x000fffff) >> 0))
usr.sbin/mtree/pack_dev.c
157
#define major_14_18(x) ((int32_t)(((x) & 0xfffc0000) >> 18))
usr.sbin/mtree/pack_dev.c
158
#define minor_14_18(x) ((int32_t)(((x) & 0x0003ffff) >> 0))
usr.sbin/mtree/pack_dev.c
179
#define major_8_24(x) ((int32_t)(((x) & 0xff000000) >> 24))
usr.sbin/mtree/pack_dev.c
180
#define minor_8_24(x) ((int32_t)(((x) & 0x00ffffff) >> 0))
usr.sbin/mtree/pack_dev.c
201
#define major_12_12_8(x) ((int32_t)(((x) & 0xfff00000) >> 20))
usr.sbin/mtree/pack_dev.c
202
#define unit_12_12_8(x) ((int32_t)(((x) & 0x000fff00) >> 8))
usr.sbin/mtree/pack_dev.c
203
#define subunit_12_12_8(x) ((int32_t)(((x) & 0x000000ff) >> 0))
usr.sbin/mtree/pack_dev.c
91
#define major_freebsd(x) ((int32_t)(((x) & 0x0000ff00) >> 8))
usr.sbin/mtree/pack_dev.c
92
#define minor_freebsd(x) ((int32_t)(((x) & 0xffff00ff) >> 0))
usr.sbin/mtree/pack_dev.h
40
#define major_netbsd(x) ((int32_t)((((x) & 0x000fff00) >> 8)))
usr.sbin/mtree/pack_dev.h
41
#define minor_netbsd(x) ((int32_t)((((x) & 0xfff00000) >> 12) | \
usr.sbin/ndp/ndp.c
119
static int32_t thiszone; /* time difference with gmt */
usr.sbin/ndp/ndp.c
165
static int32_t
usr.sbin/rtadvd/config.c
335
int32_t val;
usr.sbin/sdpd/bgd.c
39
static int32_t
usr.sbin/sdpd/bgd.c
54
static int32_t
usr.sbin/sdpd/bgd.c
66
static int32_t
usr.sbin/sdpd/dun.c
42
static int32_t
usr.sbin/sdpd/dun.c
57
static int32_t
usr.sbin/sdpd/dun.c
73
static int32_t
usr.sbin/sdpd/dun.c
85
static int32_t
usr.sbin/sdpd/dun.c
98
static int32_t
usr.sbin/sdpd/ftrn.c
42
static int32_t
usr.sbin/sdpd/ftrn.c
57
static int32_t
usr.sbin/sdpd/ftrn.c
73
static int32_t
usr.sbin/sdpd/ftrn.c
85
static int32_t
usr.sbin/sdpd/hf.c
103
static int32_t
usr.sbin/sdpd/hf.c
120
static int32_t
usr.sbin/sdpd/hf.c
46
static int32_t
usr.sbin/sdpd/hf.c
62
static int32_t
usr.sbin/sdpd/hf.c
75
static int32_t
usr.sbin/sdpd/hf.c
91
static int32_t
usr.sbin/sdpd/hset.c
103
static int32_t
usr.sbin/sdpd/hset.c
46
static int32_t
usr.sbin/sdpd/hset.c
62
static int32_t
usr.sbin/sdpd/hset.c
75
static int32_t
usr.sbin/sdpd/hset.c
91
static int32_t
usr.sbin/sdpd/irmc.c
42
static int32_t
usr.sbin/sdpd/irmc.c
57
static int32_t
usr.sbin/sdpd/irmc.c
73
static int32_t
usr.sbin/sdpd/irmc.c
85
static int32_t
usr.sbin/sdpd/irmc.c
98
static int32_t
usr.sbin/sdpd/irmc_command.c
42
static int32_t
usr.sbin/sdpd/irmc_command.c
57
static int32_t
usr.sbin/sdpd/irmc_command.c
73
static int32_t
usr.sbin/sdpd/irmc_command.c
85
static int32_t
usr.sbin/sdpd/lan.c
100
static int32_t
usr.sbin/sdpd/lan.c
117
static int32_t
usr.sbin/sdpd/lan.c
125
int32_t len;
usr.sbin/sdpd/lan.c
141
static int32_t
usr.sbin/sdpd/lan.c
44
static int32_t
usr.sbin/sdpd/lan.c
59
static int32_t
usr.sbin/sdpd/lan.c
75
static int32_t
usr.sbin/sdpd/lan.c
87
static int32_t
usr.sbin/sdpd/log.c
42
log_open(char const *prog, int32_t log2stderr)
usr.sbin/sdpd/log.h
38
void log_open (char const *prog, int32_t log2stderr);
usr.sbin/sdpd/main.c
156
static int32_t
usr.sbin/sdpd/main.c
219
sighandler(int32_t s)
usr.sbin/sdpd/main.c
57
static int32_t drop_root (char const *user, char const *group);
usr.sbin/sdpd/main.c
58
static void sighandler (int32_t s);
usr.sbin/sdpd/main.c
61
static int32_t done;
usr.sbin/sdpd/main.c
74
int32_t detach = 1, opt;
usr.sbin/sdpd/opush.c
42
static int32_t
usr.sbin/sdpd/opush.c
57
static int32_t
usr.sbin/sdpd/opush.c
73
static int32_t
usr.sbin/sdpd/opush.c
85
static int32_t
usr.sbin/sdpd/opush.c
98
static int32_t
usr.sbin/sdpd/profile.c
101
int32_t
usr.sbin/sdpd/profile.c
121
int32_t
usr.sbin/sdpd/profile.c
126
int32_t len = 3 * (datalen >>= 1);
usr.sbin/sdpd/profile.c
153
int32_t
usr.sbin/sdpd/profile.c
158
int32_t len = 8 * (datalen >>= 2);
usr.sbin/sdpd/profile.c
187
int32_t
usr.sbin/sdpd/profile.c
227
int32_t
usr.sbin/sdpd/profile.c
248
int32_t
usr.sbin/sdpd/profile.c
272
int32_t
usr.sbin/sdpd/profile.c
309
int32_t
usr.sbin/sdpd/profile.c
346
int32_t
usr.sbin/sdpd/profile.c
351
int32_t len = 2 * datalen;
usr.sbin/sdpd/profile.c
371
int32_t
usr.sbin/sdpd/profile.c
385
int32_t
usr.sbin/sdpd/profile.c
72
int32_t i;
usr.sbin/sdpd/profile.h
42
typedef int32_t (profile_attr_create_t)(
usr.sbin/sdpd/profile.h
47
typedef int32_t (profile_data_valid_t)(
usr.sbin/sdpd/provider.c
146
int32_t
usr.sbin/sdpd/provider.c
53
int32_t
usr.sbin/sdpd/provider.c
54
provider_register_sd(int32_t fd)
usr.sbin/sdpd/provider.c
92
provider_register(profile_p const profile, bdaddr_t const *bdaddr, int32_t fd,
usr.sbin/sdpd/provider.h
108
int32_t server_prepare_attr_list(provider_p const, uint8_t const *, uint8_t const *,
usr.sbin/sdpd/provider.h
78
int32_t fd; /* session descriptor */
usr.sbin/sdpd/provider.h
89
int32_t provider_register_sd (int32_t fd);
usr.sbin/sdpd/provider.h
92
int32_t fd,
usr.sbin/sdpd/provider.h
97
int32_t provider_update (provider_p provider,
usr.sbin/sdpd/sar.c
144
int32_t
usr.sbin/sdpd/sar.c
145
server_prepare_service_attribute_response(server_p srv, int32_t fd)
usr.sbin/sdpd/sar.c
155
int32_t type, rsp_limit, aidlen, cslen, cs;
usr.sbin/sdpd/sar.c
248
int32_t
usr.sbin/sdpd/sar.c
249
server_send_service_attribute_response(server_p srv, int32_t fd)
usr.sbin/sdpd/sar.c
258
int32_t size;
usr.sbin/sdpd/sar.c
56
static int32_t
usr.sbin/sdpd/sar.c
62
int32_t len;
usr.sbin/sdpd/sar.c
86
int32_t
usr.sbin/sdpd/sar.c
92
int32_t type, hi, lo, len;
usr.sbin/sdpd/scr.c
49
int32_t
usr.sbin/sdpd/scr.c
50
server_prepare_service_change_response(server_p srv, int32_t fd)
usr.sbin/sdpd/sd.c
115
static int32_t
usr.sbin/sdpd/sd.c
139
static int32_t
usr.sbin/sdpd/sd.c
166
static int32_t
usr.sbin/sdpd/sd.c
41
static int32_t
usr.sbin/sdpd/sd.c
56
static int32_t
usr.sbin/sdpd/sd.c
77
static int32_t
usr.sbin/sdpd/sd.c
89
static int32_t
usr.sbin/sdpd/server.c
100
int32_t
usr.sbin/sdpd/server.c
106
int32_t unsock, l2sock;
usr.sbin/sdpd/server.c
289
int32_t
usr.sbin/sdpd/server.c
293
int32_t n, fd;
usr.sbin/sdpd/server.c
333
server_accept_client(server_p srv, int32_t fd)
usr.sbin/sdpd/server.c
337
int32_t cfd;
usr.sbin/sdpd/server.c
422
static int32_t
usr.sbin/sdpd/server.c
423
server_process_request(server_p srv, int32_t fd)
usr.sbin/sdpd/server.c
429
int32_t len, error;
usr.sbin/sdpd/server.c
585
static int32_t
usr.sbin/sdpd/server.c
586
server_send_error_response(server_p srv, int32_t fd, uint16_t error)
usr.sbin/sdpd/server.c
588
int32_t size;
usr.sbin/sdpd/server.c
613
server_close_fd(server_p srv, int32_t fd)
usr.sbin/sdpd/server.c
86
static void server_accept_client (server_p srv, int32_t fd);
usr.sbin/sdpd/server.c
87
static int32_t server_process_request (server_p srv, int32_t fd);
usr.sbin/sdpd/server.c
88
static int32_t server_send_error_response (server_p srv, int32_t fd,
usr.sbin/sdpd/server.c
90
static void server_close_fd (server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
109
int32_t server_init(server_p srv, const char *control, char const *sgroup);
usr.sbin/sdpd/server.h
111
int32_t server_do(server_p srv);
usr.sbin/sdpd/server.h
115
int32_t server_prepare_service_search_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
116
int32_t server_send_service_search_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
118
int32_t server_prepare_service_attribute_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
119
int32_t server_send_service_attribute_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
121
int32_t server_prepare_service_search_attribute_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
125
int32_t server_prepare_service_register_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
126
int32_t server_send_service_register_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
128
int32_t server_prepare_service_unregister_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
132
int32_t server_prepare_service_change_response(server_p srv, int32_t fd);
usr.sbin/sdpd/server.h
95
int32_t maxfd; /* max. descriptor is the set */
usr.sbin/sdpd/sp.c
42
static int32_t
usr.sbin/sdpd/sp.c
57
static int32_t
usr.sbin/sdpd/sp.c
73
static int32_t
usr.sbin/sdpd/sp.c
85
static int32_t
usr.sbin/sdpd/srr.c
113
int32_t
usr.sbin/sdpd/srr.c
114
server_send_service_register_response(server_p srv, int32_t fd)
usr.sbin/sdpd/srr.c
118
int32_t size;
usr.sbin/sdpd/srr.c
52
int32_t
usr.sbin/sdpd/srr.c
53
server_prepare_service_register_response(server_p srv, int32_t fd)
usr.sbin/sdpd/srr.c
62
int32_t uuid;
usr.sbin/sdpd/ssar.c
49
int32_t
usr.sbin/sdpd/ssar.c
50
server_prepare_service_search_attribute_response(server_p srv, int32_t fd)
usr.sbin/sdpd/ssar.c
60
int32_t type, rsp_limit, ucount, aidlen, cslen, cs;
usr.sbin/sdpd/ssr.c
151
int32_t
usr.sbin/sdpd/ssr.c
152
server_prepare_service_search_response(server_p srv, int32_t fd)
usr.sbin/sdpd/ssr.c
160
int32_t ucount, rsp_limit, cslen, cs;
usr.sbin/sdpd/ssr.c
240
int32_t
usr.sbin/sdpd/ssr.c
241
server_send_service_search_response(server_p srv, int32_t fd)
usr.sbin/sdpd/ssr.c
250
int32_t size;
usr.sbin/sdpd/sur.c
49
int32_t
usr.sbin/sdpd/sur.c
50
server_prepare_service_unregister_response(server_p srv, int32_t fd)
usr.sbin/traceroute/traceroute.c
276
static int32_t sec_perturb;
usr.sbin/traceroute/traceroute.c
277
static int32_t usec_perturb;