Symbol: hi
crypto/heimdal/lib/krb5/changepw.c
517
krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/changepw.c
539
while (!done && (ret = krb5_krbhst_next(context, handle, &hi)) == 0) {
crypto/heimdal/lib/krb5/changepw.c
543
switch (hi->proto) {
crypto/heimdal/lib/krb5/changepw.c
558
ret = krb5_krbhst_get_addrinfo(context, hi, &ai);
crypto/heimdal/lib/krb5/changepw.c
597
hi->hostname);
crypto/heimdal/lib/krb5/changepw.c
632
hi->hostname);
crypto/heimdal/lib/krb5/init_creds_pw.c
1254
const krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/init_creds_pw.c
1305
hi,
crypto/heimdal/lib/krb5/krbhst.c
117
krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/krbhst.c
120
hi = calloc(1, sizeof(*hi) + len);
crypto/heimdal/lib/krb5/krbhst.c
121
if(hi == NULL) {
crypto/heimdal/lib/krb5/krbhst.c
129
(*res)[num_srv++] = hi;
crypto/heimdal/lib/krb5/krbhst.c
131
hi->proto = proto_num;
crypto/heimdal/lib/krb5/krbhst.c
133
hi->def_port = def_port;
crypto/heimdal/lib/krb5/krbhst.c
135
hi->port = port;
crypto/heimdal/lib/krb5/krbhst.c
137
hi->port = rr->u.srv->port;
crypto/heimdal/lib/krb5/krbhst.c
139
strlcpy(hi->hostname, rr->u.srv->target, len + 1);
crypto/heimdal/lib/krb5/krbhst.c
208
struct krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/krbhst.c
210
hi = calloc(1, sizeof(*hi) + strlen(spec));
crypto/heimdal/lib/krb5/krbhst.c
211
if(hi == NULL)
crypto/heimdal/lib/krb5/krbhst.c
214
hi->proto = krbhst_get_default_proto(kd);
crypto/heimdal/lib/krb5/krbhst.c
217
hi->proto = KRB5_KRBHST_HTTP;
crypto/heimdal/lib/krb5/krbhst.c
220
hi->proto = KRB5_KRBHST_HTTP;
crypto/heimdal/lib/krb5/krbhst.c
224
hi->proto = KRB5_KRBHST_TCP;
crypto/heimdal/lib/krb5/krbhst.c
233
memcpy(hi->hostname, &p[1], q - p - 1);
crypto/heimdal/lib/krb5/krbhst.c
234
hi->hostname[q - p - 1] = '\0';
crypto/heimdal/lib/krb5/krbhst.c
239
} else if(strsep_copy(&p, ":", hi->hostname, strlen(spec) + 1) < 0) {
crypto/heimdal/lib/krb5/krbhst.c
241
free(hi);
crypto/heimdal/lib/krb5/krbhst.c
245
hi->hostname[strcspn(hi->hostname, "/")] = '\0';
crypto/heimdal/lib/krb5/krbhst.c
246
strlwr(hi->hostname);
crypto/heimdal/lib/krb5/krbhst.c
248
hi->port = hi->def_port = def_port;
crypto/heimdal/lib/krb5/krbhst.c
251
hi->port = strtol(p, &end, 0);
crypto/heimdal/lib/krb5/krbhst.c
253
free(hi);
crypto/heimdal/lib/krb5/krbhst.c
258
hi->port = port;
crypto/heimdal/lib/krb5/krbhst.c
259
return hi;
crypto/heimdal/lib/krb5/krbhst.c
263
_krb5_free_krbhst_info(krb5_krbhst_info *hi)
crypto/heimdal/lib/krb5/krbhst.c
265
if (hi->ai != NULL)
crypto/heimdal/lib/krb5/krbhst.c
266
freeaddrinfo(hi->ai);
crypto/heimdal/lib/krb5/krbhst.c
267
free(hi);
crypto/heimdal/lib/krb5/krbhst.c
315
struct krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/krbhst.c
317
hi = parse_hostspec(context, kd, host, def_port, port);
crypto/heimdal/lib/krb5/krbhst.c
318
if(hi == NULL)
crypto/heimdal/lib/krb5/krbhst.c
321
append_host_hostinfo(kd, hi);
crypto/heimdal/lib/krb5/krbhst.c
430
struct krb5_krbhst_info *hi = *kd->index;
crypto/heimdal/lib/krb5/krbhst.c
431
if(hi != NULL) {
crypto/heimdal/lib/krb5/krbhst.c
432
*host = hi;
crypto/heimdal/lib/krb5/krbhst.c
530
struct krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/krbhst.c
533
hi = calloc(1, sizeof(*hi) + hostlen);
crypto/heimdal/lib/krb5/krbhst.c
534
if(hi == NULL) {
crypto/heimdal/lib/krb5/krbhst.c
539
hi->proto = proto;
crypto/heimdal/lib/krb5/krbhst.c
540
hi->port = hi->def_port = port;
crypto/heimdal/lib/krb5/krbhst.c
541
hi->ai = ai;
crypto/heimdal/lib/krb5/krbhst.c
542
memmove(hi->hostname, host, hostlen);
crypto/heimdal/lib/krb5/krbhst.c
543
hi->hostname[hostlen] = '\0';
crypto/heimdal/lib/krb5/krbhst.c
545
append_host_hostinfo(kd, hi);
crypto/heimdal/lib/krb5/krbhst.c
558
struct krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/krbhst.c
580
hi = calloc(1, sizeof(*hi) + hostlen);
crypto/heimdal/lib/krb5/krbhst.c
581
if(hi == NULL)
crypto/heimdal/lib/krb5/krbhst.c
584
hi->proto = krbhst_get_default_proto(kd);
crypto/heimdal/lib/krb5/krbhst.c
585
hi->port = hi->def_port = socket_get_port(addr);
crypto/heimdal/lib/krb5/krbhst.c
586
hi->ai = ai;
crypto/heimdal/lib/krb5/krbhst.c
587
memmove(hi->hostname, host, hostlen);
crypto/heimdal/lib/krb5/krbhst.c
588
hi->hostname[hostlen] = '\0';
crypto/heimdal/lib/krb5/krbhst.c
589
append_host_hostinfo(kd, hi);
crypto/heimdal/lib/krb5/pkinit.c
1080
const krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/pkinit.c
1148
if (hi) {
crypto/heimdal/lib/krb5/pkinit.c
1152
hi->hostname,
crypto/heimdal/lib/krb5/pkinit.c
1153
hi->ai->ai_addr, hi->ai->ai_addrlen);
crypto/heimdal/lib/krb5/pkinit.c
1171
const krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/pkinit.c
1264
ret = pk_verify_host(context, realm, hi, ctx, host);
crypto/heimdal/lib/krb5/pkinit.c
1408
const krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/pkinit.c
1446
ret = pk_verify_host(context, realm, hi, ctx, host);
crypto/heimdal/lib/krb5/pkinit.c
1648
const krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/pkinit.c
1739
ret = pk_rd_pa_reply_dh(context, &data, &oid, realm, ctx, etype, hi,
crypto/heimdal/lib/krb5/pkinit.c
1746
ctx, etype, hi, nonce, req_buffer, pa, key);
crypto/heimdal/lib/krb5/pkinit.c
1798
ctx, etype, hi, nonce, req_buffer, pa, key);
crypto/heimdal/lib/krb5/send_to_kdc.c
258
const krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/send_to_kdc.c
307
ret = asprintf(&prefix, "http://%s/", hi->hostname);
crypto/heimdal/lib/krb5/send_to_kdc.c
323
krb5_krbhst_info *hi,
crypto/heimdal/lib/krb5/send_to_kdc.c
344
ret = (*service->send_to_kdc)(context, ctx, hi,
crypto/heimdal/lib/krb5/send_to_kdc.c
379
krb5_krbhst_info *hi;
crypto/heimdal/lib/krb5/send_to_kdc.c
381
while (krb5_krbhst_next(context, handle, &hi) == 0) {
crypto/heimdal/lib/krb5/send_to_kdc.c
386
hi->hostname, _krb5_krbhst_get_realm(handle));
crypto/heimdal/lib/krb5/send_to_kdc.c
391
ret = (*s->func)(context, s->data, hi,
crypto/heimdal/lib/krb5/send_to_kdc.c
398
ret = send_via_plugin(context, hi, context->kdc_timeout,
crypto/heimdal/lib/krb5/send_to_kdc.c
405
if(hi->proto == KRB5_KRBHST_HTTP && context->http_proxy) {
crypto/heimdal/lib/krb5/send_to_kdc.c
406
if (send_via_proxy (context, hi, send_data, receive) == 0) {
crypto/heimdal/lib/krb5/send_to_kdc.c
413
ret = krb5_krbhst_get_addrinfo(context, hi, &ai);
crypto/heimdal/lib/krb5/send_to_kdc.c
426
switch (hi->proto) {
crypto/openssh/krl.c
108
if (a->hi >= b->lo && a->lo <= b->hi)
crypto/openssh/krl.c
1180
rs.lo = rs.hi = key->cert->serial;
crypto/openssh/krl.c
1184
key->cert->serial, ers->lo, ers->hi));
crypto/openssh/krl.c
1367
if (rs->lo == rs->hi) {
crypto/openssh/krl.c
1373
(unsigned long long)rs->hi);
crypto/openssh/krl.c
250
insert_serial_range(struct revoked_serial_tree *rt, u_int64_t lo, u_int64_t hi)
crypto/openssh/krl.c
254
KRL_DBG(("insert %llu:%llu", lo, hi));
crypto/openssh/krl.c
257
rs.hi = hi;
crypto/openssh/krl.c
273
KRL_DBG(("overlap found %llu:%llu", ers->lo, ers->hi));
crypto/openssh/krl.c
280
if (ers->hi < hi)
crypto/openssh/krl.c
281
ers->hi = hi;
crypto/openssh/krl.c
291
KRL_DBG(("pred %llu:%llu", crs->lo, crs->hi));
crypto/openssh/krl.c
292
if (ers->lo != 0 && crs->hi < ers->lo - 1)
crypto/openssh/krl.c
297
KRL_DBG(("pred extend %llu:%llu", ers->lo, ers->hi));
crypto/openssh/krl.c
304
KRL_DBG(("succ %llu:%llu", crs->lo, crs->hi));
crypto/openssh/krl.c
305
if (ers->hi != (u_int64_t)-1 && crs->lo > ers->hi + 1)
crypto/openssh/krl.c
308
if (crs->hi > ers->hi) {
crypto/openssh/krl.c
309
ers->hi = crs->hi;
crypto/openssh/krl.c
310
KRL_DBG(("succ extend %llu:%llu", ers->lo, ers->hi));
crypto/openssh/krl.c
315
KRL_DBG(("done, final %llu:%llu", ers->lo, ers->hi));
crypto/openssh/krl.c
328
const struct sshkey *ca_key, u_int64_t lo, u_int64_t hi)
crypto/openssh/krl.c
333
if (lo > hi || lo == 0)
crypto/openssh/krl.c
337
return insert_serial_range(&rc->revoked_serials, lo, hi);
crypto/openssh/krl.c
58
u_int64_t lo, hi;
crypto/openssh/krl.c
602
(long long unsigned)rs->lo, (long long unsigned)rs->hi,
crypto/openssh/krl.c
608
gap = nrs == NULL ? 0 : nrs->lo - rs->hi;
crypto/openssh/krl.c
609
contig = 1 + (rs->hi - rs->lo);
crypto/openssh/krl.c
672
(r = sshbuf_put_u64(sect, rs->hi)) != 0)
crypto/openssh/krl.c
690
last = rs->hi;
crypto/openssh/krl.h
53
const struct sshkey *ca_key, u_int64_t lo, u_int64_t hi);
crypto/openssh/regress/netcat.c
1105
int hi, lo, cp;
crypto/openssh/regress/netcat.c
1113
hi = strtonum(n, 1, PORT_MAX, &errstr);
crypto/openssh/regress/netcat.c
1120
if (lo > hi) {
crypto/openssh/regress/netcat.c
1121
cp = hi;
crypto/openssh/regress/netcat.c
1122
hi = lo;
crypto/openssh/regress/netcat.c
1127
for (cp = lo; cp <= hi; cp++) {
crypto/openssh/regress/netcat.c
1140
for (x = 0; x <= (hi - lo); x++) {
crypto/openssh/regress/netcat.c
1141
y = (arc4random() & 0xFFFF) % (hi - lo);
crypto/openssh/regress/netcat.c
1148
hi = strtonum(p, 1, PORT_MAX, &errstr);
crypto/openssh/ssh-pkcs11.c
1434
int hi, low;
crypto/openssh/ssh-pkcs11.c
1436
hi = h2i(hex[2 * i]);
crypto/openssh/ssh-pkcs11.c
1438
if (hi == -1 || lo == -1)
crypto/openssh/ssh-pkcs11.c
1440
(*dest)[i] = (hi << 4) | lo;
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
330
BN_ULONG lo, hi; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
331
BN_UMULT_LOHI(lo, hi, ta, tb); \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
333
hi += (c0 < lo) ? 1 : 0; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
334
c1 += hi; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
335
c2 += (c1 < hi) ? 1 : 0; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
341
BN_ULONG lo, hi, tt; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
342
BN_UMULT_LOHI(lo, hi, ta, tb); \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
344
tt = hi + ((c0 < lo) ? 1 : 0); \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
348
hi += (c0 < lo) ? 1 : 0; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
349
c1 += hi; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
350
c2 += (c1 < hi) ? 1 : 0; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
356
BN_ULONG lo, hi; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
357
BN_UMULT_LOHI(lo, hi, ta, ta); \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
359
hi += (c0 < lo) ? 1 : 0; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
360
c1 += hi; \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
361
c2 += (c1 < hi) ? 1 : 0; \
crypto/openssl/crypto/bn/bn_asm.c
449
BN_ULONG hi; \
crypto/openssl/crypto/bn/bn_asm.c
453
hi = (BN_ULONG)Hw(t); \
crypto/openssl/crypto/bn/bn_asm.c
454
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
455
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
460
BN_ULONG hi; \
crypto/openssl/crypto/bn/bn_asm.c
464
hi = (BN_ULONG)Hw(tt); \
crypto/openssl/crypto/bn/bn_asm.c
465
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
466
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
469
hi = (BN_ULONG)Hw(t); \
crypto/openssl/crypto/bn/bn_asm.c
470
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
471
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
476
BN_ULONG hi; \
crypto/openssl/crypto/bn/bn_asm.c
480
hi = (BN_ULONG)Hw(t); \
crypto/openssl/crypto/bn/bn_asm.c
481
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
482
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
496
BN_ULONG lo, hi; \
crypto/openssl/crypto/bn/bn_asm.c
497
BN_UMULT_LOHI(lo, hi, ta, tb); \
crypto/openssl/crypto/bn/bn_asm.c
499
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
500
c1 += hi; \
crypto/openssl/crypto/bn/bn_asm.c
501
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
507
BN_ULONG lo, hi, tt; \
crypto/openssl/crypto/bn/bn_asm.c
508
BN_UMULT_LOHI(lo, hi, ta, tb); \
crypto/openssl/crypto/bn/bn_asm.c
510
tt = hi + (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
514
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
515
c1 += hi; \
crypto/openssl/crypto/bn/bn_asm.c
516
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
522
BN_ULONG lo, hi; \
crypto/openssl/crypto/bn/bn_asm.c
523
BN_UMULT_LOHI(lo, hi, ta, ta); \
crypto/openssl/crypto/bn/bn_asm.c
525
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
526
c1 += hi; \
crypto/openssl/crypto/bn/bn_asm.c
527
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
542
BN_ULONG hi = BN_UMULT_HIGH(ta, tb); \
crypto/openssl/crypto/bn/bn_asm.c
544
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
545
c1 += hi; \
crypto/openssl/crypto/bn/bn_asm.c
546
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
553
BN_ULONG hi = BN_UMULT_HIGH(ta, tb); \
crypto/openssl/crypto/bn/bn_asm.c
555
tt = hi + (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
559
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
560
c1 += hi; \
crypto/openssl/crypto/bn/bn_asm.c
561
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
568
BN_ULONG hi = BN_UMULT_HIGH(ta, ta); \
crypto/openssl/crypto/bn/bn_asm.c
570
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
571
c1 += hi; \
crypto/openssl/crypto/bn/bn_asm.c
572
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
585
BN_ULONG lo = LBITS(a), hi = HBITS(a); \
crypto/openssl/crypto/bn/bn_asm.c
587
mul64(lo, hi, bl, bh); \
crypto/openssl/crypto/bn/bn_asm.c
589
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
590
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
591
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
597
BN_ULONG lo = LBITS(a), hi = HBITS(a); \
crypto/openssl/crypto/bn/bn_asm.c
599
mul64(lo, hi, bl, bh); \
crypto/openssl/crypto/bn/bn_asm.c
600
tt = hi; \
crypto/openssl/crypto/bn/bn_asm.c
606
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
607
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
608
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_asm.c
613
BN_ULONG lo, hi; \
crypto/openssl/crypto/bn/bn_asm.c
614
sqr64(lo, hi, (a)[i]); \
crypto/openssl/crypto/bn/bn_asm.c
616
hi += (c0 < lo); \
crypto/openssl/crypto/bn/bn_asm.c
617
c1 = (c1 + hi) & BN_MASK2; \
crypto/openssl/crypto/bn/bn_asm.c
618
c2 += (c1 < hi); \
crypto/openssl/crypto/bn/bn_dh.c
17
#define BN_DEF(lo, hi) (BN_ULONG)hi << 32 | lo
crypto/openssl/crypto/bn/bn_dh.c
19
#define BN_DEF(lo, hi) lo, hi
crypto/openssl/crypto/bn/bn_prime.c
33
#define BN_DEF(lo, hi) (BN_ULONG)hi << 32 | lo
crypto/openssl/crypto/bn/bn_prime.c
35
#define BN_DEF(lo, hi) lo, hi
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
32
#define BN_DEF(lo, hi) (BN_ULONG)hi << 32 | lo
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
34
#define BN_DEF(lo, hi) lo, hi
crypto/openssl/crypto/ec/ecp_nistz256.c
35
#define TOBN(hi, lo) lo, hi
crypto/openssl/crypto/ec/ecp_nistz256.c
37
#define TOBN(hi, lo) ((BN_ULONG)hi << 32 | lo)
crypto/openssl/crypto/modes/gcm128.c
110
Hi[j].hi = V.hi ^ Htable[j].hi;
crypto/openssl/crypto/modes/gcm128.c
122
Htable[3].hi = V.hi ^ Htable[2].hi, Htable[3].lo = V.lo ^ Htable[2].lo;
crypto/openssl/crypto/modes/gcm128.c
124
Htable[5].hi = V.hi ^ Htable[1].hi, Htable[5].lo = V.lo ^ Htable[1].lo;
crypto/openssl/crypto/modes/gcm128.c
125
Htable[6].hi = V.hi ^ Htable[2].hi, Htable[6].lo = V.lo ^ Htable[2].lo;
crypto/openssl/crypto/modes/gcm128.c
126
Htable[7].hi = V.hi ^ Htable[3].hi, Htable[7].lo = V.lo ^ Htable[3].lo;
crypto/openssl/crypto/modes/gcm128.c
128
Htable[9].hi = V.hi ^ Htable[1].hi, Htable[9].lo = V.lo ^ Htable[1].lo;
crypto/openssl/crypto/modes/gcm128.c
129
Htable[10].hi = V.hi ^ Htable[2].hi, Htable[10].lo = V.lo ^ Htable[2].lo;
crypto/openssl/crypto/modes/gcm128.c
130
Htable[11].hi = V.hi ^ Htable[3].hi, Htable[11].lo = V.lo ^ Htable[3].lo;
crypto/openssl/crypto/modes/gcm128.c
131
Htable[12].hi = V.hi ^ Htable[4].hi, Htable[12].lo = V.lo ^ Htable[4].lo;
crypto/openssl/crypto/modes/gcm128.c
132
Htable[13].hi = V.hi ^ Htable[5].hi, Htable[13].lo = V.lo ^ Htable[5].lo;
crypto/openssl/crypto/modes/gcm128.c
133
Htable[14].hi = V.hi ^ Htable[6].hi, Htable[14].lo = V.lo ^ Htable[6].lo;
crypto/openssl/crypto/modes/gcm128.c
134
Htable[15].hi = V.hi ^ Htable[7].hi, Htable[15].lo = V.lo ^ Htable[7].lo;
crypto/openssl/crypto/modes/gcm128.c
147
Htable[j].hi = V.lo;
crypto/openssl/crypto/modes/gcm128.c
148
Htable[j].lo = V.hi;
crypto/openssl/crypto/modes/gcm128.c
153
Htable[j].hi = V.lo << 32 | V.lo >> 32;
crypto/openssl/crypto/modes/gcm128.c
154
Htable[j].lo = V.hi << 32 | V.hi >> 32;
crypto/openssl/crypto/modes/gcm128.c
1587
bitlen.hi = alen;
crypto/openssl/crypto/modes/gcm128.c
179
Z.hi = Htable[nlo].hi;
crypto/openssl/crypto/modes/gcm128.c
184
Z.lo = (Z.hi << 60) | (Z.lo >> 4);
crypto/openssl/crypto/modes/gcm128.c
185
Z.hi = (Z.hi >> 4);
crypto/openssl/crypto/modes/gcm128.c
187
Z.hi ^= rem_4bit[rem];
crypto/openssl/crypto/modes/gcm128.c
189
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
191
Z.hi ^= Htable[nhi].hi;
crypto/openssl/crypto/modes/gcm128.c
202
Z.lo = (Z.hi << 60) | (Z.lo >> 4);
crypto/openssl/crypto/modes/gcm128.c
203
Z.hi = (Z.hi >> 4);
crypto/openssl/crypto/modes/gcm128.c
205
Z.hi ^= rem_4bit[rem];
crypto/openssl/crypto/modes/gcm128.c
207
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
209
Z.hi ^= Htable[nlo].hi;
crypto/openssl/crypto/modes/gcm128.c
215
Xi[0] = BSWAP8(Z.hi);
crypto/openssl/crypto/modes/gcm128.c
220
v = (u32)(Z.hi >> 32);
crypto/openssl/crypto/modes/gcm128.c
222
v = (u32)(Z.hi);
crypto/openssl/crypto/modes/gcm128.c
230
Xi[0] = Z.hi;
crypto/openssl/crypto/modes/gcm128.c
261
Z.hi = Htable[nlo].hi;
crypto/openssl/crypto/modes/gcm128.c
266
Z.lo = (Z.hi << 60) | (Z.lo >> 4);
crypto/openssl/crypto/modes/gcm128.c
267
Z.hi = (Z.hi >> 4);
crypto/openssl/crypto/modes/gcm128.c
269
Z.hi ^= rem_4bit[rem];
crypto/openssl/crypto/modes/gcm128.c
271
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
273
Z.hi ^= Htable[nhi].hi;
crypto/openssl/crypto/modes/gcm128.c
285
Z.lo = (Z.hi << 60) | (Z.lo >> 4);
crypto/openssl/crypto/modes/gcm128.c
286
Z.hi = (Z.hi >> 4);
crypto/openssl/crypto/modes/gcm128.c
288
Z.hi ^= rem_4bit[rem];
crypto/openssl/crypto/modes/gcm128.c
290
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
292
Z.hi ^= Htable[nlo].hi;
crypto/openssl/crypto/modes/gcm128.c
298
Xi[0] = BSWAP8(Z.hi);
crypto/openssl/crypto/modes/gcm128.c
303
v = (u32)(Z.hi >> 32);
crypto/openssl/crypto/modes/gcm128.c
305
v = (u32)(Z.hi);
crypto/openssl/crypto/modes/gcm128.c
313
Xi[0] = Z.hi;
crypto/openssl/crypto/modes/gcm128.c
41
V.lo = (V.hi << 63) | (V.lo >> 1); \
crypto/openssl/crypto/modes/gcm128.c
42
V.hi = (V.hi >> 1) ^ T; \
crypto/openssl/crypto/modes/gcm128.c
45
V.lo = (V.hi << 63) | (V.lo >> 1); \
crypto/openssl/crypto/modes/gcm128.c
46
V.hi = (V.hi >> 1) ^ ((u64)T << 32); \
crypto/openssl/crypto/modes/gcm128.c
617
u64 hi, lo;
crypto/openssl/crypto/modes/gcm128.c
618
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/gcm128.c
620
ctx->H.u[0] = hi;
crypto/openssl/crypto/modes/gcm128.c
95
Htable[0].hi = 0;
crypto/openssl/crypto/modes/gcm128.c
97
V.hi = H[0];
crypto/openssl/crypto/modes/xts128gb.c
131
u64 hi, lo;
crypto/openssl/crypto/modes/xts128gb.c
133
hi = BSWAP8(tweak.u[0]);
crypto/openssl/crypto/modes/xts128gb.c
138
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
142
tweak1.u[0] = (lo >> 1) | (hi << 63);
crypto/openssl/crypto/modes/xts128gb.c
143
tweak1.u[1] = hi >> 1;
crypto/openssl/crypto/modes/xts128gb.c
147
hi = BSWAP8(tweak1.u[0]);
crypto/openssl/crypto/modes/xts128gb.c
152
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
156
tweak1.u[1] = hi;
crypto/openssl/crypto/modes/xts128gb.c
73
u64 hi, lo;
crypto/openssl/crypto/modes/xts128gb.c
75
hi = BSWAP8(tweak.u[0]);
crypto/openssl/crypto/modes/xts128gb.c
80
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
84
tweak.u[0] = (lo >> 1) | (hi << 63);
crypto/openssl/crypto/modes/xts128gb.c
85
tweak.u[1] = hi >> 1;
crypto/openssl/crypto/modes/xts128gb.c
89
hi = BSWAP8(tweak.u[0]);
crypto/openssl/crypto/modes/xts128gb.c
94
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
98
tweak.u[1] = hi;
crypto/openssl/crypto/pkcs12/p12_utl.c
126
unsigned int hi, lo;
crypto/openssl/crypto/pkcs12/p12_utl.c
129
hi = 0xD800 + (utf32chr >> 10);
crypto/openssl/crypto/pkcs12/p12_utl.c
131
*unitmp++ = (unsigned char)(hi >> 8);
crypto/openssl/crypto/pkcs12/p12_utl.c
132
*unitmp++ = (unsigned char)(hi);
crypto/openssl/crypto/sha/keccak1600.c
1017
hi &= 0xaaaaaaaa;
crypto/openssl/crypto/sha/keccak1600.c
1018
hi |= hi << 1;
crypto/openssl/crypto/sha/keccak1600.c
1019
hi &= 0xcccccccc;
crypto/openssl/crypto/sha/keccak1600.c
1020
hi |= hi << 2;
crypto/openssl/crypto/sha/keccak1600.c
1021
hi &= 0xf0f0f0f0;
crypto/openssl/crypto/sha/keccak1600.c
1022
hi |= hi << 4;
crypto/openssl/crypto/sha/keccak1600.c
1023
hi &= 0xff00ff00;
crypto/openssl/crypto/sha/keccak1600.c
1024
hi |= hi << 8;
crypto/openssl/crypto/sha/keccak1600.c
1025
hi &= 0xffff0000;
crypto/openssl/crypto/sha/keccak1600.c
1027
Ai = ((uint64_t)(hi | lo) << 32) | (t1 | t0);
crypto/openssl/crypto/sha/keccak1600.c
1036
uint32_t hi = (uint32_t)(Ai >> 32), lo = (uint32_t)Ai;
crypto/openssl/crypto/sha/keccak1600.c
1049
t1 = hi << 16;
crypto/openssl/crypto/sha/keccak1600.c
1069
hi &= 0xffff0000;
crypto/openssl/crypto/sha/keccak1600.c
1070
hi |= hi >> 8;
crypto/openssl/crypto/sha/keccak1600.c
1071
hi &= 0xff00ff00;
crypto/openssl/crypto/sha/keccak1600.c
1072
hi |= hi >> 4;
crypto/openssl/crypto/sha/keccak1600.c
1073
hi &= 0xf0f0f0f0;
crypto/openssl/crypto/sha/keccak1600.c
1074
hi |= hi >> 2;
crypto/openssl/crypto/sha/keccak1600.c
1075
hi &= 0xcccccccc;
crypto/openssl/crypto/sha/keccak1600.c
1076
hi |= hi >> 1;
crypto/openssl/crypto/sha/keccak1600.c
1077
hi &= 0xaaaaaaaa;
crypto/openssl/crypto/sha/keccak1600.c
1079
Ai = ((uint64_t)(hi | lo) << 32) | (t1 | t0);
crypto/openssl/crypto/sha/keccak1600.c
57
uint32_t hi = (uint32_t)(val >> 32), lo = (uint32_t)val;
crypto/openssl/crypto/sha/keccak1600.c
60
uint32_t tmp = hi;
crypto/openssl/crypto/sha/keccak1600.c
63
hi = ROL32(lo, offset);
crypto/openssl/crypto/sha/keccak1600.c
68
hi = ROL32(hi, offset);
crypto/openssl/crypto/sha/keccak1600.c
71
return ((uint64_t)hi << 32) | lo;
crypto/openssl/crypto/sha/keccak1600.c
984
uint32_t hi = (uint32_t)(Ai >> 32), lo = (uint32_t)Ai;
crypto/openssl/crypto/sha/keccak1600.c
997
t1 = hi & 0x55555555;
crypto/openssl/crypto/sha/sha512.c
402
unsigned int hi=p[0],lo=p[1]; \
crypto/openssl/crypto/sha/sha512.c
406
: "=a"(lo),"=d"(hi) \
crypto/openssl/crypto/sha/sha512.c
407
: "0"(lo),"1"(hi) : "cc"); \
crypto/openssl/crypto/sha/sha512.c
408
((SHA_LONG64)hi)<<32|lo; })
crypto/openssl/crypto/sha/sha512.c
411
unsigned int hi=p[0],lo=p[1]; \
crypto/openssl/crypto/sha/sha512.c
413
: "=r"(lo),"=r"(hi) \
crypto/openssl/crypto/sha/sha512.c
414
: "0"(lo),"1"(hi)); \
crypto/openssl/crypto/sha/sha512.c
415
((SHA_LONG64)hi)<<32|lo; })
crypto/openssl/include/crypto/modes.h
102
u64 hi, lo;
crypto/openssl/include/crypto/sparc_arch.h
115
sethi %hi(SYM), %o7; \
crypto/openssl/include/crypto/sparc_arch.h
65
sethi %hi(_GLOBAL_OFFSET_TABLE_-4), reg; \
crypto/openssl/include/crypto/sparc_arch.h
73
sethi %hi(_GLOBAL_OFFSET_TABLE_-4), reg; \
crypto/openssl/test/quic_txp_test.c
302
#define OP_EXPECT_DGRAM_LEN(lo, hi) \
crypto/openssl/test/quic_txp_test.c
303
{ OPK_EXPECT_DGRAM_LEN, (lo), (hi) },
crypto/openssl/test/tls13encryptiontest.c
198
int hi, lo;
crypto/openssl/test/tls13encryptiontest.c
200
hi = OPENSSL_hexchar2int(str[outer][inner]);
crypto/openssl/test/tls13encryptiontest.c
203
if (hi < 0 || lo < 0) {
crypto/openssl/test/tls13encryptiontest.c
207
outbuf[curr++] = (hi << 4) | lo;
lib/libc/rpc/svc_auth_des.c
410
u_long hi;
lib/libc/rpc/svc_auth_des.c
412
hi = key->key.high;
lib/libc/rpc/svc_auth_des.c
414
if (cp->key.key.high == hi &&
lib/libc/stdlib/rand.c
103
long hi, lo, x;
lib/libc/stdlib/rand.c
107
hi = x / 127773;
lib/libc/stdlib/rand.c
109
x = 16807 * lo - 2836 * hi;
lib/libc/stdlib/random.c
183
int32_t hi, lo, x;
lib/libc/stdlib/random.c
187
hi = x / 127773;
lib/libc/stdlib/random.c
189
x = 16807 * lo - 2836 * hi;
lib/libiconv_modules/UES/citrus_ues.c
162
surrogate_to_ucs(wchar_t hi, wchar_t lo)
lib/libiconv_modules/UES/citrus_ues.c
165
hi -= 0xD800;
lib/libiconv_modules/UES/citrus_ues.c
167
return ((hi << 10 | lo) + 0x10000);
lib/libiconv_modules/UES/citrus_ues.c
171
ucs_to_surrogate(wchar_t wc, wchar_t * __restrict hi, wchar_t * __restrict lo)
lib/libiconv_modules/UES/citrus_ues.c
175
*hi = (wc >> 10) + 0xD800;
lib/libiconv_modules/UES/citrus_ues.c
194
wchar_t hi, wc;
lib/libiconv_modules/UES/citrus_ues.c
203
hi = (wchar_t)0;
lib/libiconv_modules/UES/citrus_ues.c
258
if (hi != (wchar_t)0)
lib/libiconv_modules/UES/citrus_ues.c
262
hi = wc;
lib/libiconv_modules/UES/citrus_ues.c
280
wc = surrogate_to_ucs(hi, wc);
lib/libiconv_modules/UES/citrus_ues.c
303
wchar_t hi, lo;
lib/libiconv_modules/UES/citrus_ues.c
319
ucs_to_surrogate(wc, &hi, &lo);
lib/libiconv_modules/UES/citrus_ues.c
320
psenc->chlen += to_str(&psenc->ch[0], hi, UCS2_BIT);
lib/libiconv_modules/UTF7/citrus_utf7.c
247
uint16_t hi, lo;
lib/libiconv_modules/UTF7/citrus_utf7.c
256
err = _citrus_UTF7_mbtoutf16(ei, &hi, s, n, psenc, &nr);
lib/libiconv_modules/UTF7/citrus_utf7.c
265
if (hi < HISRG_MIN || hi > HISRG_MAX) {
lib/libiconv_modules/UTF7/citrus_utf7.c
266
u32 = (uint32_t)hi;
lib/libiconv_modules/UTF7/citrus_utf7.c
281
hi -= HISRG_MIN;
lib/libiconv_modules/UTF7/citrus_utf7.c
283
u32 = (hi << 10 | lo) + SRG_BASE;
lib/libpfctl/libpfctl.c
2311
uint64_t lim, hi, lo;
lib/libpfctl/libpfctl.c
2321
hi = lim * s->highwater / 100;
lib/libpfctl/libpfctl.c
2324
if (lo == hi)
lib/libpfctl/libpfctl.c
2325
hi++;
lib/libpfctl/libpfctl.c
2331
nvlist_add_number(nvl, "highwater", hi);
lib/libpmc/libpmc.c
495
__K8MASK(memory-controller-hi-pri-bypass, 0),
lib/libsdp/sdp.h
196
#define SDP_ATTR_RANGE(lo, hi) \
lib/libsdp/sdp.h
197
(uint32_t)(((uint16_t)(lo) << 16) | ((uint16_t)(hi)))
lib/libsdp/search.c
123
hi = (uint16_t) (*ap);
lib/libsdp/search.c
125
if (lo != hi) {
lib/libsdp/search.c
61
uint16_t lo, hi;
lib/libsdp/search.c
80
hi = (uint16_t) (ap[t]);
lib/libsdp/search.c
82
if (lo > hi) {
lib/libsdp/search.c
87
if (lo != hi)
lib/msun/bsdsrc/b_exp.c
104
hi = x - k * ln2hi; /* Exact. */
lib/msun/bsdsrc/b_exp.c
106
x = hi - lo;
lib/msun/bsdsrc/b_exp.c
114
return (ldexp(1 + (hi - (lo - c)), k));
lib/msun/bsdsrc/b_exp.c
88
double hi, lo, z;
lib/msun/ld128/k_cospil.h
34
long double hi, lo;
lib/msun/ld128/k_cospil.h
36
hi = (double)x;
lib/msun/ld128/k_cospil.h
37
lo = x - hi;
lib/msun/ld128/k_cospil.h
38
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld128/k_cospil.h
39
hi *= pi_hi;
lib/msun/ld128/k_cospil.h
40
_2sumF(hi, lo);
lib/msun/ld128/k_cospil.h
41
return (__kernel_cosl(hi, lo));
lib/msun/ld128/k_expl.h
257
t = tbl[n2].lo + tbl[n2].hi;
lib/msun/ld128/k_expl.h
258
*hip = tbl[n2].hi;
lib/msun/ld128/k_expl.h
284
long double hi, lo, twopkm2;
lib/msun/ld128/k_expl.h
288
__k_expl(x, &hi, &lo, &k);
lib/msun/ld128/k_expl.h
290
return (lo + hi) * 2 * twopkm2;
lib/msun/ld128/k_expl.h
300
long double c, exp_x, hi, lo, s;
lib/msun/ld128/k_expl.h
306
__k_expl(x, &hi, &lo, &k);
lib/msun/ld128/k_expl.h
308
exp_x = (lo + hi) * 0x1p16382L;
lib/msun/ld128/k_expl.h
98
long double hi;
lib/msun/ld128/k_sinpil.h
34
long double hi, lo;
lib/msun/ld128/k_sinpil.h
36
hi = (double)x;
lib/msun/ld128/k_sinpil.h
37
lo = x - hi;
lib/msun/ld128/k_sinpil.h
38
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld128/k_sinpil.h
39
hi *= pi_hi;
lib/msun/ld128/k_sinpil.h
40
_2sumF(hi, lo);
lib/msun/ld128/k_sinpil.h
41
return (__kernel_sinl(hi, lo, 1));
lib/msun/ld128/s_expl.c
288
t = tbl[n2].lo + tbl[n2].hi;
lib/msun/ld128/s_expl.c
291
t = SUM2P(tbl[n2].hi - 1, tbl[n2].lo * (r1 + 1) + t * q +
lib/msun/ld128/s_expl.c
292
tbl[n2].hi * r1);
lib/msun/ld128/s_expl.c
296
t = SUM2P(tbl[n2].hi - 2, tbl[n2].lo * (r1 + 1) + t * q +
lib/msun/ld128/s_expl.c
297
tbl[n2].hi * r1);
lib/msun/ld128/s_expl.c
301
t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1));
lib/msun/ld128/s_expl.c
305
t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1));
lib/msun/ld128/s_expl.c
315
t = SUM2P(tbl[n2].hi, tbl[n2].lo - twomk + t * (q + r1));
lib/msun/ld128/s_expl.c
317
t = SUM2P(tbl[n2].hi - twomk, tbl[n2].lo + t * (q + r1));
lib/msun/ld128/s_expl.c
61
long double hi, lo, t, twopk;
lib/msun/ld128/s_expl.c
86
__k_expl(x, &hi, &lo, &k);
lib/msun/ld128/s_expl.c
87
t = SUM2P(hi, lo);
lib/msun/ld128/s_logl.c
424
(rp)->hi = (v); \
lib/msun/ld128/s_logl.c
430
(rp)->hi = (h); \
lib/msun/ld128/s_logl.c
437
long double hi;
lib/msun/ld128/s_logl.c
703
long double hi, lo;
lib/msun/ld128/s_logl.c
708
RETURNI(r.hi);
lib/msun/ld128/s_logl.c
709
_2sumF(r.hi, r.lo);
lib/msun/ld128/s_logl.c
710
hi = (float)r.hi;
lib/msun/ld128/s_logl.c
711
lo = r.lo + (r.hi - hi);
lib/msun/ld128/s_logl.c
712
RETURNI(invln10_hi * hi + (invln10_lo_plus_hi * lo + invln10_lo * hi));
lib/msun/ld128/s_logl.c
719
long double hi, lo;
lib/msun/ld128/s_logl.c
724
RETURNI(r.hi);
lib/msun/ld128/s_logl.c
725
_2sumF(r.hi, r.lo);
lib/msun/ld128/s_logl.c
726
hi = (float)r.hi;
lib/msun/ld128/s_logl.c
727
lo = r.lo + (r.hi - hi);
lib/msun/ld128/s_logl.c
728
RETURNI(invln2_hi * hi + (invln2_lo_plus_hi * lo + invln2_lo * hi));
lib/msun/ld128/s_sinpil.c
50
long double ai, ar, ax, hi, lo, s, xhi, xlo;
lib/msun/ld128/s_sinpil.c
59
hi = (double)x;
lib/msun/ld128/s_sinpil.c
60
hi *= 0x1p113L;
lib/msun/ld128/s_sinpil.c
61
lo = x * 0x1p113L - hi;
lib/msun/ld128/s_sinpil.c
63
pi_hi * hi;
lib/msun/ld128/s_tanpil.c
45
long double hi, lo, t;
lib/msun/ld128/s_tanpil.c
48
hi = (double)x;
lib/msun/ld128/s_tanpil.c
49
lo = x - hi;
lib/msun/ld128/s_tanpil.c
50
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld128/s_tanpil.c
51
hi *= pi_hi;
lib/msun/ld128/s_tanpil.c
52
_2sumF(hi, lo);
lib/msun/ld128/s_tanpil.c
53
t = __kernel_tanl(hi, lo, -1);
lib/msun/ld128/s_tanpil.c
56
hi = (double)x;
lib/msun/ld128/s_tanpil.c
57
lo = x - hi;
lib/msun/ld128/s_tanpil.c
58
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld128/s_tanpil.c
59
hi *= pi_hi;
lib/msun/ld128/s_tanpil.c
60
_2sumF(hi, lo);
lib/msun/ld128/s_tanpil.c
61
t = - __kernel_tanl(hi, lo, 1);
lib/msun/ld128/s_tanpil.c
73
long double ai, ar, ax, hi, lo, t;
lib/msun/ld128/s_tanpil.c
83
hi = (double)x;
lib/msun/ld128/s_tanpil.c
84
hi *= 0x1p113L;
lib/msun/ld128/s_tanpil.c
85
lo = x * 0x1p113L - hi;
lib/msun/ld128/s_tanpil.c
87
pi_hi * hi;
lib/msun/ld80/b_expl.c
105
return (ldexpl(1 + (hi - (lo - c)), k));
lib/msun/ld80/b_expl.c
79
long double hi, lo, z;
lib/msun/ld80/b_expl.c
95
hi = x - k * ln2hi; /* Exact. */
lib/msun/ld80/b_expl.c
97
x = hi - lo;
lib/msun/ld80/k_cospil.h
34
long double hi, lo;
lib/msun/ld80/k_cospil.h
36
hi = (float)x;
lib/msun/ld80/k_cospil.h
37
lo = x - hi;
lib/msun/ld80/k_cospil.h
38
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld80/k_cospil.h
39
hi *= pi_hi;
lib/msun/ld80/k_cospil.h
40
_2sumF(hi, lo);
lib/msun/ld80/k_cospil.h
41
return (__kernel_cosl(hi, lo));
lib/msun/ld80/k_expl.h
241
t = (long double)tbl[n2].lo + tbl[n2].hi;
lib/msun/ld80/k_expl.h
242
*hip = tbl[n2].hi;
lib/msun/ld80/k_expl.h
261
long double hi, lo, twopkm2;
lib/msun/ld80/k_expl.h
265
__k_expl(x, &hi, &lo, &k);
lib/msun/ld80/k_expl.h
267
return (lo + hi) * 2 * twopkm2;
lib/msun/ld80/k_expl.h
277
long double c, exp_x, hi, lo, s;
lib/msun/ld80/k_expl.h
283
__k_expl(x, &hi, &lo, &k);
lib/msun/ld80/k_expl.h
285
exp_x = (lo + hi) * 0x1p16382L;
lib/msun/ld80/k_expl.h
74
double hi;
lib/msun/ld80/k_sinpil.h
34
long double hi, lo;
lib/msun/ld80/k_sinpil.h
36
hi = (float)x;
lib/msun/ld80/k_sinpil.h
37
lo = x - hi;
lib/msun/ld80/k_sinpil.h
38
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld80/k_sinpil.h
39
hi *= pi_hi;
lib/msun/ld80/k_sinpil.h
40
_2sumF(hi, lo);
lib/msun/ld80/k_sinpil.h
41
return (__kernel_sinl(hi, lo, 1));
lib/msun/ld80/s_expl.c
241
t = (long double)tbl[n2].lo + tbl[n2].hi;
lib/msun/ld80/s_expl.c
244
t = SUM2P(tbl[n2].hi - 1, tbl[n2].lo * (r1 + 1) + t * q +
lib/msun/ld80/s_expl.c
245
tbl[n2].hi * r1);
lib/msun/ld80/s_expl.c
249
t = SUM2P(tbl[n2].hi - 2, tbl[n2].lo * (r1 + 1) + t * q +
lib/msun/ld80/s_expl.c
250
tbl[n2].hi * r1);
lib/msun/ld80/s_expl.c
254
t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1));
lib/msun/ld80/s_expl.c
258
t = SUM2P(tbl[n2].hi, tbl[n2].lo + t * (q + r1));
lib/msun/ld80/s_expl.c
268
t = SUM2P(tbl[n2].hi, tbl[n2].lo - twomk + t * (q + r1));
lib/msun/ld80/s_expl.c
270
t = SUM2P(tbl[n2].hi - twomk, tbl[n2].lo + t * (q + r1));
lib/msun/ld80/s_expl.c
73
long double hi, lo, t, twopk;
lib/msun/ld80/s_expl.c
98
__k_expl(x, &hi, &lo, &k);
lib/msun/ld80/s_expl.c
99
t = SUM2P(hi, lo);
lib/msun/ld80/s_logl.c
424
(rp)->hi = (v); \
lib/msun/ld80/s_logl.c
430
(rp)->hi = (h); \
lib/msun/ld80/s_logl.c
437
long double hi;
lib/msun/ld80/s_logl.c
685
long double hi, lo;
lib/msun/ld80/s_logl.c
690
RETURNI(r.hi);
lib/msun/ld80/s_logl.c
691
_2sumF(r.hi, r.lo);
lib/msun/ld80/s_logl.c
692
hi = (float)r.hi;
lib/msun/ld80/s_logl.c
693
lo = r.lo + (r.hi - hi);
lib/msun/ld80/s_logl.c
694
RETURNI(invln10_hi * hi +
lib/msun/ld80/s_logl.c
695
(invln10_lo_plus_hi * lo + invln10_lo * hi));
lib/msun/ld80/s_logl.c
702
long double hi, lo;
lib/msun/ld80/s_logl.c
707
RETURNI(r.hi);
lib/msun/ld80/s_logl.c
708
_2sumF(r.hi, r.lo);
lib/msun/ld80/s_logl.c
709
hi = (float)r.hi;
lib/msun/ld80/s_logl.c
710
lo = r.lo + (r.hi - hi);
lib/msun/ld80/s_logl.c
711
RETURNI(invln2_hi * hi +
lib/msun/ld80/s_logl.c
712
(invln2_lo_plus_hi * lo + invln2_lo * hi));
lib/msun/ld80/s_sinpil.c
54
long double ax, hi, lo, s;
lib/msun/ld80/s_sinpil.c
70
INSERT_LDBL80_WORDS(hi, hx,
lib/msun/ld80/s_sinpil.c
72
hi *= 0x1p63L;
lib/msun/ld80/s_sinpil.c
73
lo = x * 0x1p63L - hi;
lib/msun/ld80/s_sinpil.c
74
s = (pi_lo + pi_hi) * lo + pi_lo * hi +
lib/msun/ld80/s_sinpil.c
75
pi_hi * hi;
lib/msun/ld80/s_tanpil.c
47
long double hi, lo, t;
lib/msun/ld80/s_tanpil.c
50
hi = (float)x;
lib/msun/ld80/s_tanpil.c
51
lo = x - hi;
lib/msun/ld80/s_tanpil.c
52
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld80/s_tanpil.c
53
hi *= pi_hi;
lib/msun/ld80/s_tanpil.c
54
_2sumF(hi, lo);
lib/msun/ld80/s_tanpil.c
55
t = __kernel_tanl(hi, lo, -1);
lib/msun/ld80/s_tanpil.c
58
hi = (float)x;
lib/msun/ld80/s_tanpil.c
59
lo = x - hi;
lib/msun/ld80/s_tanpil.c
60
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/ld80/s_tanpil.c
61
hi *= pi_hi;
lib/msun/ld80/s_tanpil.c
62
_2sumF(hi, lo);
lib/msun/ld80/s_tanpil.c
63
t = - __kernel_tanl(hi, lo, 1);
lib/msun/ld80/s_tanpil.c
75
long double ax, hi, lo, odd, t;
lib/msun/ld80/s_tanpil.c
91
INSERT_LDBL80_WORDS(hi, hx,
lib/msun/ld80/s_tanpil.c
93
hi *= 0x1p63L;
lib/msun/ld80/s_tanpil.c
94
lo = x * 0x1p63L - hi;
lib/msun/ld80/s_tanpil.c
95
t = (pi_lo + pi_hi) * lo + pi_lo * hi +
lib/msun/ld80/s_tanpil.c
96
pi_hi * hi;
lib/msun/src/e_coshl.c
119
k_hexpl(fabsl(x), &hi, &lo);
lib/msun/src/e_coshl.c
120
RETURNI(lo + 0.25/(hi + lo) + hi);
lib/msun/src/e_coshl.c
85
long double hi,lo,x2,x4;
lib/msun/src/e_exp.c
103
double y,hi=0.0,lo=0.0,c,t,twopk;
lib/msun/src/e_exp.c
127
hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
lib/msun/src/e_exp.c
131
hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */
lib/msun/src/e_exp.c
134
STRICT_ASSIGN(double, x, hi - lo);
lib/msun/src/e_exp.c
149
else y = one-((lo-(x*c)/(2.0-c))-hi);
lib/msun/src/e_expf.c
45
float y,hi=0.0,lo=0.0,c,t,twopk;
lib/msun/src/e_expf.c
66
hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
lib/msun/src/e_expf.c
70
hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */
lib/msun/src/e_expf.c
73
STRICT_ASSIGN(float, x, hi - lo);
lib/msun/src/e_expf.c
88
else y = one-((lo-(x*c)/((float)2.0-c))-hi);
lib/msun/src/e_log10.c
40
double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2;
lib/msun/src/e_log10.c
68
hi = f - hfsq;
lib/msun/src/e_log10.c
69
SET_LOW_WORD(hi,0);
lib/msun/src/e_log10.c
70
lo = (f - hi) - hfsq + r;
lib/msun/src/e_log10.c
71
val_hi = hi*ivln10hi;
lib/msun/src/e_log10.c
73
val_lo = y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi;
lib/msun/src/e_log10f.c
33
float f,hfsq,hi,lo,r,y;
lib/msun/src/e_log10f.c
63
hi = f - hfsq;
lib/msun/src/e_log10f.c
64
GET_FLOAT_WORD(hx,hi);
lib/msun/src/e_log10f.c
65
SET_FLOAT_WORD(hi,hx&0xfffff000);
lib/msun/src/e_log10f.c
66
lo = (f - hi) - hfsq + r;
lib/msun/src/e_log10f.c
67
return y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi + hi*ivln10hi +
lib/msun/src/e_log2.c
100
val_hi = hi*ivln2hi;
lib/msun/src/e_log2.c
101
val_lo = (lo+hi)*ivln2lo + lo*ivln2hi;
lib/msun/src/e_log2.c
40
double f,hfsq,hi,lo,r,val_hi,val_lo,w,y;
lib/msun/src/e_log2.c
97
hi = f - hfsq;
lib/msun/src/e_log2.c
98
SET_LOW_WORD(hi,0);
lib/msun/src/e_log2.c
99
lo = (f - hi) - hfsq + r;
lib/msun/src/e_log2f.c
31
float f,hfsq,hi,lo,r,y;
lib/msun/src/e_log2f.c
74
hi = f - hfsq;
lib/msun/src/e_log2f.c
75
GET_FLOAT_WORD(hx,hi);
lib/msun/src/e_log2f.c
76
SET_FLOAT_WORD(hi,hx&0xfffff000);
lib/msun/src/e_log2f.c
77
lo = (f - hi) - hfsq + r;
lib/msun/src/e_log2f.c
78
return (lo+hi)*ivln2lo + lo*ivln2hi + hi*ivln2hi + y;
lib/msun/src/e_sinhl.c
121
k_hexpl(fabsl(x), &hi, &lo);
lib/msun/src/e_sinhl.c
122
RETURNI(s*(lo - 0.25/(hi + lo) + hi));
lib/msun/src/e_sinhl.c
84
long double hi,lo,x2,x4;
lib/msun/src/k_cospi.h
35
double_t hi, lo;
lib/msun/src/k_cospi.h
37
hi = (float)x;
lib/msun/src/k_cospi.h
38
lo = x - hi;
lib/msun/src/k_cospi.h
39
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/src/k_cospi.h
40
hi *= pi_hi;
lib/msun/src/k_cospi.h
41
_2sumF(hi, lo);
lib/msun/src/k_cospi.h
42
return (__kernel_cos(hi, lo));
lib/msun/src/k_sinpi.h
35
double_t hi, lo;
lib/msun/src/k_sinpi.h
37
hi = (float)x;
lib/msun/src/k_sinpi.h
38
lo = x - hi;
lib/msun/src/k_sinpi.h
39
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/src/k_sinpi.h
40
hi *= pi_hi;
lib/msun/src/k_sinpi.h
41
_2sumF(hi, lo);
lib/msun/src/k_sinpi.h
42
return (__kernel_sin(hi, lo, 1));
lib/msun/src/math_private.h
746
subnormal_ilogb(int32_t hi, int32_t lo)
lib/msun/src/math_private.h
752
if (hi == 0) {
lib/msun/src/math_private.h
756
i = (uint32_t)hi << 11;
lib/msun/src/math_private.h
790
RETURNF((rp)->hi); \
lib/msun/src/math_private.h
791
RETURNF((rp)->hi + (rp)->lo); \
lib/msun/src/math_private.h
795
RETURNI((rp)->hi); \
lib/msun/src/math_private.h
796
RETURNI((rp)->hi + (rp)->lo); \
lib/msun/src/s_cosl.c
60
long double hi, lo;
lib/msun/src/s_cosl.c
80
hi = y[0];
lib/msun/src/s_cosl.c
85
hi = __kernel_cosl(hi, lo);
lib/msun/src/s_cosl.c
88
hi = - __kernel_sinl(hi, lo, 1);
lib/msun/src/s_cosl.c
91
hi = - __kernel_cosl(hi, lo);
lib/msun/src/s_cosl.c
94
hi = __kernel_sinl(hi, lo, 1);
lib/msun/src/s_cosl.c
98
RETURNI(hi);
lib/msun/src/s_expm1.c
131
double y,hi,lo,c,t,e,hxs,hfx,r1,twopk;
lib/msun/src/s_expm1.c
161
{hi = x - ln2_hi; lo = ln2_lo; k = 1;}
lib/msun/src/s_expm1.c
163
{hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
lib/msun/src/s_expm1.c
167
hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
lib/msun/src/s_expm1.c
170
STRICT_ASSIGN(double, x, hi - lo);
lib/msun/src/s_expm1.c
171
c = (hi-x)-lo;
lib/msun/src/s_expm1f.c
41
float y,hi,lo,c,t,e,hxs,hfx,r1,twopk;
lib/msun/src/s_expm1f.c
68
{hi = x - ln2_hi; lo = ln2_lo; k = 1;}
lib/msun/src/s_expm1f.c
70
{hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
lib/msun/src/s_expm1f.c
74
hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
lib/msun/src/s_expm1f.c
77
STRICT_ASSIGN(float, x, hi - lo);
lib/msun/src/s_expm1f.c
78
c = (hi-x)-lo;
lib/msun/src/s_fma.c
124
EXTRACT_WORD64(hibits, sum.hi);
lib/msun/src/s_fma.c
130
INSERT_WORD64(sum.hi, hibits);
lib/msun/src/s_fma.c
133
return (ldexp(sum.hi, scale));
lib/msun/src/s_fma.c
161
ret.hi = p + q;
lib/msun/src/s_fma.c
162
ret.lo = p - ret.hi + q + la * lb;
lib/msun/src/s_fma.c
259
r = dd_add(xy.hi, zs);
lib/msun/src/s_fma.c
263
if (r.hi == 0.0 && xy.lo == 0) {
lib/msun/src/s_fma.c
270
return (xy.hi + vzs);
lib/msun/src/s_fma.c
282
return (ldexp(r.hi + adj, spread));
lib/msun/src/s_fma.c
286
if (spread + ilogb(r.hi) > -1023)
lib/msun/src/s_fma.c
287
return (ldexp(r.hi + adj, spread));
lib/msun/src/s_fma.c
289
return (add_and_denormalize(r.hi, adj, spread));
lib/msun/src/s_fma.c
48
double hi;
lib/msun/src/s_fma.c
63
ret.hi = a + b;
lib/msun/src/s_fma.c
64
s = ret.hi - a;
lib/msun/src/s_fma.c
65
ret.lo = (a - (ret.hi - s)) + (b - s);
lib/msun/src/s_fma.c
88
EXTRACT_WORD64(hibits, sum.hi);
lib/msun/src/s_fma.c
93
INSERT_WORD64(sum.hi, hibits);
lib/msun/src/s_fma.c
96
return (sum.hi);
lib/msun/src/s_fmal.c
113
u.e = sum.hi;
lib/msun/src/s_fmal.c
116
sum.hi = nextafterl(sum.hi, INFINITY * sum.lo);
lib/msun/src/s_fmal.c
118
return (ldexp(sum.hi, scale));
lib/msun/src/s_fmal.c
150
ret.hi = p + q;
lib/msun/src/s_fmal.c
151
ret.lo = p - ret.hi + q + la * lb;
lib/msun/src/s_fmal.c
240
r = dd_add(xy.hi, zs);
lib/msun/src/s_fmal.c
244
if (r.hi == 0.0 && xy.lo == 0) {
lib/msun/src/s_fmal.c
251
return (xy.hi + vzs);
lib/msun/src/s_fmal.c
263
return (ldexpl(r.hi + adj, spread));
lib/msun/src/s_fmal.c
267
if (spread + ilogbl(r.hi) > -16383)
lib/msun/src/s_fmal.c
268
return (ldexpl(r.hi + adj, spread));
lib/msun/src/s_fmal.c
270
return (add_and_denormalize(r.hi, adj, spread));
lib/msun/src/s_fmal.c
41
long double hi;
lib/msun/src/s_fmal.c
56
ret.hi = a + b;
lib/msun/src/s_fmal.c
57
s = ret.hi - a;
lib/msun/src/s_fmal.c
58
ret.lo = (a - (ret.hi - s)) + (b - s);
lib/msun/src/s_fmal.c
81
u.e = sum.hi;
lib/msun/src/s_fmal.c
83
sum.hi = nextafterl(sum.hi, INFINITY * sum.lo);
lib/msun/src/s_fmal.c
85
return (sum.hi);
lib/msun/src/s_sinl.c
50
long double hi, lo;
lib/msun/src/s_sinl.c
68
hi = __kernel_sinl(z.e, 0, 0);
lib/msun/src/s_sinl.c
69
RETURNI(s ? -hi : hi);
lib/msun/src/s_sinl.c
73
hi = y[0];
lib/msun/src/s_sinl.c
78
hi = __kernel_sinl(hi, lo, 1);
lib/msun/src/s_sinl.c
81
hi = __kernel_cosl(hi, lo);
lib/msun/src/s_sinl.c
84
hi = - __kernel_sinl(hi, lo, 1);
lib/msun/src/s_sinl.c
87
hi = - __kernel_cosl(hi, lo);
lib/msun/src/s_sinl.c
91
RETURNI(hi);
lib/msun/src/s_sinpi.c
100
hi *= 0x1p53;
lib/msun/src/s_sinpi.c
101
lo = x * 0x1p53 - hi;
lib/msun/src/s_sinpi.c
102
s = (pi_lo + pi_hi) * lo + pi_lo * hi +
lib/msun/src/s_sinpi.c
103
pi_hi * hi;
lib/msun/src/s_sinpi.c
82
double ax, hi, lo, s;
lib/msun/src/s_sinpi.c
99
INSERT_WORDS(hi, hx, 0);
lib/msun/src/s_sinpif.c
51
float ax, hi, lo, s;
lib/msun/src/s_sinpif.c
63
SET_FLOAT_WORD(hi, hx & 0xffff0000);
lib/msun/src/s_sinpif.c
64
hi *= 0x1p23F;
lib/msun/src/s_sinpif.c
65
lo = x * 0x1p23F - hi;
lib/msun/src/s_sinpif.c
66
s = (pi_lo + pi_hi) * lo + pi_lo * hi +
lib/msun/src/s_sinpif.c
67
pi_hi * hi;
lib/msun/src/s_tanhl.c
111
long double hi,lo,s,x2,x4,z;
lib/msun/src/s_tanhl.c
158
k_hexpl(2*fabsl(x), &hi, &lo);
lib/msun/src/s_tanhl.c
160
z = divl(hi, lo, -0.5, hi, lo, 0.5);
lib/msun/src/s_tanhl.c
162
z = one - one/(lo+0.5+hi);
lib/msun/src/s_tanl.c
56
long double hi, lo;
lib/msun/src/s_tanl.c
74
hi = __kernel_tanl(z.e, 0, 0);
lib/msun/src/s_tanl.c
75
RETURNI(s ? -hi : hi);
lib/msun/src/s_tanl.c
79
hi = y[0];
lib/msun/src/s_tanl.c
85
hi = __kernel_tanl(hi, lo, 0);
lib/msun/src/s_tanl.c
89
hi = __kernel_tanl(hi, lo, 1);
lib/msun/src/s_tanl.c
93
RETURNI(hi);
lib/msun/src/s_tanpi.c
100
_2sumF(hi, lo);
lib/msun/src/s_tanpi.c
101
t = - __kernel_tan(hi, lo, -1);
lib/msun/src/s_tanpi.c
113
double ax, hi, lo, odd, t;
lib/msun/src/s_tanpi.c
130
INSERT_WORDS(hi, hx, 0);
lib/msun/src/s_tanpi.c
131
hi *= 0x1p53;
lib/msun/src/s_tanpi.c
132
lo = x * 0x1p53 - hi;
lib/msun/src/s_tanpi.c
133
t = (pi_lo + pi_hi) * lo + pi_lo * hi +
lib/msun/src/s_tanpi.c
134
pi_hi * hi;
lib/msun/src/s_tanpi.c
85
double_t hi, lo, t;
lib/msun/src/s_tanpi.c
88
hi = (float)x;
lib/msun/src/s_tanpi.c
89
lo = x - hi;
lib/msun/src/s_tanpi.c
90
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/src/s_tanpi.c
91
hi *= pi_hi;
lib/msun/src/s_tanpi.c
92
_2sumF(hi, lo);
lib/msun/src/s_tanpi.c
93
t = __kernel_tan(hi, lo, 1);
lib/msun/src/s_tanpi.c
96
hi = (float)x;
lib/msun/src/s_tanpi.c
97
lo = x - hi;
lib/msun/src/s_tanpi.c
98
lo = lo * (pi_lo + pi_hi) + hi * pi_lo;
lib/msun/src/s_tanpi.c
99
hi *= pi_hi;
lib/msun/src/s_tanpif.c
61
float ax, hi, lo, odd, t;
lib/msun/src/s_tanpif.c
73
SET_FLOAT_WORD(hi, hx & 0xffff0000);
lib/msun/src/s_tanpif.c
74
hi *= 0x1p23F;
lib/msun/src/s_tanpif.c
75
lo = x * 0x1p23F - hi;
lib/msun/src/s_tanpif.c
76
t = (pi_lo + pi_hi) * lo + pi_lo * hi +
lib/msun/src/s_tanpif.c
77
pi_hi * hi;
sbin/dump/cache.c
115
hi = (offset / BlockSize) % HSize;
sbin/dump/cache.c
116
pblk = &BlockHash[hi];
sbin/dump/cache.c
137
blk->b_HNext = BlockHash[hi];
sbin/dump/cache.c
138
BlockHash[hi] = blk;
sbin/dump/cache.c
54
int hi;
sbin/dump/cache.c
72
hi = i / HFACTOR;
sbin/dump/cache.c
73
base[i].b_HNext = BlockHash[hi];
sbin/dump/cache.c
74
BlockHash[hi] = &base[i];
sbin/dump/cache.c
84
int hi;
sbin/newfs_msdos/newfs_msdos.c
193
argtou(const char *arg, u_int lo, u_int hi, const char *msg)
sbin/newfs_msdos/newfs_msdos.c
200
if (errno || !*arg || *s || x < lo || x > hi)
sbin/nvmecontrol/nvmecontrol.h
115
uint64_t lo, hi;
sbin/nvmecontrol/nvmecontrol.h
118
hi = le64dec((const char *)p + 8);
sbin/nvmecontrol/nvmecontrol.h
119
return ((uint128_t)hi << 64 | lo);
sbin/pfctl/parse.y
928
syncookie_opts.hi = val;
sbin/pfctl/pfctl.c
3204
if (!w->hi)
sbin/pfctl/pfctl.c
3205
w->hi = PF_SYNCOOKIES_HIWATPCT;
sbin/pfctl/pfctl.c
3207
w->lo = w->hi / 2;
sbin/pfctl/pfctl.c
3208
if (w->lo >= w->hi) {
sbin/pfctl/pfctl.c
3213
pf->syncookieswat[1] = w->hi;
sbin/pfctl/pfctl_parser.h
245
uint32_t hi;
sbin/routed/main.c
796
u_long hi) /* and before this */
sbin/routed/main.c
798
tp->tv_sec = (time_t)(hi == lo
sbin/routed/main.c
800
: (lo + arc4random_uniform(1 + hi - lo)));
stand/ficl/aarch64/sysdep.c
31
q.hi = (uint32_t)( qx >> 32 );
stand/ficl/aarch64/sysdep.c
42
qh = q.hi;
stand/ficl/aarch64/sysdep.h
131
FICL_UNS hi;
stand/ficl/aarch64/sysdep.h
143
FICL_INT hi;
stand/ficl/amd64/sysdep.c
33
q.hi = (uint32_t)( qx >> 32 );
stand/ficl/amd64/sysdep.c
44
qh = q.hi;
stand/ficl/amd64/sysdep.h
131
FICL_UNS hi;
stand/ficl/amd64/sysdep.h
143
FICL_INT hi;
stand/ficl/arm/sysdep.c
31
q.hi = (uint32_t)( qx >> 32 );
stand/ficl/arm/sysdep.c
42
qh = q.hi;
stand/ficl/arm/sysdep.h
131
FICL_UNS hi;
stand/ficl/arm/sysdep.h
143
FICL_INT hi;
stand/ficl/ficl.c
597
void ficlSetEnvD(FICL_SYSTEM *pSys, char *name, FICL_UNS hi, FICL_UNS lo)
stand/ficl/ficl.c
609
dictAppendCell(envp, LVALUEtoCELL(hi));
stand/ficl/ficl.c
614
pFW->param[1] = LVALUEtoCELL(hi);
stand/ficl/ficl.h
1021
void ficlSetEnvD(FICL_SYSTEM *pSys, char *name, FICL_UNS hi, FICL_UNS lo);
stand/ficl/i386/sysdep.c
33
q.hi = (uint32_t)( qx >> 32 );
stand/ficl/i386/sysdep.c
44
qh = q.hi;
stand/ficl/i386/sysdep.h
129
FICL_UNS hi;
stand/ficl/i386/sysdep.h
141
FICL_INT hi;
stand/ficl/math64.c
136
return (x.hi < 0);
stand/ficl/math64.c
151
DPUNS resultHi = ficlLongMul(u.hi, mul);
stand/ficl/math64.c
152
resultLo.hi += resultHi.lo;
stand/ficl/math64.c
156
resultLo.hi++;
stand/ficl/math64.c
199
x.hi = ~x.hi;
stand/ficl/math64.c
203
x.hi++;
stand/ficl/math64.c
218
stackPushINT(pStack, i64.hi);
stand/ficl/math64.c
225
stackPushINT(pStack, u64.hi);
stand/ficl/math64.c
239
ret.hi = stackPopINT(pStack);
stand/ficl/math64.c
247
ret.hi = stackPopINT(pStack);
stand/ficl/math64.c
321
result.hi = result.lo = 0;
stand/ficl/math64.c
323
ud.hi = 0;
stand/ficl/math64.c
324
ud.lo = pUD->hi >> UMOD_SHIFT;
stand/ficl/math64.c
326
result.hi = qr.quot << UMOD_SHIFT;
stand/ficl/math64.c
328
ud.lo = (qr.rem << UMOD_SHIFT) | (pUD->hi & UMOD_MASK);
stand/ficl/math64.c
330
result.hi |= qr.quot & UMOD_MASK;
stand/ficl/math64.c
360
result.hi = x.hi + y.hi;
stand/ficl/math64.c
369
result.hi++;
stand/ficl/math64.c
384
result.hi = x.hi - y.hi;
stand/ficl/math64.c
389
result.hi--;
stand/ficl/math64.c
404
result.hi = x.hi << 1;
stand/ficl/math64.c
407
result.hi++;
stand/ficl/math64.c
425
if (x.hi & 1)
stand/ficl/math64.c
430
result.hi = x.hi >> 1;
stand/ficl/math64.c
443
result.hi = x.hi | y.hi;
stand/ficl/math64.c
458
if (x.hi > y.hi)
stand/ficl/math64.c
462
else if (x.hi < y.hi)
stand/ficl/math64.c
499
addend.hi = 0; /* No sign extension--arguments are unsigned */
stand/ficl/math64.c
528
quotient.hi = 0;
stand/ficl/math64.c
531
subtrahend.hi = 0;
stand/ficl/math64.c
534
mask.hi = 0;
stand/ficl/math64.c
537
(subtrahend.hi & CELL_HI_BIT) == 0)
stand/ficl/math64.c
543
while (mask.lo != 0 || mask.hi != 0)
stand/ficl/math64.h
74
#define i64Extend(i64) (i64).hi = ((i64).lo < 0) ? -1L : 0
stand/ficl/powerpc/sysdep.c
31
q.hi = (uint32_t)( qx >> 32 );
stand/ficl/powerpc/sysdep.c
42
qh = q.hi;
stand/ficl/powerpc/sysdep.h
131
FICL_UNS hi;
stand/ficl/powerpc/sysdep.h
143
FICL_INT hi;
stand/ficl/riscv/sysdep.c
31
q.hi = (uint32_t)( qx >> 32 );
stand/ficl/riscv/sysdep.c
42
qh = q.hi;
stand/ficl/riscv/sysdep.h
131
FICL_UNS hi;
stand/ficl/riscv/sysdep.h
143
FICL_INT hi;
stand/ficl/vm.c
693
v.hi = 0;
stand/ficl/vm.c
730
ud.hi = 0;
stand/ficl/words.c
2998
while (u.hi || u.lo);
stand/libsa/random.c
49
long x, hi, lo, t;
stand/libsa/random.c
58
hi = x / 127773;
stand/libsa/random.c
60
t = 16807 * lo - 2836 * hi;
sys/amd64/amd64/fpu.c
101
uint32_t low, hi;
sys/amd64/amd64/fpu.c
104
hi = mask >> 32;
sys/amd64/amd64/fpu.c
105
__asm __volatile("xsave %0" : "=m" (*addr) : "a" (low), "d" (hi) :
sys/amd64/amd64/fpu.c
112
uint32_t low, hi;
sys/amd64/amd64/fpu.c
115
hi = mask >> 32;
sys/amd64/amd64/fpu.c
116
__asm __volatile("xsave64 %0" : "=m" (*addr) : "a" (low), "d" (hi) :
sys/amd64/amd64/fpu.c
123
uint32_t low, hi;
sys/amd64/amd64/fpu.c
126
hi = mask >> 32;
sys/amd64/amd64/fpu.c
127
__asm __volatile("xsaveopt %0" : "=m" (*addr) : "a" (low), "d" (hi) :
sys/amd64/amd64/fpu.c
134
uint32_t low, hi;
sys/amd64/amd64/fpu.c
137
hi = mask >> 32;
sys/amd64/amd64/fpu.c
138
__asm __volatile("xsaveopt64 %0" : "=m" (*addr) : "a" (low), "d" (hi) :
sys/amd64/amd64/fpu.c
81
uint32_t low, hi;
sys/amd64/amd64/fpu.c
84
hi = mask >> 32;
sys/amd64/amd64/fpu.c
85
__asm __volatile("xrstor %0" : : "m" (*addr), "a" (low), "d" (hi));
sys/amd64/amd64/fpu.c
91
uint32_t low, hi;
sys/amd64/amd64/fpu.c
94
hi = mask >> 32;
sys/amd64/amd64/fpu.c
95
__asm __volatile("xrstor64 %0" : : "m" (*addr), "a" (low), "d" (hi));
sys/amd64/include/cpufunc.h
955
uint32_t low, hi;
sys/amd64/include/cpufunc.h
958
hi = state_bitmap >> 32;
sys/amd64/include/cpufunc.h
960
"d"(hi));
sys/amd64/include/cpufunc.h
966
uint32_t low, hi;
sys/amd64/include/cpufunc.h
969
hi = state_bitmap >> 32;
sys/amd64/include/cpufunc.h
971
"d"(hi)
sys/arm/allwinner/a20/a20_cpu_cfg.c
122
uint32_t lo, hi;
sys/arm/allwinner/a20/a20_cpu_cfg.c
129
hi = cpu_cfg_read_4(a20_cpu_cfg_sc, OSC24M_CNT64_HIGH_REG);
sys/arm/allwinner/a20/a20_cpu_cfg.c
132
return (((uint64_t)hi << 32) | lo);
sys/arm/allwinner/aw_timer.c
447
uint32_t lo, hi;
sys/arm/allwinner/aw_timer.c
454
hi = timer_read_4(sc, CNT64_HI_REG);
sys/arm/allwinner/aw_timer.c
457
return (((uint64_t)hi << 32) | lo);
sys/arm/allwinner/axp81x.c
1024
if (axp8xx_read(dev, AXP_BATSENSE_HI, &hi, 1) == 0 &&
sys/arm/allwinner/axp81x.c
1026
val = (AXP_SENSOR_BAT_H(hi) | AXP_SENSOR_BAT_L(lo));
sys/arm/allwinner/axp81x.c
1033
axp8xx_read(dev, AXP_BATCHG_HI, &hi, 1) == 0 &&
sys/arm/allwinner/axp81x.c
1035
val = (AXP_SENSOR_BAT_H(hi) | AXP_SENSOR_BAT_L(lo));
sys/arm/allwinner/axp81x.c
1042
axp8xx_read(dev, AXP_BATDISCHG_HI, &hi, 1) == 0 &&
sys/arm/allwinner/axp81x.c
1044
val = (AXP_SENSOR_BAT_H(hi) | AXP_SENSOR_BAT_L(lo));
sys/arm/allwinner/axp81x.c
1049
if (axp8xx_read(dev, AXP_BAT_MAX_CAP_HI, &hi, 1) == 0 &&
sys/arm/allwinner/axp81x.c
1051
val = AXP_SENSOR_COULOMB(hi, lo);
sys/arm/allwinner/axp81x.c
1056
if (axp8xx_read(dev, AXP_BAT_COULOMB_HI, &hi, 1) == 0 &&
sys/arm/allwinner/axp81x.c
1058
val = AXP_SENSOR_COULOMB(hi, lo);
sys/arm/allwinner/axp81x.c
197
#define AXP_SENSOR_BAT_H(hi) ((hi) << 4)
sys/arm/allwinner/axp81x.c
199
#define AXP_SENSOR_COULOMB(hi, lo) (((hi & ~(1 << 7)) << 8) | (lo))
sys/arm/allwinner/axp81x.c
972
uint8_t lo, hi;
sys/cddl/dev/dtrace/aarch64/dtrace_subr.c
163
uint32_t lo, hi;
sys/cddl/dev/dtrace/aarch64/dtrace_subr.c
167
hi = count >> 32;
sys/cddl/dev/dtrace/aarch64/dtrace_subr.c
169
((hi * nsec_scale) << (32 - SCALE_SHIFT)));
sys/cddl/dev/dtrace/amd64/dtrace_subr.c
336
uint32_t lo, hi;
sys/cddl/dev/dtrace/amd64/dtrace_subr.c
350
hi = tsc >> 32;
sys/cddl/dev/dtrace/amd64/dtrace_subr.c
352
((hi * nsec_scale) << (32 - SCALE_SHIFT)));
sys/cddl/dev/dtrace/i386/dtrace_subr.c
333
uint32_t lo, hi;
sys/cddl/dev/dtrace/i386/dtrace_subr.c
347
hi = tsc >> 32;
sys/cddl/dev/dtrace/i386/dtrace_subr.c
349
((hi * nsec_scale) << (32 - SCALE_SHIFT)));
sys/cddl/dev/dtrace/powerpc/dtrace_subr.c
216
uint32_t hi;
sys/cddl/dev/dtrace/powerpc/dtrace_subr.c
226
hi = timebase >> 32;
sys/cddl/dev/dtrace/powerpc/dtrace_subr.c
228
((hi * nsec_scale) << (32 - SCALE_SHIFT)));
sys/compat/linuxkpi/common/include/linux/math64.h
169
uint32_t hi, lo;
sys/compat/linuxkpi/common/include/linux/math64.h
170
hi = x >> 32;
sys/compat/linuxkpi/common/include/linux/math64.h
174
(mul_u32_u32(hi, y) << (32 - shift));
sys/compat/linuxkpi/common/include/linux/minmax.h
67
#define clamp(x, lo, hi) min(max(x, lo), hi)
sys/compat/linuxkpi/common/include/linux/minmax.h
68
#define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi)
sys/crypto/aesni/aesni_ghash.c
166
H3_X3_hi, H4_X4_lo, H4_X4_hi, lo, hi;
sys/crypto/aesni/aesni_ghash.c
185
hi = _mm_xor_si128(H1_X1_hi, H2_X2_hi);
sys/crypto/aesni/aesni_ghash.c
186
hi = _mm_xor_si128(hi, H3_X3_hi);
sys/crypto/aesni/aesni_ghash.c
187
hi = _mm_xor_si128(hi, H4_X4_hi);
sys/crypto/aesni/aesni_ghash.c
212
tmp0 = _mm_xor_si128(tmp0, hi);
sys/crypto/aesni/aesni_ghash.c
221
hi = _mm_xor_si128(tmp0, hi);
sys/crypto/aesni/aesni_ghash.c
224
tmp6 = hi;
sys/dev/acpi_support/acpi_hp.c
1076
unsigned int hi;
sys/dev/acpi_support/acpi_hp.c
1079
hi = hexin[0];
sys/dev/acpi_support/acpi_hp.c
1081
if ('0' <= hi && hi <= '9')
sys/dev/acpi_support/acpi_hp.c
1082
hi -= '0';
sys/dev/acpi_support/acpi_hp.c
1083
else if ('A' <= hi && hi <= 'F')
sys/dev/acpi_support/acpi_hp.c
1084
hi -= ('A' - 10);
sys/dev/acpi_support/acpi_hp.c
1085
else if ('a' <= hi && hi <= 'f')
sys/dev/acpi_support/acpi_hp.c
1086
hi -= ('a' - 10);
sys/dev/acpi_support/acpi_hp.c
1097
*byteout = (hi << 4) + lo;
sys/dev/acpi_support/acpi_wmi.c
811
UINT8 hi = ((UINT8) winfo->ginfo.oid[0]) >> 4;
sys/dev/acpi_support/acpi_wmi.c
813
method[2] = (hi > 9 ? hi + 55: hi + 48);
sys/dev/acpi_support/acpi_wmi.c
828
unsigned int hi;
sys/dev/acpi_support/acpi_wmi.c
831
hi = hexin[0];
sys/dev/acpi_support/acpi_wmi.c
833
if ('0' <= hi && hi <= '9')
sys/dev/acpi_support/acpi_wmi.c
834
hi -= '0';
sys/dev/acpi_support/acpi_wmi.c
835
else if ('A' <= hi && hi <= 'F')
sys/dev/acpi_support/acpi_wmi.c
836
hi -= ('A' - 10);
sys/dev/acpi_support/acpi_wmi.c
837
else if ('a' <= hi && hi <= 'f')
sys/dev/acpi_support/acpi_wmi.c
838
hi -= ('a' - 10);
sys/dev/acpi_support/acpi_wmi.c
849
*byteout = (hi << 4) + lo;
sys/dev/aq/aq_fw2x.c
211
uint64_t hi = AQ_READ_REG(hw, addr + 4);
sys/dev/aq/aq_fw2x.c
212
return (lo | (hi << 32));
sys/dev/bwi/bwirf.c
1550
#define LO_ADJUST(hi, lo) { .ctrl_hi = hi, .ctrl_lo = lo }
sys/dev/bwn/if_bwn_util.h
47
bwn_clamp_val(int val, int lo, int hi)
sys/dev/bwn/if_bwn_util.h
51
if (val > hi)
sys/dev/bwn/if_bwn_util.h
52
return hi;
sys/dev/bxe/bxe.c
10213
eq_data.base_addr.hi = U64_HI(sc->eq_dma.paddr);
sys/dev/bxe/bxe.c
2434
spe->data.update_data_addr.hi = htole32(data_hi);
sys/dev/bxe/bxe.c
9528
sb_data_e2.common.host_sb_addr.hi = U64_HI(busaddr);
sys/dev/bxe/bxe.c
9543
sb_data_e1x.common.host_sb_addr.hi = U64_HI(busaddr);
sys/dev/bxe/bxe.c
9847
sp_sb_data.host_sb_addr.hi = U64_HI(section);
sys/dev/bxe/bxe.c
9878
elem->next_page.addr.hi = htole32(U64_HI(sc->eq_dma.paddr +
sys/dev/bxe/bxe.h
161
#define HILO_U64(hi, lo) ((((uint64_t)(hi)) << 32) + (lo))
sys/dev/bxe/bxe_stats.c
113
sc->fw_stats_req->hdr.stats_counters_addrs.hi,
sys/dev/bxe/bxe_stats.c
1139
tfunc->rcv_error_bytes.hi,
sys/dev/bxe/bxe_stats.c
1144
tfunc->rcv_error_bytes.hi,
sys/dev/bxe/bxe_stats.c
129
sc->fw_stats_req->query[i].address.hi,
sys/dev/bxe/bxe_stats.c
1532
stats_hdr->stats_counters_addrs.hi = htole32(U64_HI(cur_data_offset));
sys/dev/bxe/bxe_stats.c
1553
cur_query_entry->address.hi = htole32(U64_HI(cur_data_offset));
sys/dev/bxe/bxe_stats.c
1566
cur_query_entry->address.hi = htole32(U64_HI(cur_data_offset));
sys/dev/bxe/bxe_stats.c
1586
cur_query_entry->address.hi = htole32(U64_HI(cur_data_offset));
sys/dev/bxe/bxe_stats.c
45
uint32_t hi = *hiref;
sys/dev/bxe/bxe_stats.c
46
return (HILO_U64(hi, lo));
sys/dev/bxe/bxe_stats.c
625
uint32_t hi;
sys/dev/bxe/bxe_stats.c
867
uint32_t hi;
sys/dev/bxe/bxe_stats.h
554
DIFF_64(diff.hi, new->s##_hi, pstats->mac_stx[0].t##_hi, \
sys/dev/bxe/bxe_stats.h
558
ADD_64(pstats->mac_stx[1].t##_hi, diff.hi, \
sys/dev/bxe/bxe_stats.h
564
DIFF_64(diff.hi, new->s##_hi, old->s##_hi, \
sys/dev/bxe/bxe_stats.h
566
ADD_64(estats->t##_hi, diff.hi, \
sys/dev/bxe/bxe_stats.h
628
qstats->t##_hi = qstats_old->t##_hi + le32toh(s.hi); \
sys/dev/bxe/ecore_hsi.h
6593
uint32_t hi /* high word for reg-pair */;
sys/dev/bxe/ecore_hsi.h
6600
uint32_t hi /* high word for reg-pair */;
sys/dev/bxe/ecore_hsi.h
9636
uint32_t hi /* Higher 32 bits of address */;
sys/dev/bxe/ecore_sp.c
4846
tx_data->tx_bd_page_base.hi =
sys/dev/bxe/ecore_sp.c
4908
rx_data->bd_page_base.hi =
sys/dev/bxe/ecore_sp.c
4912
rx_data->sge_page_base.hi =
sys/dev/bxe/ecore_sp.c
4916
rx_data->cqe_page_base.hi =
sys/dev/bxe/ecore_sp.c
4980
data->tx.tx_bd_page_base.hi);
sys/dev/bxe/ecore_sp.c
6509
rdata->offset_delta.hi =
sys/dev/bxe/ecore_sp.c
6516
rdata->offset_delta.hi);
sys/dev/cxgb/cxgb_main.c
1395
int hi, int port)
sys/dev/cxgb/cxgb_main.c
1408
req->max = hi;
sys/dev/cxgb/cxgb_main.c
2461
in_range(int val, int lo, int hi)
sys/dev/cxgb/cxgb_main.c
2463
return val < 0 || (val <= hi && val >= lo);
sys/dev/cxgbe/cudbg/cudbg_entity.h
147
u32 hi[MBOX_LEN / 8];
sys/dev/cxgbe/cudbg/cudbg_lib.c
1029
hi = t4_read_reg(padap, A_CIM_SDRAM_ADDR_SIZE) + lo - 1;
sys/dev/cxgbe/cudbg/cudbg_lib.c
1031
meminfo_buff->up_ram_hi = hi;
sys/dev/cxgbe/cudbg/cudbg_lib.c
1034
hi = t4_read_reg(padap, A_CIM_EXTMEM2_ADDR_SIZE) + lo - 1;
sys/dev/cxgbe/cudbg/cudbg_lib.c
1036
meminfo_buff->up_extmem2_hi = hi;
sys/dev/cxgbe/cudbg/cudbg_lib.c
1045
hi = t4_read_reg(padap, A_TP_PMM_TX_PAGE_SIZE);
sys/dev/cxgbe/cudbg/cudbg_lib.c
1048
hi >= (1 << 20) ? (hi >> 20) : (hi >> 10);
sys/dev/cxgbe/cudbg/cudbg_lib.c
1050
hi >= (1 << 20) ? 'M' : 'K';
sys/dev/cxgbe/cudbg/cudbg_lib.c
3113
mboxlog->hi[i] = (u32)(flit >> 32);
sys/dev/cxgbe/cudbg/cudbg_lib.c
840
u32 size, lo, hi;
sys/dev/cxgbe/cudbg/cudbg_lib.c
863
hi = t4_read_reg(padap, A_MA_EDRAM0_BAR);
sys/dev/cxgbe/cudbg/cudbg_lib.c
864
meminfo_buff->avail[i].base = G_EDRAM0_BASE(hi) << 20;
sys/dev/cxgbe/cudbg/cudbg_lib.c
866
(G_EDRAM0_SIZE(hi) << 20);
sys/dev/cxgbe/cudbg/cudbg_lib.c
872
hi = t4_read_reg(padap, A_MA_EDRAM1_BAR);
sys/dev/cxgbe/cudbg/cudbg_lib.c
873
meminfo_buff->avail[i].base = G_EDRAM1_BASE(hi) << 20;
sys/dev/cxgbe/cudbg/cudbg_lib.c
875
(G_EDRAM1_SIZE(hi) << 20);
sys/dev/cxgbe/cudbg/cudbg_lib.c
882
hi = t4_read_reg(padap, A_MA_EXT_MEMORY0_BAR);
sys/dev/cxgbe/cudbg/cudbg_lib.c
883
meminfo_buff->avail[i].base = G_EXT_MEM_BASE(hi) << 20;
sys/dev/cxgbe/cudbg/cudbg_lib.c
886
(G_EXT_MEM_SIZE(hi) << 20);
sys/dev/cxgbe/cudbg/cudbg_lib.c
892
hi = t4_read_reg(padap, A_MA_EXT_MEMORY1_BAR);
sys/dev/cxgbe/cudbg/cudbg_lib.c
893
meminfo_buff->avail[i].base = G_EXT_MEM1_BASE(hi) << 20;
sys/dev/cxgbe/cudbg/cudbg_lib.c
896
(G_EXT_MEM1_SIZE(hi) << 20);
sys/dev/cxgbe/cudbg/cudbg_lib.c
902
hi = t4_read_reg(padap, A_MA_EXT_MEMORY_BAR);
sys/dev/cxgbe/cudbg/cudbg_lib.c
903
meminfo_buff->avail[i].base = G_EXT_MEM_BASE(hi) << 20;
sys/dev/cxgbe/cudbg/cudbg_lib.c
906
(G_EXT_MEM_SIZE(hi) << 20);
sys/dev/cxgbe/cudbg/cudbg_lib.c
950
hi = t4_read_reg(padap, A_LE_DB_TID_HASHBASE) / 4;
sys/dev/cxgbe/cudbg/cudbg_lib.c
953
hi = t4_read_reg(padap, A_LE_DB_HASH_TID_BASE);
sys/dev/cxgbe/firmware/t4fw_interface.h
173
__be32 hi;
sys/dev/cxgbe/firmware/t4fw_interface.h
5293
__be32 hi;
sys/dev/cxgbe/t4_main.c
10462
uint32_t lo, hi, used, free, alloc;
sys/dev/cxgbe/t4_main.c
10504
hi = t4_read_reg(sc, A_MA_EDRAM0_BAR);
sys/dev/cxgbe/t4_main.c
10506
avail[i].base = (uint64_t)G_T7_EDRAM0_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10508
(G_T7_EDRAM0_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10510
avail[i].base = (uint64_t)G_EDRAM0_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10512
(G_EDRAM0_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10518
hi = t4_read_reg(sc, A_MA_EDRAM1_BAR);
sys/dev/cxgbe/t4_main.c
10520
avail[i].base = (uint64_t)G_T7_EDRAM1_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10522
(G_T7_EDRAM1_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10524
avail[i].base = (uint64_t)G_EDRAM1_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10526
(G_EDRAM1_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10535
hi = t4_read_reg(sc, A_MA_EXT_MEMORY_BAR);
sys/dev/cxgbe/t4_main.c
10536
avail[i].base = (uint64_t)G_EXT_MEM_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10538
(G_EXT_MEM_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10542
hi = t4_read_reg(sc, A_MA_EXT_MEMORY0_BAR);
sys/dev/cxgbe/t4_main.c
10543
avail[i].base = (uint64_t)G_EXT_MEM0_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10545
(G_EXT_MEM0_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10549
hi = t4_read_reg(sc, A_MA_EXT_MEMORY0_BAR);
sys/dev/cxgbe/t4_main.c
10550
avail[i].base = (uint64_t)G_T7_EXT_MEM0_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10552
(G_T7_EXT_MEM0_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10562
hi = t4_read_reg(sc, A_MA_EXT_MEMORY1_BAR);
sys/dev/cxgbe/t4_main.c
10564
avail[i].base = (uint64_t)G_T7_EXT_MEM1_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10566
(G_T7_EXT_MEM1_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10568
avail[i].base = (uint64_t)G_EXT_MEM1_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10570
(G_EXT_MEM1_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10580
hi = t4_read_reg(sc, A_MA_HOST_MEMORY_BAR);
sys/dev/cxgbe/t4_main.c
10581
avail[i].base = (uint64_t)G_HMATARGETBASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10583
(G_T7_HMA_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10585
hi = t4_read_reg(sc, A_MA_EXT_MEMORY1_BAR);
sys/dev/cxgbe/t4_main.c
10586
avail[i].base = G_EXT_MEM1_BASE(hi) << 20;
sys/dev/cxgbe/t4_main.c
10588
(G_EXT_MEM1_SIZE(hi) << 20);
sys/dev/cxgbe/t4_main.c
10752
hi = t4_read_reg(sc, A_CIM_SDRAM_ADDR_SIZE) + lo - 1;
sys/dev/cxgbe/t4_main.c
10753
if (hi != lo - 1) {
sys/dev/cxgbe/t4_main.c
10755
mem_region_show(sb, "uP RAM:", lo, hi);
sys/dev/cxgbe/t4_main.c
10759
hi = t4_read_reg(sc, A_CIM_EXTMEM2_ADDR_SIZE) + lo - 1;
sys/dev/cxgbe/t4_main.c
10760
if (hi != lo - 1)
sys/dev/cxgbe/t4_main.c
10761
mem_region_show(sb, "uP Extmem2:", lo, hi);
sys/dev/cxgbe/t4_main.c
10775
hi = t4_read_reg(sc, A_TP_PMM_TX_PAGE_SIZE);
sys/dev/cxgbe/t4_main.c
10784
hi >= (1 << 20) ? (hi >> 20) : (hi >> 10),
sys/dev/cxgbe/t4_main.c
10785
hi >= (1 << 20) ? 'M' : 'K', nchan);
sys/dev/cxgbe/t4_sched.c
46
in_range(int val, int lo, int hi)
sys/dev/cxgbe/t4_sched.c
49
return (val < 0 || (val <= hi && val >= lo));
sys/dev/cxgbe/tom/t4_cpl_io.c
1510
wrhdr->hi |= htobe32(F_FW_WR_COMPL);
sys/dev/dwc/dwc1000_core.c
302
uint32_t ffval, hi, lo;
sys/dev/dwc/dwc1000_core.c
341
hi = eaddr[4] | (eaddr[5] << 8);
sys/dev/dwc/dwc1000_core.c
343
WRITE4(sc, MAC_ADDRESS_HIGH(0), hi);
sys/dev/dwc/dwc1000_core.c
357
uint32_t hi, lo, rnd;
sys/dev/dwc/dwc1000_core.c
369
hi = READ4(sc, MAC_ADDRESS_HIGH(0)) & 0xffff;
sys/dev/dwc/dwc1000_core.c
370
if ((lo != 0xffffffff) || (hi != 0xffff)) {
sys/dev/dwc/dwc1000_core.c
375
hwaddr[4] = (hi >> 0) & 0xff;
sys/dev/dwc/dwc1000_core.c
376
hwaddr[5] = (hi >> 8) & 0xff;
sys/dev/ena/ena.h
545
#define clamp_val(val, lo, hi) clamp_t(__typeof(val), val, lo, hi)
sys/dev/etherswitch/arswitch/arswitch_reg.c
131
uint16_t lo, hi;
sys/dev/etherswitch/arswitch/arswitch_reg.c
133
hi = MDIO_READREG(device_get_parent(dev), phy, reg + 1);
sys/dev/etherswitch/arswitch/arswitch_reg.c
135
return (hi << 16) | lo;
sys/dev/etherswitch/arswitch/arswitch_reg.c
143
uint16_t lo, hi;
sys/dev/etherswitch/arswitch/arswitch_reg.c
147
hi = (uint16_t) (value >> 16);
sys/dev/etherswitch/arswitch/arswitch_reg.c
153
phy, reg + 1, hi);
sys/dev/etherswitch/arswitch/arswitch_reg.c
156
phy, reg + 1, hi);
sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c
134
uint32_t low, hi;
sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c
140
hi = mtkswitch_phy_read_locked(sc, MTKSWITCH_GLOBAL_PHY,
sys/dev/etherswitch/mtkswitch/mtkswitch_mt7620.c
142
return (low | (hi << 16));
sys/dev/firewire/firewire.c
1421
__func__, fwdev->eui.hi, fwdev->eui.lo);
sys/dev/firewire/firewire.c
1426
__func__, fwdev->eui.hi, fwdev->eui.lo);
sys/dev/firewire/firewire.c
1618
if (tfwdev->eui.hi > fwdev->eui.hi ||
sys/dev/firewire/firewire.c
1619
(tfwdev->eui.hi == fwdev->eui.hi &&
sys/dev/firewire/firewire.c
667
src->businfo.eui64.hi = fc->eui.hi;
sys/dev/firewire/firewire.h
247
uint32_t hi, lo;
sys/dev/firewire/firewire.h
251
((eui)->hi >> (8 * (3 - (x)))): \
sys/dev/firewire/firewire.h
255
((x).hi == (y).hi && (x).lo == (y).lo)
sys/dev/firewire/firewire.h
58
uint32_t hi;
sys/dev/firewire/fwcrom.c
567
src.businfo.eui64.hi = 0x11223344;
sys/dev/firewire/fwdev.c
721
bindreq->start.hi, bindreq->start.lo);
sys/dev/firewire/fwdev.c
736
if (bindreq->start.hi > 0xffff) {
sys/dev/firewire/fwdev.c
741
fwb->start = ((u_int64_t)bindreq->start.hi << 32) |
sys/dev/firewire/fwdev.c
761
devinfo->eui.hi = fc->eui.hi;
sys/dev/firewire/fwdev.c
769
devinfo->eui.hi = fwdev->eui.hi;
sys/dev/firewire/fwmem.c
361
fms->eui.hi, fms->eui.lo);
sys/dev/firewire/fwmem.c
71
&fwmem_eui64.hi, 0, "Fwmem target EUI64 high");
sys/dev/firewire/fwohci.c
729
sc->fc.eui.hi = OREAD(sc, FWOHCIGUID_H);
sys/dev/firewire/if_fwip.c
175
hwaddr->sender_unique_ID_hi = htonl(fwip->fd.fc->eui.hi);
sys/dev/firewire/if_fwip.c
356
fwip->last_dest.hi = 0;
sys/dev/firewire/if_fwip.c
456
fwip->last_dest.hi = 0;
sys/dev/firewire/if_fwip.c
627
eui.hi = ntohl(destfw->sender_unique_ID_hi);
sys/dev/firewire/if_fwip.c
629
if (fwip->last_dest.hi != eui.hi ||
sys/dev/firewire/if_fwip.c
788
p[0] = htonl(fd->eui.hi);
sys/dev/firewire/if_fwip.c
890
p[0] = htonl(fd->eui.hi);
sys/dev/firewire/sbp.c
2598
ocb->ind_ptr[i].hi = htonl(s->ds_len << 16);
sys/dev/firewire/sbp.c
347
fwdev->eui.hi,
sys/dev/firewire/sbp.c
390
if (wired[i].eui.hi == fwdev->eui.hi &&
sys/dev/firewire/sbp.c
401
target, fwdev->eui.hi, fwdev->eui.lo);
sys/dev/firewire/sbp.c
820
__func__, fwdev->eui.hi, fwdev->eui.lo,
sys/dev/firewire/sbp.h
74
uint32_t hi,lo;
sys/dev/hid/hgame.c
127
HIDMAP_CB_UDATA64 = HID_GET_USAGE(ctx.hi->usage);
sys/dev/hid/hid.c
803
struct hid_item hi;
sys/dev/hid/hid.c
810
while ((err = hid_get_item(hd, &hi))) {
sys/dev/hid/hid.c
811
if (hi.kind == hid_collection &&
sys/dev/hid/hid.c
812
hi.usage == usage)
sys/dev/hid/hid.c
823
hid_item_resolution(struct hid_item *hi)
sys/dev/hid/hid.c
853
switch (hi->unit) {
sys/dev/hid/hid.c
875
if ((hi->logical_maximum <= hi->logical_minimum) ||
sys/dev/hid/hid.c
876
(hi->physical_maximum <= hi->physical_minimum) ||
sys/dev/hid/hid.c
877
(hi->unit_exponent < 0) || (hi->unit_exponent >= nitems(scale)))
sys/dev/hid/hid.c
880
logical_size = (int64_t)hi->logical_maximum -
sys/dev/hid/hid.c
881
(int64_t)hi->logical_minimum;
sys/dev/hid/hid.c
882
physical_size = (int64_t)hi->physical_maximum -
sys/dev/hid/hid.c
883
(int64_t)hi->physical_minimum;
sys/dev/hid/hid.c
885
resolution = logical_size * multiplier * scale[hi->unit_exponent][0] /
sys/dev/hid/hid.c
886
(physical_size * divisor * scale[hi->unit_exponent][1]);
sys/dev/hid/hid.c
907
struct hid_item hi;
sys/dev/hid/hid.c
918
while (hid_get_item(hd, &hi)) {
sys/dev/hid/hid.c
919
switch (hi.kind) {
sys/dev/hid/hid.c
923
else if (hi.collection == 1 &&
sys/dev/hid/hid.c
924
hi.usage ==
sys/dev/hid/hid.c
935
if (hi.usage ==
sys/dev/hid/hid.c
937
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
sys/dev/hid/hid.c
939
if (hi.usage ==
sys/dev/hid/hid.c
941
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
sys/dev/hid/hid.h
333
int32_t hid_item_resolution(struct hid_item *hi);
sys/dev/hid/hidbus.c
217
struct hid_item hi;
sys/dev/hid/hidbus.c
226
while (hid_get_item(hd, &hi)) {
sys/dev/hid/hidbus.c
227
if (hi.kind != hid_collection || hi.collevel != 1)
sys/dev/hid/hidbus.c
235
hidbus_set_usage(child, hi.usage);
sys/dev/hid/hidbus.c
239
HID_GET_USAGE_PAGE(hi.usage), HID_GET_USAGE(hi.usage));
sys/dev/hid/hidbus.h
126
#define HID_VERSION_LTEQ(hi) /* less than or equal */ \
sys/dev/hid/hidbus.h
127
.match_flag_ver_hi = 1, .idVersion_hi = (hi)
sys/dev/hid/hidbus.h
145
#define HIDBUS_FOREACH_ITEM(hd, hi, tlc_index) \
sys/dev/hid/hidbus.h
147
_iter <= (tlc_index) && hid_get_item((hd), (hi)); \
sys/dev/hid/hidbus.h
148
_iter += (hi)->kind == hid_endcollection && (hi)->collevel == 0) \
sys/dev/hid/hidmap.c
183
struct hidmap_hid_item *hi;
sys/dev/hid/hidmap.c
204
for (hi = hm->hid_items; hi < hm->hid_items + hm->nhid_items; hi++) {
sys/dev/hid/hidmap.c
206
if (hi->type == HIDMAP_TYPE_FINALCB) {
sys/dev/hid/hidmap.c
207
DPRINTFN(hm, 6, "type=%d item=%*D\n", hi->type,
sys/dev/hid/hidmap.c
208
(int)sizeof(hi->cb), &hi->cb, " ");
sys/dev/hid/hidmap.c
209
if (hi->cb(hm, hi, (union hidmap_cb_ctx){.rid = id})
sys/dev/hid/hidmap.c
216
if (id != hi->id)
sys/dev/hid/hidmap.c
225
data = hi->lmin < 0 || hi->lmax < 0
sys/dev/hid/hidmap.c
226
? hid_get_data(buf, len, &hi->loc)
sys/dev/hid/hidmap.c
227
: hid_get_udata(buf, len, &hi->loc);
sys/dev/hid/hidmap.c
229
DPRINTFN(hm, 6, "type=%d data=%d item=%*D\n", hi->type, data,
sys/dev/hid/hidmap.c
230
(int)sizeof(hi->cb), &hi->cb, " ");
sys/dev/hid/hidmap.c
232
if (hi->invert_value && hi->type < HIDMAP_TYPE_ARR_LIST)
sys/dev/hid/hidmap.c
233
data = hi->evtype == EV_REL
sys/dev/hid/hidmap.c
235
: hi->lmin + hi->lmax - data;
sys/dev/hid/hidmap.c
237
switch (hi->type) {
sys/dev/hid/hidmap.c
239
if (hi->cb(hm, hi, (union hidmap_cb_ctx){.data = data})
sys/dev/hid/hidmap.c
250
if (data < hi->lmin || data > hi->lmax)
sys/dev/hid/hidmap.c
259
if (data == (hi->evtype == EV_REL ? 0 : hi->last_val))
sys/dev/hid/hidmap.c
261
if (hi->evtype == EV_KEY)
sys/dev/hid/hidmap.c
262
hidmap_push_key(hm, hi->code, data);
sys/dev/hid/hidmap.c
264
evdev_push_event(hm->evdev, hi->evtype,
sys/dev/hid/hidmap.c
265
hi->code, data);
sys/dev/hid/hidmap.c
266
hi->last_val = data;
sys/dev/hid/hidmap.c
275
if (data < hi->lmin || data > hi->lmax)
sys/dev/hid/hidmap.c
282
key = hi->codes[data - hi->lmin];
sys/dev/hid/hidmap.c
294
if (data < hi->lmin || data > hi->lmax)
sys/dev/hid/hidmap.c
302
usage = data - hi->lmin + hi->umin;
sys/dev/hid/hidmap.c
316
if (key == HIDMAP_KEY_NULL || key == hi->last_key)
sys/dev/hid/hidmap.c
318
if (hi->last_key != KEY_RESERVED)
sys/dev/hid/hidmap.c
319
hidmap_push_key(hm, hi->last_key, 0);
sys/dev/hid/hidmap.c
322
hi->last_key = key;
sys/dev/hid/hidmap.c
326
KASSERT(0, ("Unknown map type (%d)", hi->type));
sys/dev/hid/hidmap.c
339
can_map_callback(struct hid_item *hi, const struct hidmap_item *mi,
sys/dev/hid/hidmap.c
344
hi->usage == mi->usage + usage_offset &&
sys/dev/hid/hidmap.c
346
!(hi->flags & HIO_RELATIVE) == !(mi->relabs == HIDMAP_RELATIVE)));
sys/dev/hid/hidmap.c
350
can_map_variable(struct hid_item *hi, const struct hidmap_item *mi,
sys/dev/hid/hidmap.c
354
return ((hi->flags & HIO_VARIABLE) != 0 && !mi->has_cb &&
sys/dev/hid/hidmap.c
355
hi->usage == mi->usage + usage_offset &&
sys/dev/hid/hidmap.c
357
!(hi->flags & HIO_RELATIVE) == !(mi->relabs == HIDMAP_RELATIVE)));
sys/dev/hid/hidmap.c
361
can_map_arr_range(struct hid_item *hi, const struct hidmap_item *mi,
sys/dev/hid/hidmap.c
365
return ((hi->flags & HIO_VARIABLE) == 0 && !mi->has_cb &&
sys/dev/hid/hidmap.c
366
hi->usage_minimum <= mi->usage + usage_offset &&
sys/dev/hid/hidmap.c
367
hi->usage_maximum >= mi->usage + usage_offset &&
sys/dev/hid/hidmap.c
373
can_map_arr_list(struct hid_item *hi, const struct hidmap_item *mi,
sys/dev/hid/hidmap.c
377
return ((hi->flags & HIO_VARIABLE) == 0 && !mi->has_cb &&
sys/dev/hid/hidmap.c
384
hidmap_probe_hid_item(struct hid_item *hi, const struct hidmap_item *map,
sys/dev/hid/hidmap.c
396
if (can_map_callback(hi, map + i, uoff)) {
sys/dev/hid/hidmap.c
398
(union hidmap_cb_ctx){.hi = hi}) != 0)
sys/dev/hid/hidmap.c
405
if (hi->flags & HIO_VARIABLE) {
sys/dev/hid/hidmap.c
407
if (can_map_variable(hi, map + i, uoff)) {
sys/dev/hid/hidmap.c
420
if (hi->usage_minimum != 0 || hi->usage_maximum != 0) {
sys/dev/hid/hidmap.c
422
if (can_map_arr_range(hi, map + i, uoff)) {
sys/dev/hid/hidmap.c
430
for (j = 0; j < hi->nusages; j++) {
sys/dev/hid/hidmap.c
432
if (can_map_arr_list(hi, map+i, hi->usages[j], uoff)) {
sys/dev/hid/hidmap.c
447
struct hid_item hi;
sys/dev/hid/hidmap.c
460
HIDBUS_FOREACH_ITEM(hd, &hi, tlc_index) {
sys/dev/hid/hidmap.c
461
if (hi.kind != hid_input)
sys/dev/hid/hidmap.c
463
if (hi.flags & HIO_CONST)
sys/dev/hid/hidmap.c
465
for (i = 0; i < hi.loc.count; i++, hi.loc.pos += hi.loc.size)
sys/dev/hid/hidmap.c
466
if (hidmap_probe_hid_item(&hi, map, nitems_map, caps))
sys/dev/hid/hidmap.c
538
hidmap_parse_hid_item(struct hidmap *hm, struct hid_item *hi,
sys/dev/hid/hidmap.c
548
if (can_map_callback(hi, mi, uoff)) {
sys/dev/hid/hidmap.c
557
(union hidmap_cb_ctx){.hi = hi}) != 0)
sys/dev/hid/hidmap.c
564
if (hi->flags & HIO_VARIABLE) {
sys/dev/hid/hidmap.c
566
if (can_map_variable(hi, mi, uoff)) {
sys/dev/hid/hidmap.c
569
item->type = hi->flags & HIO_NULLSTATE
sys/dev/hid/hidmap.c
587
hi->logical_minimum,
sys/dev/hid/hidmap.c
588
hi->logical_maximum,
sys/dev/hid/hidmap.c
591
hid_item_resolution(hi));
sys/dev/hid/hidmap.c
607
if (hi->usage_minimum != 0 || hi->usage_maximum != 0) {
sys/dev/hid/hidmap.c
609
if (can_map_arr_range(hi, mi, uoff)) {
sys/dev/hid/hidmap.c
616
item->umin = hi->usage_minimum;
sys/dev/hid/hidmap.c
622
for (i = 0; i < hi->nusages; i++) {
sys/dev/hid/hidmap.c
624
if (can_map_arr_list(hi, mi, hi->usages[i], uoff)) {
sys/dev/hid/hidmap.c
628
hi->nusages * sizeof(uint16_t),
sys/dev/hid/hidmap.c
642
item->id = hi->report_ID;
sys/dev/hid/hidmap.c
643
item->loc = hi->loc;
sys/dev/hid/hidmap.c
645
item->lmin = hi->logical_minimum;
sys/dev/hid/hidmap.c
646
item->lmax = hi->logical_maximum;
sys/dev/hid/hidmap.c
649
hi->usage, hi->report_ID, hi->loc.pos, hi->loc.size, item->type,
sys/dev/hid/hidmap.c
662
struct hid_item hi;
sys/dev/hid/hidmap.c
675
HIDBUS_FOREACH_ITEM(hd, &hi, tlc_index) {
sys/dev/hid/hidmap.c
676
if (hi.kind != hid_input)
sys/dev/hid/hidmap.c
678
if (hi.flags & HIO_CONST)
sys/dev/hid/hidmap.c
680
for (i = 0; i < hi.loc.count; i++, hi.loc.pos += hi.loc.size)
sys/dev/hid/hidmap.c
681
if (hidmap_parse_hid_item(hm, &hi, item))
sys/dev/hid/hidmap.c
806
struct hidmap_hid_item *hi;
sys/dev/hid/hidmap.c
814
for (hi = hm->hid_items;
sys/dev/hid/hidmap.c
815
hi < hm->hid_items + hm->nhid_items;
sys/dev/hid/hidmap.c
816
hi++)
sys/dev/hid/hidmap.c
817
if (hi->type == HIDMAP_TYPE_FINALCB ||
sys/dev/hid/hidmap.c
818
hi->type == HIDMAP_TYPE_CALLBACK)
sys/dev/hid/hidmap.c
819
hi->cb(hm, hi, (union hidmap_cb_ctx){});
sys/dev/hid/hidmap.c
820
else if (hi->type == HIDMAP_TYPE_ARR_LIST)
sys/dev/hid/hidmap.c
821
free(hi->codes, M_DEVBUF);
sys/dev/hid/hidmap.h
53
struct hid_item *hi; /* Probe- and attach-stage callbacks */
sys/dev/hid/hidmap.h
59
struct hidmap *hm, struct hidmap_hid_item *hi, union hidmap_cb_ctx ctx
sys/dev/hid/hidmap.h
71
#define HIDMAP_CB_UDATA (hi->udata)
sys/dev/hid/hidmap.h
72
#define HIDMAP_CB_UDATA64 (hi->udata64)
sys/dev/hid/hms.c
251
struct hidmap_hid_item *hi;
sys/dev/hid/hms.c
298
for (hi = sc->hm.hid_items;
sys/dev/hid/hms.c
299
hi < sc->hm.hid_items + sc->hm.nhid_items;
sys/dev/hid/hms.c
300
hi++) {
sys/dev/hid/hms.c
301
if (hi->type == HIDMAP_TYPE_VARIABLE && hi->evtype == EV_KEY)
sys/dev/hid/hms.c
307
if (hi->type == HIDMAP_TYPE_VARIABLE &&
sys/dev/hid/hms.c
308
hi->evtype == EV_REL && hi->code == REL_WHEEL) {
sys/dev/hid/hms.c
309
sc->wheel_loc = hi->loc;
sys/dev/hid/hms.c
314
if (hi->id != 0)
sys/dev/hid/hmt.c
659
struct hid_item hi;
sys/dev/hid/hmt.c
673
#define HMT_HI_ABSOLUTE(hi) ((hi).nusages != 0 && \
sys/dev/hid/hmt.c
674
((hi).flags & (HIO_VARIABLE | HIO_RELATIVE)) == HIO_VARIABLE)
sys/dev/hid/hmt.c
724
HIDBUS_FOREACH_ITEM(hd, &hi, tlc_index) {
sys/dev/hid/hmt.c
725
switch (hi.kind) {
sys/dev/hid/hmt.c
727
if (hi.collevel == 2 &&
sys/dev/hid/hmt.c
728
hi.usage == HID_USAGE2(HUP_DIGITIZERS, HUD_FINGER))
sys/dev/hid/hmt.c
732
if (hi.collevel == 1 && finger_coll) {
sys/dev/hid/hmt.c
741
if (HMT_HI_ABSOLUTE(hi) &&
sys/dev/hid/hmt.c
742
(report_id == 0 || report_id == hi.report_ID))
sys/dev/hid/hmt.c
743
report_id = hi.report_ID;
sys/dev/hid/hmt.c
748
hi.usage == HID_USAGE2(HUP_BUTTON, 1)) {
sys/dev/hid/hmt.c
750
sc->int_btn_loc = hi.loc;
sys/dev/hid/hmt.c
753
if (hi.usage >= HID_USAGE2(HUP_BUTTON, left_btn) &&
sys/dev/hid/hmt.c
754
hi.usage <= HID_USAGE2(HUP_BUTTON, HMT_BTN_MAX)) {
sys/dev/hid/hmt.c
755
btn = (hi.usage & 0xFFFF) - left_btn;
sys/dev/hid/hmt.c
757
sc->btn_loc[btn] = hi.loc;
sys/dev/hid/hmt.c
762
if (hi.usage ==
sys/dev/hid/hmt.c
765
sc->cont_count_loc = hi.loc;
sys/dev/hid/hmt.c
768
if (hi.usage ==
sys/dev/hid/hmt.c
771
sc->scan_time_loc = hi.loc;
sys/dev/hid/hmt.c
772
sc->scan_time_max = hi.logical_maximum;
sys/dev/hid/hmt.c
776
if (!finger_coll || hi.collevel != 2)
sys/dev/hid/hmt.c
784
if (hi.usage == hmt_hid_map[i].usage) {
sys/dev/hid/hmt.c
793
sc->locs[cont][i] = hi.loc;
sys/dev/hid/hmt.c
803
.max = hi.logical_maximum,
sys/dev/hid/hmt.c
804
.min = hi.logical_minimum,
sys/dev/hid/hmt.c
805
.res = hid_item_resolution(&hi),
sys/dev/hid/ps4dshock.c
832
if (sc->calib_data[i].usage == ctx.hi->usage) {
sys/dev/iscsi/icl.c
209
#define OUT_OF_RANGE(x, lo, hi) ((x) != 0 && ((x) < (lo) || (x) > (hi)))
sys/dev/iwn/if_iwn.c
2317
printf("chan lo=%d, chan hi=%d\n", band->lo, band->hi);
sys/dev/iwn/if_iwn.c
5742
sc->bands[i].lo <= chan && chan <= sc->bands[i].hi)
sys/dev/iwn/if_iwnreg.h
1957
uint8_t hi; /* high channel number */
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
479
int hi;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
487
for_each_l2hash_node(node, tmp, hash, hi) {
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
515
int hi;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
527
for_each_l2hash_node(node, tmp, hash, hi) {
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
940
int hi;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
942
for_each_l2hash_node(node, tmp, vport->uc_list, hi) {
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
948
for_each_l2hash_node(node, tmp, vport->mc_list, hi) {
sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c
1044
int hi;
sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c
1053
mlx5e_for_each_hash_node(hn, tmp, addr_list, hi) {
sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c
1073
int hi;
sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c
1081
mlx5e_for_each_hash_node(hn, tmp, addr_list, hi)
sys/dev/mlx5/mlx5_ifc.h
621
u8 hi[0x18];
sys/dev/mlx5/mlx5_ifc.h
815
u8 hi[0x20];
sys/dev/mpt/mpilib/mpi_targ.h
638
#define SET_HOST_INDEX_0100(t, hi) \
sys/dev/mpt/mpilib/mpi_targ.h
640
(((hi) << TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX) & \
sys/dev/mthca/mthca_doorbell.h
59
static inline void mthca_write64(u32 hi, u32 lo, void __iomem *dest,
sys/dev/mthca/mthca_doorbell.h
62
__raw_writeq((__force u64) cpu_to_be64((u64) hi << 32 | lo), dest);
sys/dev/mthca/mthca_doorbell.h
88
static inline void mthca_write64(u32 hi, u32 lo, void __iomem *dest,
sys/dev/mthca/mthca_doorbell.h
93
hi = (__force u32) cpu_to_be32(hi);
sys/dev/mthca/mthca_doorbell.h
97
__raw_writel(hi, dest);
sys/dev/netmap/netmap.c
687
nm_bound_var(u_int *v, u_int dflt, u_int lo, u_int hi, const char *msg)
sys/dev/netmap/netmap.c
694
if (dflt > hi)
sys/dev/netmap/netmap.c
695
dflt = hi;
sys/dev/netmap/netmap.c
699
} else if (oldv > hi) {
sys/dev/netmap/netmap.c
700
*v = hi;
sys/dev/netmap/netmap_kern.h
1533
u_int nm_bound_var(u_int *v, u_int dflt, u_int lo, u_int hi, const char *msg);
sys/dev/oce/oce_hw.h
277
uint32_t hi;
sys/dev/oce/oce_hw.h
524
uint32_t hi:1;
sys/dev/oce/oce_hw.h
528
uint32_t hi:1;
sys/dev/oce/oce_mbox.c
196
mbox_db.bits.hi = 1;
sys/dev/oce/oce_mbox.c
205
mbox_db.bits.hi = 0;
sys/dev/oce/oce_util.c
226
dpt->paddrs[i].hi = ADDR_HI(segs[i].ds_addr);
sys/dev/ofw/ofw_pci.h
85
#define OFW_PCI_PHYS_HI_BUS(hi) \
sys/dev/ofw/ofw_pci.h
86
(((hi) & OFW_PCI_PHYS_HI_BUSMASK) >> OFW_PCI_PHYS_HI_BUSSHIFT)
sys/dev/ofw/ofw_pci.h
87
#define OFW_PCI_PHYS_HI_DEVICE(hi) \
sys/dev/ofw/ofw_pci.h
88
(((hi) & OFW_PCI_PHYS_HI_DEVICEMASK) >> OFW_PCI_PHYS_HI_DEVICESHIFT)
sys/dev/ofw/ofw_pci.h
89
#define OFW_PCI_PHYS_HI_FUNCTION(hi) \
sys/dev/ofw/ofw_pci.h
90
(((hi) & OFW_PCI_PHYS_HI_FUNCTIONMASK) >> OFW_PCI_PHYS_HI_FUNCTIONSHIFT)
sys/dev/qat_c2xxx/qatvar.h
1011
uint32_t lo, hi;
sys/dev/qat_c2xxx/qatvar.h
1014
hi = (uint32_t)((value & 0xffffffff00000000ULL) >> 32);
sys/dev/qat_c2xxx/qatvar.h
1016
qat_etr_bank_ring_write_4(sc, bank, ring, ETR_RING_UBASE, hi);
sys/dev/qlnx/qlnxe/common_hsi.h
732
__le32 hi /* high word for reg-pair */;
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
1819
return a->hi == b->hi ? a->lo - b->lo : b->lo - a->lo;
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
2577
next_wr_phys_addr.hi = ecore_rd(p_hwfn, p_ptt, DBG_REG_EXT_BUFFER_WR_PTR + BYTES_IN_DWORD);
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
5013
dev_data->bus.pci_buf.virt_addr.hi = (u32)((u64)(osal_uintptr_t)pci_buf >> 32);
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
5016
ecore_wr(p_hwfn, p_ptt, DBG_REG_PCI_EXT_BUFFER_STRT_ADDR_MSB, dev_data->bus.pci_buf.phys_addr.hi);
sys/dev/qlnx/qlnxe/ecore_hsi_debug_tools.h
634
u32 hi;
sys/dev/qlnx/qlnxe/ecore_hsi_eth.h
2931
__le32 hi;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
328
p_ramrod->qp_handle_for_cqe.hi = OSAL_CPU_TO_LE32(qp->qp_handle.hi);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3621
ep = (struct ecore_iwarp_ep *)(osal_uintptr_t)HILO_64(fw_handle->hi,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
787
p_tcp_ramrod->iwarp.incoming_ulp_buffer.addr.hi =
sys/dev/qlnx/qlnxe/ecore_iwarp.c
797
p_tcp_ramrod->iwarp.async_eqe_output_buf.hi =
sys/dev/qlnx/qlnxe/ecore_iwarp.c
801
p_tcp_ramrod->iwarp.handle_for_async.hi = OSAL_CPU_TO_LE32(PTR_HI(ep));
sys/dev/qlnx/qlnxe/ecore_iwarp.c
920
p_mpa_ramrod->common.outgoing_ulp_buffer.addr.hi =
sys/dev/qlnx/qlnxe/ecore_iwarp.c
936
p_mpa_ramrod->incoming_ulp_buffer.addr.hi =
sys/dev/qlnx/qlnxe/ecore_iwarp.c
944
p_mpa_ramrod->async_eqe_output_buf.hi =
sys/dev/qlnx/qlnxe/ecore_iwarp.c
948
p_mpa_ramrod->handle_for_async.hi = OSAL_CPU_TO_LE32(PTR_HI(ep));
sys/dev/qlnx/qlnxe/ecore_iwarp.c
952
p_mpa_ramrod->shared_queue_addr.hi =
sys/dev/qlnx/qlnxe/ecore_ll2.c
1720
OSAL_LE32_TO_CPU(start_bd->addr.hi),
sys/dev/qlnx/qlnxe/ecore_rdma.c
1334
p_ramrod->cq_handle.hi = OSAL_CPU_TO_LE32(params->cq_handle_hi);
sys/dev/qlnx/qlnxe/ecore_rdma.c
1574
qp->qp_handle.hi = OSAL_CPU_TO_LE32(in_params->qp_handle_hi);
sys/dev/qlnx/qlnxe/ecore_rdma.c
1576
qp->qp_handle_async.hi = OSAL_CPU_TO_LE32(in_params->qp_handle_async_hi);
sys/dev/qlnx/qlnxe/ecore_rdma.c
1898
p_ramrod->va.hi = 0;
sys/dev/qlnx/qlnxe/ecore_rdma.c
2189
p_ramrod->pbl_base_addr.hi = DMA_HI_LE(in_params->pbl_base_addr);
sys/dev/qlnx/qlnxe/ecore_rdma.c
2195
p_ramrod->producers_addr.hi = DMA_HI_LE(in_params->prod_pair_addr);
sys/dev/qlnx/qlnxe/ecore_rdma.c
2309
p_ramrod->pbl_addr.hi = DMA_HI_LE(in_params->pbl_ptr);
sys/dev/qlnx/qlnxe/ecore_rdma.c
2312
p_ramrod->output_params_addr.hi = DMA_HI_LE(ramrod_res_phys);
sys/dev/qlnx/qlnxe/ecore_rdma.c
879
p_ramrod->cnq_params[cnq_id].pbl_base_addr.hi =
sys/dev/qlnx/qlnxe/ecore_roce.c
492
p_ramrod->qp_handle_for_async.hi =
sys/dev/qlnx/qlnxe/ecore_roce.c
493
OSAL_CPU_TO_LE32(qp->qp_handle_async.hi);
sys/dev/qlnx/qlnxe/ecore_roce.c
496
p_ramrod->qp_handle_for_cqe.hi = OSAL_CPU_TO_LE32(qp->qp_handle.hi);
sys/dev/qlnx/qlnxe/ecore_roce.c
650
p_ramrod->qp_handle_for_async.hi =
sys/dev/qlnx/qlnxe/ecore_roce.c
651
OSAL_CPU_TO_LE32(qp->qp_handle_async.hi);
sys/dev/qlnx/qlnxe/ecore_roce.c
654
p_ramrod->qp_handle_for_cqe.hi = OSAL_CPU_TO_LE32(qp->qp_handle.hi);
sys/dev/qlnx/qlnxe/ecore_spq.c
254
p_ent->elem.data_ptr.hi, p_ent->elem.data_ptr.lo,
sys/dev/qlnx/qlnxe/ecore_sriov.c
4311
p_vf->vf_mbx.pending_req = (((u64)vf_msg->hi) << 32) |
sys/dev/qlnx/qlnxe/ecore_utils.h
48
#define DMA_REGPAIR_LE(x, val) (x).hi = DMA_HI_LE((val)); \
sys/dev/qlnx/qlnxe/ecore_utils.h
51
#define HILO_GEN(hi, lo, type) ((((type)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxe/ecore_utils.h
52
#define HILO_DMA(hi, lo) HILO_GEN(hi, lo, dma_addr_t)
sys/dev/qlnx/qlnxe/ecore_utils.h
53
#define HILO_64(hi, lo) HILO_GEN(hi, lo, u64)
sys/dev/qlnx/qlnxe/ecore_utils.h
54
#define HILO_DMA_REGPAIR(regpair) (HILO_DMA(regpair.hi, regpair.lo))
sys/dev/qlnx/qlnxe/ecore_utils.h
55
#define HILO_64_REGPAIR(regpair) (HILO_64(regpair.hi, regpair.lo))
sys/dev/qlnx/qlnxe/ecore_vf.c
155
(osal_uintptr_t)&zone_data->non_trigger.vf_pf_msg_addr.hi,
sys/dev/qlnx/qlnxe/mcp_public.h
475
u32 hi;
sys/dev/qlnx/qlnxe/qlnx_def.h
163
#define BD_UNMAP_ADDR(bd) HILO_U64(le32toh((bd)->addr.hi), \
sys/dev/qlnx/qlnxe/qlnx_def.h
169
(bd)->addr.hi = htole32(U64_HI(maddr)); \
sys/dev/qlnx/qlnxe/qlnx_def.h
60
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxe/qlnx_os.c
3894
rx_bd->addr.hi = htole32(U64_HI(sw_rx_data->dma_addr));
sys/dev/qlnx/qlnxe/qlnx_os.c
5933
rx_bd->addr.hi = htole32(U64_HI(dma_addr));
sys/dev/qlnx/qlnxr/qlnxr_def.h
194
#define convert_to_64bit(lo, hi) ((u64)hi << 32 | (u64)lo)
sys/dev/qlnx/qlnxr/qlnxr_os.c
292
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxr/qlnxr_os.c
321
cq = (struct qlnxr_cq *)(uintptr_t)HILO_U64(cq_handle->hi,
sys/dev/qlnx/qlnxr/qlnxr_os.c
547
u64 roceHandle64 = ((u64)async_handle->hi << 32) + async_handle->lo;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1335
pbe->hi =
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1344
" pbe=%p\n", pbe->lo, pbe->hi, pbe_cnt,
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
37
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
41
(type_ptr)->field.hi = cpu_to_le32(upper_32_bits(vaddr));\
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4141
fwqe1->addr.hi = upper_32_bits(mr->ibmr.iova);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4163
fwqe2->pbl_addr.hi = upper_32_bits(mr->info.pbl_table->pa);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
443
srq_sge->addr.hi, srq_sge->addr.lo);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4693
rqe->addr.hi = 0;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5021
wr_id = HILO_U64(resp->srq_wr_id.hi, resp->srq_wr_id.lo);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5251
qp = (struct qlnxr_qp *)(uintptr_t)HILO_U64(resp_cqe->qp_handle.hi,
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5489
pbe->hi = cpu_to_le32((u32)upper_32_bits(addr));
sys/dev/ral/rt2661.c
2495
int lo, hi, dbm;
sys/dev/ral/rt2661.c
2507
hi = lo + 0x20;
sys/dev/ral/rt2661.c
2515
bbp17 = hi;
sys/dev/ral/rt2661.c
2525
hi -= 2 * (-74 - dbm);
sys/dev/ral/rt2661.c
2526
if (hi < lo)
sys/dev/ral/rt2661.c
2527
hi = lo;
sys/dev/ral/rt2661.c
2529
if (bbp17 > hi) {
sys/dev/ral/rt2661.c
2530
bbp17 = hi;
sys/dev/ral/rt2661.c
2533
if (++bbp17 > hi)
sys/dev/ral/rt2661.c
2534
bbp17 = hi;
sys/dev/sound/pci/maestro3.c
1062
u_int32_t hi, lo, bus_base, bus_crnt;
sys/dev/sound/pci/maestro3.c
1065
hi = m3_rd_assp_data(sc, ch->adc_data + CDATA_HOST_SRC_CURRENTH);
sys/dev/sound/pci/maestro3.c
1067
bus_crnt = lo | (hi << 16);
sys/dev/sound/pci/maestro3.c
710
u_int32_t hi, lo, bus_base, bus_crnt;
sys/dev/sound/pci/maestro3.c
713
hi = m3_rd_assp_data(sc, ch->dac_data + CDATA_HOST_SRC_CURRENTH);
sys/dev/sound/pci/maestro3.c
715
bus_crnt = lo | (hi << 16);
sys/dev/sound/pcm/feeder_rate.c
311
uint32_t hi, lo, quo, rem;
sys/dev/sound/pcm/feeder_rate.c
313
hi = v >> 32;
sys/dev/sound/pcm/feeder_rate.c
319
if (hi == 0)
sys/dev/sound/pcm/feeder_rate.c
324
: "r" (d), "0" (lo), "1" (hi));
sys/dev/thunderbolt/hcm.c
212
newr.hi = rsc->route.hi;
sys/dev/thunderbolt/hcm.c
216
newr.hi, newr.lo);
sys/dev/thunderbolt/router.c
158
sc->route.hi, sc->route.lo, parent->route.hi,
sys/dev/thunderbolt/router.c
166
"of 0x%02x and depth of %d\n", sc->route.hi, sc->route.lo,
sys/dev/thunderbolt/router.c
184
"0x%08x%08x\n", sc->route.hi, sc->route.lo, parent->route.hi,
sys/dev/thunderbolt/router.c
315
sc->route.hi, sc->route.lo);
sys/dev/thunderbolt/router.c
475
msg->route.hi = sc->route.hi;
sys/dev/thunderbolt/router.c
666
route.hi = be32toh(write->route.hi);
sys/dev/thunderbolt/router.c
670
route.hi = be32toh(read->route.hi);
sys/dev/thunderbolt/router.c
677
if ((route.hi & 0x80000000) == 0)
sys/dev/thunderbolt/router.c
679
route.hi &= ~0x80000000;
sys/dev/thunderbolt/router.c
682
route.hi, route.lo);
sys/dev/thunderbolt/router.c
692
"inflight_cmd= %p\n", device_get_nameunit(dev->dev), dev->route.hi,
sys/dev/thunderbolt/router.c
728
event.route.hi = be32toh(nhicmd->data[0]);
sys/dev/thunderbolt/router.c
736
event.route.hi, event.route.lo, adap,
sys/dev/thunderbolt/router.c
89
remainder_rt = search_rt = route.lo | ((uint64_t)route.hi << 32);
sys/dev/thunderbolt/router_var.h
115
((uint64_t)(router)->route.hi << 32) | (router)->route.lo
sys/dev/thunderbolt/tb_reg.h
48
uint32_t hi;
sys/dev/usb/input/wmt.c
731
struct hid_item hi;
sys/dev/usb/input/wmt.c
745
#define WMT_HI_ABSOLUTE(hi) \
sys/dev/usb/input/wmt.c
746
(((hi).flags & (HIO_CONST|HIO_VARIABLE|HIO_RELATIVE)) == HIO_VARIABLE)
sys/dev/usb/input/wmt.c
751
while (hid_get_item(hd, &hi)) {
sys/dev/usb/input/wmt.c
752
switch (hi.kind) {
sys/dev/usb/input/wmt.c
754
if (hi.collevel == 1 && hi.usage ==
sys/dev/usb/input/wmt.c
761
if (hi.collevel == 1 && hi.usage ==
sys/dev/usb/input/wmt.c
769
if (hi.collevel == 0 && touch_coll)
sys/dev/usb/input/wmt.c
773
if (hi.collevel == 1 && touch_coll && hi.usage ==
sys/dev/usb/input/wmt.c
775
sc->thqa_cert_rid = hi.report_ID;
sys/dev/usb/input/wmt.c
778
if (hi.collevel == 1 && touch_coll && hi.usage ==
sys/dev/usb/input/wmt.c
780
cont_count_max = hi.logical_maximum;
sys/dev/usb/input/wmt.c
781
sc->cont_max_rid = hi.report_ID;
sys/dev/usb/input/wmt.c
782
sc->cont_max_loc = hi.loc;
sys/dev/usb/input/wmt.c
785
if (hi.collevel == 1 && touch_coll && hi.usage ==
sys/dev/usb/input/wmt.c
787
sc->btn_type_rid = hi.report_ID;
sys/dev/usb/input/wmt.c
788
sc->btn_type_loc = hi.loc;
sys/dev/usb/input/wmt.c
807
while (hid_get_item(hd, &hi)) {
sys/dev/usb/input/wmt.c
808
switch (hi.kind) {
sys/dev/usb/input/wmt.c
810
if (hi.collevel == 1 && hi.usage ==
sys/dev/usb/input/wmt.c
813
else if (touch_coll && hi.collevel == 2 &&
sys/dev/usb/input/wmt.c
814
(report_id == 0 || report_id == hi.report_ID) &&
sys/dev/usb/input/wmt.c
815
hi.usage == HID_USAGE2(HUP_DIGITIZERS, HUD_FINGER))
sys/dev/usb/input/wmt.c
819
if (hi.collevel == 1 && finger_coll) {
sys/dev/usb/input/wmt.c
822
} else if (hi.collevel == 0 && touch_coll)
sys/dev/usb/input/wmt.c
830
if (WMT_HI_ABSOLUTE(hi) && touch_coll &&
sys/dev/usb/input/wmt.c
831
(report_id == 0 || report_id == hi.report_ID))
sys/dev/usb/input/wmt.c
832
report_id = hi.report_ID;
sys/dev/usb/input/wmt.c
836
if (hi.collevel == 1 && left_btn == 2 &&
sys/dev/usb/input/wmt.c
837
hi.usage == HID_USAGE2(HUP_BUTTON, 1)) {
sys/dev/usb/input/wmt.c
839
sc->int_btn_loc = hi.loc;
sys/dev/usb/input/wmt.c
842
if (hi.collevel == 1 &&
sys/dev/usb/input/wmt.c
843
hi.usage >= HID_USAGE2(HUP_BUTTON, left_btn) &&
sys/dev/usb/input/wmt.c
844
hi.usage <= HID_USAGE2(HUP_BUTTON, WMT_BTN_MAX)) {
sys/dev/usb/input/wmt.c
845
btn = (hi.usage & 0xFFFF) - left_btn;
sys/dev/usb/input/wmt.c
847
sc->btn_loc[btn] = hi.loc;
sys/dev/usb/input/wmt.c
852
if (hi.collevel == 1 && hi.usage ==
sys/dev/usb/input/wmt.c
855
sc->cont_count_loc = hi.loc;
sys/dev/usb/input/wmt.c
859
if (hi.collevel == 1 && hi.usage ==
sys/dev/usb/input/wmt.c
862
sc->scan_time_loc = hi.loc;
sys/dev/usb/input/wmt.c
863
sc->scan_time_max = hi.logical_maximum;
sys/dev/usb/input/wmt.c
867
if (!finger_coll || hi.collevel != 2)
sys/dev/usb/input/wmt.c
875
if (hi.usage == wmt_hid_map[i].usage) {
sys/dev/usb/input/wmt.c
884
sc->locs[cont][i] = hi.loc;
sys/dev/usb/input/wmt.c
894
.max = hi.logical_maximum,
sys/dev/usb/input/wmt.c
895
.min = hi.logical_minimum,
sys/dev/usb/input/wmt.c
896
.res = hid_item_resolution(&hi),
sys/dev/usb/usbdi.h
372
#define USB_DEV_BCD_LTEQ(hi) /* less than or equal */ \
sys/dev/usb/usbdi.h
373
.match_flag_dev_hi = 1, .bcdDevice_hi = (hi)
sys/dev/vmm/vmm_mem.c
31
vm_mem_init(struct vm_mem *mem, vm_offset_t lo, vm_offset_t hi)
sys/dev/vmm/vmm_mem.c
33
mem->mem_vmspace = vmmops_vmspace_alloc(lo, hi);
sys/dev/vmm/vmm_mem.h
66
int vm_mem_init(struct vm_mem *mem, vm_offset_t lo, vm_offset_t hi);
sys/fs/ext2fs/ext2_csum.c
491
uint32_t hi, provided, calculated;
sys/fs/ext2fs/ext2_csum.c
501
hi = le16toh(fs->e2fs_gd[cg].ext4bgd_i_bmap_csum_hi);
sys/fs/ext2fs/ext2_csum.c
502
provided |= (hi << 16);
sys/fs/ext2fs/ext2_csum.c
532
uint32_t hi, provided, calculated, size;
sys/fs/ext2fs/ext2_csum.c
542
hi = le16toh(fs->e2fs_gd[cg].ext4bgd_b_bmap_csum_hi);
sys/fs/ext2fs/ext2_csum.c
543
provided |= (hi << 16);
sys/fs/ext2fs/ext2_csum.c
619
uint32_t hi, provided, calculated;
sys/fs/ext2fs/ext2_csum.c
631
hi = le16toh(ei->e2di_chksum_hi);
sys/fs/ext2fs/ext2_csum.c
632
provided |= hi << 16;
sys/fs/nfsserver/nfs_nfsdport.c
352
int hi, try;
sys/fs/nfsserver/nfs_nfsdport.c
356
hi = ((int)(vm_offset_t)vp / sizeof(struct vnode)) % NUM_HEURISTIC;
sys/fs/nfsserver/nfs_nfsdport.c
357
nh = &nfsheur[hi];
sys/fs/nfsserver/nfs_nfsdport.c
359
if (nfsheur[hi].nh_vp == vp) {
sys/fs/nfsserver/nfs_nfsdport.c
360
nh = &nfsheur[hi];
sys/fs/nfsserver/nfs_nfsdport.c
363
if (nfsheur[hi].nh_use > 0)
sys/fs/nfsserver/nfs_nfsdport.c
364
--nfsheur[hi].nh_use;
sys/fs/nfsserver/nfs_nfsdport.c
365
hi = (hi + 1) % NUM_HEURISTIC;
sys/fs/nfsserver/nfs_nfsdport.c
366
if (nfsheur[hi].nh_use < nh->nh_use)
sys/fs/nfsserver/nfs_nfsdport.c
367
nh = &nfsheur[hi];
sys/i386/i386/npx.c
105
uint32_t low, hi;
sys/i386/i386/npx.c
108
hi = mask >> 32;
sys/i386/i386/npx.c
109
__asm __volatile("xsave %0" : "=m" (*addr) : "a" (low), "d" (hi) :
sys/i386/i386/npx.c
116
uint32_t low, hi;
sys/i386/i386/npx.c
119
hi = mask >> 32;
sys/i386/i386/npx.c
120
__asm __volatile("xsaveopt %0" : "=m" (*addr) : "a" (low), "d" (hi) :
sys/i386/i386/npx.c
95
uint32_t low, hi;
sys/i386/i386/npx.c
98
hi = mask >> 32;
sys/i386/i386/npx.c
99
__asm __volatile("xrstor %0" : : "m" (*addr), "a" (low), "d" (hi));
sys/i386/include/xen/hypercall.h
256
uint32_t hi, lo;
sys/i386/include/xen/hypercall.h
259
hi = (uint32_t)(new_val >> 32);
sys/i386/include/xen/hypercall.h
262
lo, hi, flags);
sys/i386/include/xen/hypercall.h
304
uint32_t hi, lo;
sys/i386/include/xen/hypercall.h
307
hi = (uint32_t)(new_val >> 32);
sys/i386/include/xen/hypercall.h
310
lo, hi, flags, domid);
sys/kern/kern_uuid.c
162
uuid.time.x.hi = ((uint16_t)(time >> 48) & 0xfff) | (1 << 12);
sys/kern/kern_uuid.c
278
id->time.x.low, id->time.x.mid, id->time.x.hi, be16toh(id->seq),
sys/kern/kern_uuid.c
65
uint16_t hi;
sys/kern/subr_blist.c
430
int hi, lo, mid;
sys/kern/subr_blist.c
446
hi = 1;
sys/kern/subr_blist.c
447
while (hi < nitems(fib) && fib[hi] <= size) {
sys/kern/subr_blist.c
448
lo = hi;
sys/kern/subr_blist.c
449
hi *= 2;
sys/kern/subr_blist.c
451
if (hi >= nitems(fib))
sys/kern/subr_blist.c
452
hi = nitems(fib);
sys/kern/subr_blist.c
453
while (lo + 1 != hi) {
sys/kern/subr_blist.c
454
mid = (lo + hi) >> 1;
sys/kern/subr_blist.c
458
hi = mid;
sys/kern/subr_blist.c
672
int bighint, count1, hi, lo, num_shifts;
sys/kern/subr_blist.c
726
hi = bitpos(mask & (mask + 1)) + count1;
sys/kern/subr_blist.c
727
if (maxcount < hi - lo)
sys/kern/subr_blist.c
728
hi = lo + maxcount;
sys/kern/subr_blist.c
729
*count = hi - lo;
sys/kern/subr_blist.c
733
hi = lo + maxcount;
sys/kern/subr_blist.c
736
if (hi == BLIST_RADIX)
sys/kern/subr_blist.c
742
hi = blst_next_leaf_alloc(scan, blk, count1, maxcount);
sys/kern/subr_blist.c
743
if (hi < count1)
sys/kern/subr_blist.c
753
*count = BLIST_RADIX - lo + hi;
sys/net80211/ieee80211_crypto_tkip.c
542
static __inline u16 Mk16(u8 hi, u8 lo)
sys/net80211/ieee80211_crypto_tkip.c
544
return lo | (((u16) hi) << 8);
sys/netpfil/ipfw/dn_sched.h
162
int ipdn_bound_var(int *v, int dflt, int lo, int hi, const char *msg);
sys/netpfil/ipfw/ip_dummynet.c
166
ipdn_bound_var(int *v, int dflt, int lo, int hi, const char *msg)
sys/netpfil/ipfw/ip_dummynet.c
172
if (dflt > hi)
sys/netpfil/ipfw/ip_dummynet.c
173
dflt = hi;
sys/netpfil/ipfw/ip_dummynet.c
177
} else if (oldv > hi) {
sys/netpfil/ipfw/ip_dummynet.c
178
*v = hi;
sys/netpfil/ipfw/ip_fw_sockopt.c
224
int i, lo, hi;
sys/netpfil/ipfw/ip_fw_sockopt.c
227
for (lo = 0, hi = chain->n_rules - 1; lo < hi;) {
sys/netpfil/ipfw/ip_fw_sockopt.c
228
i = (lo + hi) / 2;
sys/netpfil/ipfw/ip_fw_sockopt.c
233
hi = i; /* this might be good */
sys/netpfil/ipfw/ip_fw_sockopt.c
237
hi = i; /* this might be good */
sys/netpfil/ipfw/ip_fw_sockopt.c
239
return hi;
sys/netpfil/ipfw/ip_fw_sockopt.c
2613
struct opcode_obj_rewrite *ctl3_max, *lo, *hi, h, *rw;
sys/netpfil/ipfw/ip_fw_sockopt.c
2629
hi = rw;
sys/netpfil/ipfw/ip_fw_sockopt.c
2631
for ( ; (hi + 1) < ctl3_max && (hi + 1)->opcode == op; hi++)
sys/netpfil/ipfw/ip_fw_sockopt.c
2635
*phi = hi;
sys/netpfil/ipfw/ip_fw_sockopt.c
2648
struct opcode_obj_rewrite *rw, *lo, *hi;
sys/netpfil/ipfw/ip_fw_sockopt.c
2652
if (find_op_rw_range(cmd->opcode, &lo, &hi) != 0)
sys/netpfil/ipfw/ip_fw_sockopt.c
2655
for (rw = lo; rw <= hi; rw++) {
sys/netpfil/ipfw/ip_fw_sockopt.c
2747
struct opcode_obj_rewrite *ctl3_max, *ktmp, *lo, *hi;
sys/netpfil/ipfw/ip_fw_sockopt.c
2753
if (find_op_rw_range(rw[i].opcode, &lo, &hi) != 0)
sys/netpfil/ipfw/ip_fw_sockopt.c
2756
for (ktmp = lo; ktmp <= hi; ktmp++) {
sys/netpfil/ipfw/test/test_dn_sched.c
72
ipdn_bound_var(int *v, int dflt, int lo, int hi, const char *msg)
sys/netpfil/ipfw/test/test_dn_sched.c
77
} else if (*v > hi) {
sys/netpfil/ipfw/test/test_dn_sched.c
78
*v = hi;
sys/netpfil/pf/pf.c
3645
pf_patch_8(struct pf_pdesc *pd, u_int8_t *f, u_int8_t v, bool hi)
sys/netpfil/pf/pf.c
3650
uint16_t old = htons(hi ? (*f << 8) : *f);
sys/netpfil/pf/pf.c
3651
uint16_t new = htons(hi ? ( v << 8) : v);
sys/netpfil/pf/pf.c
3667
pf_patch_16(struct pf_pdesc *pd, void *f, u_int16_t v, bool hi)
sys/netpfil/pf/pf.c
3673
rewrite += pf_patch_8(pd, fb++, *vb++, hi);
sys/netpfil/pf/pf.c
3674
rewrite += pf_patch_8(pd, fb++, *vb++, !hi);
sys/netpfil/pf/pf.c
3680
pf_patch_32(struct pf_pdesc *pd, void *f, u_int32_t v, bool hi)
sys/netpfil/pf/pf.c
3686
rewrite += pf_patch_8(pd, fb++, *vb++, hi);
sys/netpfil/pf/pf.c
3687
rewrite += pf_patch_8(pd, fb++, *vb++, !hi);
sys/netpfil/pf/pf.c
3688
rewrite += pf_patch_8(pd, fb++, *vb++, hi);
sys/netpfil/pf/pf.c
3689
rewrite += pf_patch_8(pd, fb++, *vb++, !hi);
sys/powerpc/cpufreq/pcr.c
109
register_t hi, lo, scratch;
sys/powerpc/cpufreq/pcr.c
118
hi = (value >> 32) & 0xffffffff;
sys/powerpc/cpufreq/pcr.c
120
mtspr64(SPR_SCOMD, hi, lo, scratch);
sys/sys/tree.h
933
#define _RB_ORDER_CHECK(cmp, lo, hi) do { \
sys/sys/tree.h
934
KASSERT((cmp)(lo, hi) < 0, ("out of order insertion")); \
sys/sys/tree.h
937
#define _RB_ORDER_CHECK(cmp, lo, hi) do {} while (0)
sys/vm/vm_map.c
1157
vm_map_entry_t hi, right, y;
sys/vm/vm_map.c
1160
hi = root->right == right ? NULL : root->right;
sys/vm/vm_map.c
1161
if (hi == NULL)
sys/vm/vm_map.c
1164
SPLAY_LEFT_STEP(hi, y, root, right, true);
sys/vm/vm_map.c
1165
while (hi != NULL);
sys/vm/vm_phys.h
114
u_int hi, lo, mid;
sys/vm/vm_phys.h
117
hi = vm_phys_nsegs;
sys/vm/vm_phys.h
118
while (lo != hi) {
sys/vm/vm_phys.h
123
mid = lo + (hi - lo) / 2;
sys/vm/vm_phys.h
127
hi = mid;
sys/vm/vm_reserv.c
1239
int hi, int ppn_align, int ppn_bound)
sys/vm/vm_reserv.c
1253
while (bit_ffc_area_at(rv->popmap, lo, hi, npages, &lo), lo != -1) {
sys/vm/vm_reserv.c
1281
int hi, lo, posn, ppn_align, ppn_bound;
sys/vm/vm_reserv.c
1344
hi = (pa + VM_LEVEL_0_SIZE <= high) ? VM_LEVEL_0_NPAGES :
sys/vm/vm_reserv.c
1346
posn = vm_reserv_find_contig(rv, (int)npages, lo, hi,
sys/x86/include/pvclock.h
94
: [lo]"=a" (product), [hi]"=d" (tmp)
sys/x86/iommu/amd_intrmap.c
208
bool edge, bool activehi, int irq, u_int *cookie, uint32_t *hi,
sys/x86/iommu/amd_iommu.h
204
bool edge, bool activehi, int irq, u_int *cookie, uint32_t *hi,
sys/x86/iommu/intel_dmar.h
263
bool activehi, int irq, u_int *cookie, uint32_t *hi, uint32_t *lo);
sys/x86/iommu/intel_dmar.h
338
uint32_t hi, lo;
sys/x86/iommu/intel_dmar.h
340
hi = val >> 32;
sys/x86/iommu/intel_dmar.h
343
*(p + 1) = hi;
sys/x86/iommu/intel_intrmap.c
155
bool activehi, int irq, u_int *cookie, uint32_t *hi, uint32_t *lo)
sys/x86/iommu/intel_intrmap.c
199
if (hi != NULL) {
sys/x86/iommu/intel_intrmap.c
209
*hi = iorte >> 32;
sys/x86/iommu/iommu_intrmap.h
37
bool activehi, int irq, u_int *cookie, uint32_t *hi, uint32_t *lo);
sys/x86/iommu/iommu_utils.c
228
bool edge, bool activehi, int irq, u_int *cookie, uint32_t *hi,
sys/x86/iommu/iommu_utils.c
319
bool activehi, int irq, u_int *cookie, uint32_t *hi, uint32_t *lo)
sys/x86/iommu/iommu_utils.c
322
activehi, irq, cookie, hi, lo));
sys/x86/iommu/x86_iommu.h
90
bool edge, bool activehi, int irq, u_int *cookie, uint32_t *hi,
sys/x86/x86/io_apic.c
1217
uint32_t r, lo, hi;
sys/x86/x86/io_apic.c
1226
hi = db_ioapic_read(io_addr, IOAPIC_REDTBL_HI(i));
sys/x86/x86/io_apic.c
1230
(hi & IOART_DEST) >> 24,
usr.bin/locate/locate/util.c
219
int i, hi;
usr.bin/locate/locate/util.c
231
hi = ntohl(i);
usr.bin/locate/locate/util.c
232
if (hi >= i_max || hi <= i_min)
usr.bin/locate/locate/util.c
234
i_min, abs(i) < abs(hi) ? i : hi, i_max);
usr.bin/locate/locate/util.c
235
return (hi);
usr.bin/lock/lock.c
175
(void)signal(SIGINT, hi);
usr.bin/lock/lock.c
176
(void)signal(SIGQUIT, hi);
usr.bin/lock/lock.c
177
(void)signal(SIGTSTP, hi);
usr.bin/lock/lock.c
233
hi(0);
usr.bin/lock/lock.c
69
static void hi(int);
usr.bin/top/display.c
908
u_endscreen(int hi)
usr.bin/top/display.c
910
int screen_line = hi + Header_lines;
usr.bin/top/display.c
915
if (hi < last_hi)
usr.bin/top/display.c
944
i = hi;
usr.bin/top/display.c
952
last_hi = hi;
usr.bin/top/display.h
33
void u_endscreen(int hi);
usr.bin/usbhidaction/usbhidaction.c
286
int inst, cinst, u, lo, hi, range, t;
usr.bin/usbhidaction/usbhidaction.c
380
hi = h.usage_maximum;
usr.bin/usbhidaction/usbhidaction.c
384
hi = h.usage;
usr.bin/usbhidaction/usbhidaction.c
387
for (u = lo; u <= hi; u++) {
usr.sbin/bhyve/virtio.c
540
u_int hi, lo, mid;
usr.sbin/bhyve/virtio.c
544
hi = sizeof(config_regs) / sizeof(*config_regs) - 1;
usr.sbin/bhyve/virtio.c
545
while (hi >= lo) {
usr.sbin/bhyve/virtio.c
546
mid = (hi + lo) >> 1;
usr.sbin/bhyve/virtio.c
553
hi = mid - 1;
usr.sbin/bluetooth/bthidd/parser.y
394
hid_item_t hi;
usr.sbin/bluetooth/bthidd/parser.y
421
for (hd = hid_start_parse(d->desc, ~0, -1); hid_get_item(hd, &hi) > 0; ) {
usr.sbin/bluetooth/bthidd/parser.y
422
switch (hi.kind) {
usr.sbin/bluetooth/bthidd/parser.y
426
else if (hi.collection == 1 &&
usr.sbin/bluetooth/bthidd/parser.y
427
hi.usage ==
usr.sbin/bluetooth/bthidd/parser.y
441
page = HID_PAGE(hi.usage);
usr.sbin/bluetooth/bthidd/parser.y
445
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == 0)
usr.sbin/bluetooth/bthidd/parser.y
450
if (hi.usage ==
usr.sbin/bluetooth/bthidd/parser.y
452
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
usr.sbin/bluetooth/bthidd/parser.y
454
if (hi.usage ==
usr.sbin/bluetooth/bthidd/parser.y
456
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
usr.sbin/bluetooth/bthidd/parser.y
458
if (hi.usage ==
usr.sbin/bluetooth/bthidd/parser.y
460
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
usr.sbin/bluetooth/bthidd/parser.y
462
if (hi.usage ==
usr.sbin/bluetooth/bthidd/parser.y
464
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
60
int hi = hci_hexa2int4(a);
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
63
if (hi < 0 || lo < 0)
usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
66
return ((hi << 4) | lo);
usr.sbin/bluetooth/sdpd/sar.c
106
hi = lo;
usr.sbin/bluetooth/sdpd/sar.c
114
SDP_GET16(hi, req);
usr.sbin/bluetooth/sdpd/sar.c
122
for (; lo <= hi; lo ++) {
usr.sbin/bluetooth/sdpd/sar.c
92
int32_t type, hi, lo, len;
usr.sbin/boot0cfg/boot0cfg.c
577
argtoi(const char *arg, int lo, int hi, int opt)
usr.sbin/boot0cfg/boot0cfg.c
584
if (errno || !*arg || *s || x < lo || x > hi)
usr.sbin/btxld/btxld.c
531
optpage(const char *arg, int hi)
usr.sbin/btxld/btxld.c
538
if (errno || !*arg || *s || x < 0 || x > hi)
usr.sbin/cxgbetool/cxgbetool.c
57
#define in_range(val, lo, hi) ( val < 0 || (val <= hi && val >= lo))
usr.sbin/cxgbetool/tcb_common.c
261
get_tcb_bits (unsigned char *A, int hi, int lo)
usr.sbin/cxgbetool/tcb_common.c
265
if (lo>hi) {
usr.sbin/cxgbetool/tcb_common.c
267
lo=hi;
usr.sbin/cxgbetool/tcb_common.c
268
hi=temp;
usr.sbin/cxgbetool/tcb_common.c
271
while (hi>=lo) {
usr.sbin/cxgbetool/tcb_common.c
272
ret = (ret<<1) | get_tcb_bit(A,hi);
usr.sbin/cxgbetool/tcb_common.c
273
--hi;
usr.sbin/cxgbetool/tcb_common.c
332
assert(tvp->hi-tvp->lo+1<=64);
usr.sbin/cxgbetool/tcb_common.c
333
assert(tvp->hi>=tvp->lo);
usr.sbin/cxgbetool/tcb_common.c
335
tvp->rawval=get_tcb_bits(buf,tvp->lo,tvp->hi);
usr.sbin/cxgbetool/tcb_common.c
554
if (tvp->hi-tvp->lo+1<=32) {
usr.sbin/cxgbetool/tcb_common.c
555
printf(" %4d:%4d %31s: %10u (0x%1x)",tvp->lo,tvp->hi,tvp->name,
usr.sbin/cxgbetool/tcb_common.c
560
printf(" %4d:%4d %31s: 0x%1llx",tvp->lo,tvp->hi,tvp->name,
usr.sbin/cxgbetool/tcb_common.h
74
int hi;
usr.sbin/dconschat/dconschat.c
1034
eui.hi = ntohl(*(u_int32_t*)&(target.octet[0]));
usr.sbin/dconschat/dconschat.c
274
u_int32_t buf, hi = 0, lo = 0, reset_hi = 0, reset_lo = 0;
usr.sbin/dconschat/dconschat.c
303
hi = reg->val;
usr.sbin/dconschat/dconschat.c
325
printf("addr: %06x %06x\n", hi, lo);
usr.sbin/dconschat/dconschat.c
326
dc->paddr = ((off_t)hi << 24) | lo;
usr.sbin/fwcontrol/fwcontrol.c
1027
eui.hi = ntohl(*(u_int32_t*)&(target.octet[0]));
usr.sbin/fwcontrol/fwcontrol.c
1030
sysctl_set_int("hw.firewire.fwmem.eui64_hi", eui.hi);
usr.sbin/fwcontrol/fwcontrol.c
1033
sysctl_set_int("hw.fwmem.eui64_hi", eui.hi);
usr.sbin/fwcontrol/fwcontrol.c
109
*(u_int32_t*)&(eui->octet[0]) = htonl(fweui->hi);
usr.sbin/makefs/zfs/zap.c
425
uint64_t hi, li;
usr.sbin/makefs/zfs/zap.c
428
hi = ZAP_HASH_IDX(ent->hash, zt->zt_shift);
usr.sbin/makefs/zfs/zap.c
430
assert(ptrhasht[hi] == 0 || ptrhasht[hi] == li + 1);
usr.sbin/makefs/zfs/zap.c
431
ptrhasht[hi] = li + 1;
usr.sbin/moused/moused/util.c
200
parse_range_property(const char *prop, int *hi, int *lo)
usr.sbin/moused/moused/util.c
208
*hi = 0;
usr.sbin/moused/moused/util.c
219
*hi = first;
usr.sbin/moused/moused/util.h
407
bool parse_range_property(const char *prop, int *hi, int *lo);
usr.sbin/traceroute/traceroute.c
1918
register struct hostinfo *hi;
usr.sbin/traceroute/traceroute.c
1927
hi = calloc(1, sizeof(*hi));
usr.sbin/traceroute/traceroute.c
1928
if (hi == NULL) {
usr.sbin/traceroute/traceroute.c
1934
hi->name = strdup(hostname);
usr.sbin/traceroute/traceroute.c
1935
hi->n = 1;
usr.sbin/traceroute/traceroute.c
1936
hi->addrs = calloc(1, sizeof(hi->addrs[0]));
usr.sbin/traceroute/traceroute.c
1937
if (hi->addrs == NULL) {
usr.sbin/traceroute/traceroute.c
1942
hi->addrs[0] = addr;
usr.sbin/traceroute/traceroute.c
1943
return (hi);
usr.sbin/traceroute/traceroute.c
1960
hi->name = strdup(hp->h_name);
usr.sbin/traceroute/traceroute.c
1963
hi->n = n;
usr.sbin/traceroute/traceroute.c
1964
hi->addrs = calloc(n, sizeof(hi->addrs[0]));
usr.sbin/traceroute/traceroute.c
1965
if (hi->addrs == NULL) {
usr.sbin/traceroute/traceroute.c
1969
for (ap = hi->addrs, p = hp->h_addr_list; *p != NULL; ++ap, ++p)
usr.sbin/traceroute/traceroute.c
1971
return (hi);
usr.sbin/traceroute/traceroute.c
1975
freehostinfo(register struct hostinfo *hi)
usr.sbin/traceroute/traceroute.c
1977
if (hi->name != NULL) {
usr.sbin/traceroute/traceroute.c
1978
free(hi->name);
usr.sbin/traceroute/traceroute.c
1979
hi->name = NULL;
usr.sbin/traceroute/traceroute.c
1981
free((char *)hi->addrs);
usr.sbin/traceroute/traceroute.c
1982
free((char *)hi);
usr.sbin/traceroute/traceroute.c
1988
register struct hostinfo *hi;
usr.sbin/traceroute/traceroute.c
1990
hi = gethostinfo(hostname);
usr.sbin/traceroute/traceroute.c
1991
*ap = hi->addrs[0];
usr.sbin/traceroute/traceroute.c
1992
freehostinfo(hi);
usr.sbin/traceroute/traceroute.c
484
register struct hostinfo *hi;
usr.sbin/traceroute/traceroute.c
725
hi = gethostinfo(hostname);
usr.sbin/traceroute/traceroute.c
726
setsin(to, hi->addrs[0]);
usr.sbin/traceroute/traceroute.c
727
if (hi->n > 1)
usr.sbin/traceroute/traceroute.c
731
hostname = hi->name;
usr.sbin/traceroute/traceroute.c
732
hi->name = NULL;
usr.sbin/traceroute/traceroute.c
733
freehostinfo(hi);
usr.sbin/traceroute/traceroute.c
891
hi = gethostinfo(source);
usr.sbin/traceroute/traceroute.c
892
source = hi->name;
usr.sbin/traceroute/traceroute.c
893
hi->name = NULL;
usr.sbin/traceroute/traceroute.c
901
for (i = hi->n, ap = hi->addrs; i > 0; --i, ++ap)
usr.sbin/traceroute/traceroute.c
912
setsin(from, hi->addrs[0]);
usr.sbin/traceroute/traceroute.c
913
if (hi->n > 1)
usr.sbin/traceroute/traceroute.c
918
freehostinfo(hi);
usr.sbin/usbdump/usbdump.c
382
uint8_t hi;
usr.sbin/usbdump/usbdump.c
385
hi = temp >> 4;
usr.sbin/usbdump/usbdump.c
387
if (hi < 10)
usr.sbin/usbdump/usbdump.c
388
buf[0] = '0' + hi;
usr.sbin/usbdump/usbdump.c
390
buf[0] = 'A' + hi - 10;