Symbol: hi
bin/ps/ps.c
652
int hi;
bin/ps/ps.c
666
hi = KI_PROC(ksort[i], pid) & KHMASK;
bin/ps/ps.c
668
ksort[i]->ki_hnext = khash[hi];
bin/ps/ps.c
669
khash[hi] = ksort[i];
crypto/libressl/apps/nc/netcat.c
1504
int hi, lo, cp;
crypto/libressl/apps/nc/netcat.c
1512
hi = strtoport(n, uflag);
crypto/libressl/apps/nc/netcat.c
1514
if (lo > hi) {
crypto/libressl/apps/nc/netcat.c
1515
cp = hi;
crypto/libressl/apps/nc/netcat.c
1516
hi = lo;
crypto/libressl/apps/nc/netcat.c
1525
for (x = 0; x <= hi - lo; x++) {
crypto/libressl/apps/nc/netcat.c
1532
for (cp = lo; cp <= hi; cp++) {
crypto/libressl/apps/nc/netcat.c
1541
hi = strtoport(p, uflag);
crypto/libressl/apps/nc/netcat.c
1542
if (asprintf(&tmp, "%d", hi) != -1)
crypto/libressl/apps/openssl/certhash.c
104
hashinfo_print(struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
108
printf("hashinfo %s %08lx %u %i\n", hi->filename, hi->hash,
crypto/libressl/apps/openssl/certhash.c
109
hi->index, hi->is_crl);
crypto/libressl/apps/openssl/certhash.c
111
printf("%02X%c", hi->fingerprint[i],
crypto/libressl/apps/openssl/certhash.c
137
struct hashinfo *hi = head;
crypto/libressl/apps/openssl/certhash.c
139
if (hi == NULL)
crypto/libressl/apps/openssl/certhash.c
141
while (hi->next != NULL)
crypto/libressl/apps/openssl/certhash.c
142
hi = hi->next;
crypto/libressl/apps/openssl/certhash.c
143
hi->next = entry;
crypto/libressl/apps/openssl/certhash.c
149
hashinfo_chain_free(struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
153
while (hi != NULL) {
crypto/libressl/apps/openssl/certhash.c
154
next = hi->next;
crypto/libressl/apps/openssl/certhash.c
155
hashinfo_free(hi);
crypto/libressl/apps/openssl/certhash.c
156
hi = next;
crypto/libressl/apps/openssl/certhash.c
161
hashinfo_chain_length(struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
165
while (hi != NULL) {
crypto/libressl/apps/openssl/certhash.c
167
hi = hi->next;
crypto/libressl/apps/openssl/certhash.c
202
hashinfo_linkname(struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
206
if (asprintf(&filename, "%08lx.%s%u", hi->hash,
crypto/libressl/apps/openssl/certhash.c
207
(hi->is_crl ? "r" : ""), hi->index) == -1)
crypto/libressl/apps/openssl/certhash.c
250
struct hashinfo *hi = NULL;
crypto/libressl/apps/openssl/certhash.c
261
if ((hi = hashinfo(linkname, 0, NULL)) == NULL)
crypto/libressl/apps/openssl/certhash.c
263
if ((hi->target = strdup(target)) == NULL)
crypto/libressl/apps/openssl/certhash.c
274
hi->hash = (unsigned long)val;
crypto/libressl/apps/openssl/certhash.c
277
hi->is_crl = 1;
crypto/libressl/apps/openssl/certhash.c
285
hi->index = (unsigned int)val;
crypto/libressl/apps/openssl/certhash.c
290
hashinfo_free(hi);
crypto/libressl/apps/openssl/certhash.c
291
hi = NULL;
crypto/libressl/apps/openssl/certhash.c
296
return (hi);
crypto/libressl/apps/openssl/certhash.c
303
struct hashinfo *hi = NULL;
crypto/libressl/apps/openssl/certhash.c
320
hi = hashinfo(filename, hash, fingerprint);
crypto/libressl/apps/openssl/certhash.c
325
return (hi);
crypto/libressl/apps/openssl/certhash.c
332
struct hashinfo *hi = NULL;
crypto/libressl/apps/openssl/certhash.c
349
hi = hashinfo(filename, hash, fingerprint);
crypto/libressl/apps/openssl/certhash.c
354
return (hi);
crypto/libressl/apps/openssl/certhash.c
358
certhash_addlink(struct hashinfo **links, struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
362
if ((link = hashinfo(NULL, hi->hash, hi->fingerprint)) == NULL)
crypto/libressl/apps/openssl/certhash.c
365
if ((link->filename = hashinfo_linkname(hi)) == NULL)
crypto/libressl/apps/openssl/certhash.c
368
link->reference = hi;
crypto/libressl/apps/openssl/certhash.c
371
hi->reference = link;
crypto/libressl/apps/openssl/certhash.c
381
certhash_findlink(struct hashinfo *links, struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
386
if (link->is_crl == hi->is_crl &&
crypto/libressl/apps/openssl/certhash.c
387
link->hash == hi->hash &&
crypto/libressl/apps/openssl/certhash.c
388
link->index == hi->index &&
crypto/libressl/apps/openssl/certhash.c
390
link->reference = hi;
crypto/libressl/apps/openssl/certhash.c
392
strcmp(link->target, hi->filename) != 0)
crypto/libressl/apps/openssl/certhash.c
394
hi->reference = link;
crypto/libressl/apps/openssl/certhash.c
476
struct hashinfo *hi = NULL;
crypto/libressl/apps/openssl/certhash.c
499
hi = hashinfo_from_linkname(dep->d_name, target);
crypto/libressl/apps/openssl/certhash.c
500
if (hi == NULL) {
crypto/libressl/apps/openssl/certhash.c
504
hi->exists = 1;
crypto/libressl/apps/openssl/certhash.c
505
*links = hashinfo_chain(*links, hi);
crypto/libressl/apps/openssl/certhash.c
514
struct hashinfo *hi = NULL;
crypto/libressl/apps/openssl/certhash.c
532
if ((hi = certhash_cert(bio, dep->d_name)) != NULL) {
crypto/libressl/apps/openssl/certhash.c
534
*certs = hashinfo_chain(*certs, hi);
crypto/libressl/apps/openssl/certhash.c
542
if ((hi = certhash_crl(bio, dep->d_name)) != NULL) {
crypto/libressl/apps/openssl/certhash.c
543
has_crl = hi->is_crl = 1;
crypto/libressl/apps/openssl/certhash.c
544
*crls = hashinfo_chain(*crls, hi);
crypto/libressl/apps/openssl/certhash.c
74
struct hashinfo *hi;
crypto/libressl/apps/openssl/certhash.c
76
if ((hi = calloc(1, sizeof(*hi))) == NULL)
crypto/libressl/apps/openssl/certhash.c
79
if ((hi->filename = strdup(filename)) == NULL) {
crypto/libressl/apps/openssl/certhash.c
80
free(hi);
crypto/libressl/apps/openssl/certhash.c
84
hi->hash = hash;
crypto/libressl/apps/openssl/certhash.c
86
memcpy(hi->fingerprint, fingerprint, sizeof(hi->fingerprint));
crypto/libressl/apps/openssl/certhash.c
88
return (hi);
crypto/libressl/apps/openssl/certhash.c
92
hashinfo_free(struct hashinfo *hi)
crypto/libressl/apps/openssl/certhash.c
94
if (hi == NULL)
crypto/libressl/apps/openssl/certhash.c
97
free(hi->filename);
crypto/libressl/apps/openssl/certhash.c
98
free(hi->target);
crypto/libressl/apps/openssl/certhash.c
99
free(hi);
crypto/libressl/crypto/bn/bn_asm.c
503
BN_ULONG hi; \
crypto/libressl/crypto/bn/bn_asm.c
507
hi = (BN_ULONG)Hw(t); \
crypto/libressl/crypto/bn/bn_asm.c
508
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/bn/bn_asm.c
512
BN_ULONG hi; \
crypto/libressl/crypto/bn/bn_asm.c
516
hi = (BN_ULONG)Hw(tt); \
crypto/libressl/crypto/bn/bn_asm.c
517
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/bn/bn_asm.c
520
hi = (BN_ULONG)Hw(t); \
crypto/libressl/crypto/bn/bn_asm.c
521
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/bn/bn_asm.c
525
BN_ULONG hi; \
crypto/libressl/crypto/bn/bn_asm.c
529
hi = (BN_ULONG)Hw(t); \
crypto/libressl/crypto/bn/bn_asm.c
530
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/bn/bn_asm.c
543
BN_ULONG lo, hi; \
crypto/libressl/crypto/bn/bn_asm.c
544
BN_UMULT_LOHI(lo,hi,ta,tb); \
crypto/libressl/crypto/bn/bn_asm.c
545
c0 += lo; hi += (c0<lo)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
546
c1 += hi; c2 += (c1<hi)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
551
BN_ULONG lo, hi, tt; \
crypto/libressl/crypto/bn/bn_asm.c
552
BN_UMULT_LOHI(lo,hi,ta,tb); \
crypto/libressl/crypto/bn/bn_asm.c
553
c0 += lo; tt = hi+((c0<lo)?1:0); \
crypto/libressl/crypto/bn/bn_asm.c
555
c0 += lo; hi += (c0<lo)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
556
c1 += hi; c2 += (c1<hi)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
561
BN_ULONG lo, hi; \
crypto/libressl/crypto/bn/bn_asm.c
562
BN_UMULT_LOHI(lo,hi,ta,ta); \
crypto/libressl/crypto/bn/bn_asm.c
563
c0 += lo; hi += (c0<lo)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
564
c1 += hi; c2 += (c1<hi)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
578
BN_ULONG hi = BN_UMULT_HIGH(ta,tb); \
crypto/libressl/crypto/bn/bn_asm.c
579
c0 += lo; hi += (c0<lo)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
580
c1 += hi; c2 += (c1<hi)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
586
BN_ULONG hi = BN_UMULT_HIGH(ta,tb); \
crypto/libressl/crypto/bn/bn_asm.c
587
c0 += lo; tt = hi + ((c0<lo)?1:0); \
crypto/libressl/crypto/bn/bn_asm.c
589
c0 += lo; hi += (c0<lo)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
590
c1 += hi; c2 += (c1<hi)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
596
BN_ULONG hi = BN_UMULT_HIGH(ta,ta); \
crypto/libressl/crypto/bn/bn_asm.c
597
c0 += lo; hi += (c0<lo)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
598
c1 += hi; c2 += (c1<hi)?1:0; \
crypto/libressl/crypto/bn/bn_asm.c
610
BN_ULONG lo = LBITS(a), hi = HBITS(a); \
crypto/libressl/crypto/bn/bn_asm.c
612
mul64(lo,hi,bl,bh); \
crypto/libressl/crypto/bn/bn_asm.c
613
c0 = (c0+lo)&BN_MASK2; if (c0<lo) hi++; \
crypto/libressl/crypto/bn/bn_asm.c
614
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/bn/bn_asm.c
619
BN_ULONG lo = LBITS(a), hi = HBITS(a); \
crypto/libressl/crypto/bn/bn_asm.c
621
mul64(lo,hi,bl,bh); \
crypto/libressl/crypto/bn/bn_asm.c
622
tt = hi; \
crypto/libressl/crypto/bn/bn_asm.c
625
c0 = (c0+lo)&BN_MASK2; if (c0<lo) hi++; \
crypto/libressl/crypto/bn/bn_asm.c
626
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/bn/bn_asm.c
630
BN_ULONG lo, hi; \
crypto/libressl/crypto/bn/bn_asm.c
631
sqr64(lo,hi,(a)[i]); \
crypto/libressl/crypto/bn/bn_asm.c
632
c0 = (c0+lo)&BN_MASK2; if (c0<lo) hi++; \
crypto/libressl/crypto/bn/bn_asm.c
633
c1 = (c1+hi)&BN_MASK2; if (c1<hi) c2++; \
crypto/libressl/crypto/modes/gcm128.c
126
Htable[0].hi = 0;
crypto/libressl/crypto/modes/gcm128.c
128
V.hi = H[0];
crypto/libressl/crypto/modes/gcm128.c
139
Hi[j].hi = H0.hi^Htable[j].hi;
crypto/libressl/crypto/modes/gcm128.c
217
Z.hi ^= Htable[n].hi;
crypto/libressl/crypto/modes/gcm128.c
225
Z.lo = (Z.hi<<56)|(Z.lo>>8);
crypto/libressl/crypto/modes/gcm128.c
226
Z.hi = (Z.hi>>8);
crypto/libressl/crypto/modes/gcm128.c
228
Z.hi ^= rem_8bit[rem];
crypto/libressl/crypto/modes/gcm128.c
230
Z.hi ^= (u64)rem_8bit[rem]<<32;
crypto/libressl/crypto/modes/gcm128.c
236
Xi[0] = BSWAP8(Z.hi);
crypto/libressl/crypto/modes/gcm128.c
241
v = (u32)(Z.hi>>32); PUTU32(p,v);
crypto/libressl/crypto/modes/gcm128.c
242
v = (u32)(Z.hi); PUTU32(p+4,v);
crypto/libressl/crypto/modes/gcm128.c
247
Xi[0] = Z.hi;
crypto/libressl/crypto/modes/gcm128.c
262
Htable[0].hi = 0;
crypto/libressl/crypto/modes/gcm128.c
264
V.hi = H[0];
crypto/libressl/crypto/modes/gcm128.c
277
Hi[j].hi = V.hi^Htable[j].hi;
crypto/libressl/crypto/modes/gcm128.c
289
Htable[3].hi = V.hi^Htable[2].hi, Htable[3].lo = V.lo^Htable[2].lo;
crypto/libressl/crypto/modes/gcm128.c
291
Htable[5].hi = V.hi^Htable[1].hi, Htable[5].lo = V.lo^Htable[1].lo;
crypto/libressl/crypto/modes/gcm128.c
292
Htable[6].hi = V.hi^Htable[2].hi, Htable[6].lo = V.lo^Htable[2].lo;
crypto/libressl/crypto/modes/gcm128.c
293
Htable[7].hi = V.hi^Htable[3].hi, Htable[7].lo = V.lo^Htable[3].lo;
crypto/libressl/crypto/modes/gcm128.c
295
Htable[9].hi = V.hi^Htable[1].hi, Htable[9].lo = V.lo^Htable[1].lo;
crypto/libressl/crypto/modes/gcm128.c
296
Htable[10].hi = V.hi^Htable[2].hi, Htable[10].lo = V.lo^Htable[2].lo;
crypto/libressl/crypto/modes/gcm128.c
297
Htable[11].hi = V.hi^Htable[3].hi, Htable[11].lo = V.lo^Htable[3].lo;
crypto/libressl/crypto/modes/gcm128.c
298
Htable[12].hi = V.hi^Htable[4].hi, Htable[12].lo = V.lo^Htable[4].lo;
crypto/libressl/crypto/modes/gcm128.c
299
Htable[13].hi = V.hi^Htable[5].hi, Htable[13].lo = V.lo^Htable[5].lo;
crypto/libressl/crypto/modes/gcm128.c
300
Htable[14].hi = V.hi^Htable[6].hi, Htable[14].lo = V.lo^Htable[6].lo;
crypto/libressl/crypto/modes/gcm128.c
301
Htable[15].hi = V.hi^Htable[7].hi, Htable[15].lo = V.lo^Htable[7].lo;
crypto/libressl/crypto/modes/gcm128.c
312
Htable[j].hi = V.lo;
crypto/libressl/crypto/modes/gcm128.c
313
Htable[j].lo = V.hi;
crypto/libressl/crypto/modes/gcm128.c
318
Htable[j].hi = V.lo<<32|V.lo>>32;
crypto/libressl/crypto/modes/gcm128.c
319
Htable[j].lo = V.hi<<32|V.hi>>32;
crypto/libressl/crypto/modes/gcm128.c
343
Z.hi = Htable[nlo].hi;
crypto/libressl/crypto/modes/gcm128.c
348
Z.lo = (Z.hi<<60)|(Z.lo>>4);
crypto/libressl/crypto/modes/gcm128.c
349
Z.hi = (Z.hi>>4);
crypto/libressl/crypto/modes/gcm128.c
351
Z.hi ^= rem_4bit[rem];
crypto/libressl/crypto/modes/gcm128.c
353
Z.hi ^= (u64)rem_4bit[rem]<<32;
crypto/libressl/crypto/modes/gcm128.c
355
Z.hi ^= Htable[nhi].hi;
crypto/libressl/crypto/modes/gcm128.c
365
Z.lo = (Z.hi<<60)|(Z.lo>>4);
crypto/libressl/crypto/modes/gcm128.c
366
Z.hi = (Z.hi>>4);
crypto/libressl/crypto/modes/gcm128.c
368
Z.hi ^= rem_4bit[rem];
crypto/libressl/crypto/modes/gcm128.c
370
Z.hi ^= (u64)rem_4bit[rem]<<32;
crypto/libressl/crypto/modes/gcm128.c
372
Z.hi ^= Htable[nlo].hi;
crypto/libressl/crypto/modes/gcm128.c
378
Xi[0] = BSWAP8(Z.hi);
crypto/libressl/crypto/modes/gcm128.c
383
v = (u32)(Z.hi>>32); PUTU32(p,v);
crypto/libressl/crypto/modes/gcm128.c
384
v = (u32)(Z.hi); PUTU32(p+4,v);
crypto/libressl/crypto/modes/gcm128.c
389
Xi[0] = Z.hi;
crypto/libressl/crypto/modes/gcm128.c
417
Z.hi = Htable[nlo].hi;
crypto/libressl/crypto/modes/gcm128.c
422
Z.lo = (Z.hi<<60)|(Z.lo>>4);
crypto/libressl/crypto/modes/gcm128.c
423
Z.hi = (Z.hi>>4);
crypto/libressl/crypto/modes/gcm128.c
425
Z.hi ^= rem_4bit[rem];
crypto/libressl/crypto/modes/gcm128.c
427
Z.hi ^= (u64)rem_4bit[rem]<<32;
crypto/libressl/crypto/modes/gcm128.c
429
Z.hi ^= Htable[nhi].hi;
crypto/libressl/crypto/modes/gcm128.c
440
Z.lo = (Z.hi<<60)|(Z.lo>>4);
crypto/libressl/crypto/modes/gcm128.c
441
Z.hi = (Z.hi>>4);
crypto/libressl/crypto/modes/gcm128.c
443
Z.hi ^= rem_4bit[rem];
crypto/libressl/crypto/modes/gcm128.c
445
Z.hi ^= (u64)rem_4bit[rem]<<32;
crypto/libressl/crypto/modes/gcm128.c
447
Z.hi ^= Htable[nlo].hi;
crypto/libressl/crypto/modes/gcm128.c
499
Z.hi = Htable[cnt].hi;
crypto/libressl/crypto/modes/gcm128.c
501
Hshr4[cnt].lo = (Z.hi<<60)|(Z.lo>>4);
crypto/libressl/crypto/modes/gcm128.c
502
Hshr4[cnt].hi = (Z.hi>>4);
crypto/libressl/crypto/modes/gcm128.c
507
for (Z.lo=0, Z.hi=0, cnt=15; cnt; --cnt) {
crypto/libressl/crypto/modes/gcm128.c
513
Z.hi ^= Htable[nlo].hi;
crypto/libressl/crypto/modes/gcm128.c
518
Z.lo = (Z.hi<<56)|(Z.lo>>8);
crypto/libressl/crypto/modes/gcm128.c
519
Z.hi = (Z.hi>>8);
crypto/libressl/crypto/modes/gcm128.c
521
Z.hi ^= Hshr4[nhi].hi;
crypto/libressl/crypto/modes/gcm128.c
523
Z.hi ^= (u64)rem_8bit[rem^Hshl4[nhi]]<<48;
crypto/libressl/crypto/modes/gcm128.c
531
Z.hi ^= Htable[nlo].hi;
crypto/libressl/crypto/modes/gcm128.c
536
Z.lo = (Z.hi<<60)|(Z.lo>>4);
crypto/libressl/crypto/modes/gcm128.c
537
Z.hi = (Z.hi>>4);
crypto/libressl/crypto/modes/gcm128.c
539
Z.hi ^= Htable[nhi].hi;
crypto/libressl/crypto/modes/gcm128.c
541
Z.hi ^= ((u64)rem_8bit[rem<<4])<<48;
crypto/libressl/crypto/modes/gcm128.c
546
Xi[0] = BSWAP8(Z.hi);
crypto/libressl/crypto/modes/gcm128.c
551
v = (u32)(Z.hi>>32); PUTU32(p,v);
crypto/libressl/crypto/modes/gcm128.c
552
v = (u32)(Z.hi); PUTU32(p+4,v);
crypto/libressl/crypto/modes/gcm128.c
557
Xi[0] = Z.hi;
crypto/libressl/crypto/modes/gcm128.c
586
V.hi = H[0]; /* H is in host byte order, no byte swapping */
crypto/libressl/crypto/modes/gcm128.c
608
Z.hi ^= V.hi&M;
crypto/libressl/crypto/modes/gcm128.c
617
Xi[0] = BSWAP8(Z.hi);
crypto/libressl/crypto/modes/gcm128.c
622
v = (u32)(Z.hi>>32); PUTU32(p,v);
crypto/libressl/crypto/modes/gcm128.c
623
v = (u32)(Z.hi); PUTU32(p+4,v);
crypto/libressl/crypto/modes/gcm128.c
628
Xi[0] = Z.hi;
crypto/libressl/crypto/modes/gcm128.c
697
u64 hi,lo;
crypto/libressl/crypto/modes/gcm128.c
698
hi = (u64)GETU32(p) <<32|GETU32(p+4);
crypto/libressl/crypto/modes/gcm128.c
700
ctx->H.u[0] = hi;
crypto/libressl/crypto/modes/gcm128.c
76
V.lo = (V.hi<<63)|(V.lo>>1); \
crypto/libressl/crypto/modes/gcm128.c
77
V.hi = (V.hi>>1 )^T; \
crypto/libressl/crypto/modes/gcm128.c
80
V.lo = (V.hi<<63)|(V.lo>>1); \
crypto/libressl/crypto/modes/gcm128.c
81
V.hi = (V.hi>>1 )^((u64)T<<32); \
crypto/libressl/crypto/modes/modes_lcl.h
40
# define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
crypto/libressl/crypto/modes/modes_lcl.h
42
: "+r"(hi),"+r"(lo)); \
crypto/libressl/crypto/modes/modes_lcl.h
43
(u64)hi<<32|lo; })
crypto/libressl/crypto/modes/modes_lcl.h
49
# define BSWAP8(x) ({ u32 lo=(u64)(x)>>32,hi=(x); \
crypto/libressl/crypto/modes/modes_lcl.h
51
: "+r"(hi),"+r"(lo)); \
crypto/libressl/crypto/modes/modes_lcl.h
52
(u64)hi<<32|lo; })
crypto/libressl/crypto/modes/modes_lcl.h
72
typedef struct { u64 hi,lo; } u128;
crypto/libressl/crypto/sha/sha512.c
323
unsigned int hi=p[0],lo=p[1]; \
crypto/libressl/crypto/sha/sha512.c
325
: "=r"(lo),"=r"(hi) \
crypto/libressl/crypto/sha/sha512.c
326
: "0"(lo),"1"(hi)); \
crypto/libressl/crypto/sha/sha512.c
327
((SHA_LONG64)hi)<<32|lo; })
crypto/openssh/krl.c
108
if (a->hi >= b->lo && a->lo <= b->hi)
crypto/openssh/krl.c
1178
rs.lo = rs.hi = key->cert->serial;
crypto/openssh/krl.c
1182
key->cert->serial, ers->lo, ers->hi));
crypto/openssh/krl.c
1365
if (rs->lo == rs->hi) {
crypto/openssh/krl.c
1371
(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
689
last = rs->hi;
crypto/openssh/krl.h
53
const struct sshkey *ca_key, u_int64_t lo, u_int64_t hi);
crypto/openssh/ssh-pkcs11.c
1418
int hi, low;
crypto/openssh/ssh-pkcs11.c
1420
hi = h2i(hex[2 * i]);
crypto/openssh/ssh-pkcs11.c
1422
if (hi == -1 || lo == -1)
crypto/openssh/ssh-pkcs11.c
1424
(*dest)[i] = (hi << 4) | lo;
games/cribbage/io.c
317
number(int lo, int hi, const char *prompt)
games/cribbage/io.c
341
if (sum >= lo && sum <= hi)
games/cribbage/io.c
347
sum, lo, hi);
games/cribbage/score.c
287
int k, lo, hi;
games/cribbage/score.c
305
lo = hi = crd.rank;
games/cribbage/score.c
316
if (tbl[i].rank > hi)
games/cribbage/score.c
317
hi = tbl[i].rank;
games/cribbage/score.c
318
for (j = lo; j <= hi; j++)
games/cribbage/score.c
321
if (j > hi)
games/cribbage/score.c
322
k = hi - lo + 1;
lib/i18n_module/UES/citrus_ues.c
161
surrogate_to_ucs(wchar_t hi, wchar_t lo)
lib/i18n_module/UES/citrus_ues.c
164
hi -= 0xD800;
lib/i18n_module/UES/citrus_ues.c
166
return ((hi << 10 | lo) + 0x10000);
lib/i18n_module/UES/citrus_ues.c
170
ucs_to_surrogate(wchar_t wc, wchar_t * __restrict hi, wchar_t * __restrict lo)
lib/i18n_module/UES/citrus_ues.c
174
*hi = (wc >> 10) + 0xD800;
lib/i18n_module/UES/citrus_ues.c
193
wchar_t hi, wc;
lib/i18n_module/UES/citrus_ues.c
202
hi = (wchar_t)0;
lib/i18n_module/UES/citrus_ues.c
257
if (hi != (wchar_t)0)
lib/i18n_module/UES/citrus_ues.c
261
hi = wc;
lib/i18n_module/UES/citrus_ues.c
279
wc = surrogate_to_ucs(hi, wc);
lib/i18n_module/UES/citrus_ues.c
302
wchar_t hi, lo;
lib/i18n_module/UES/citrus_ues.c
318
ucs_to_surrogate(wc, &hi, &lo);
lib/i18n_module/UES/citrus_ues.c
319
psenc->chlen += to_str(&psenc->ch[0], hi, UCS2_BIT);
lib/i18n_module/UTF7/citrus_utf7.c
246
uint16_t hi, lo;
lib/i18n_module/UTF7/citrus_utf7.c
255
err = _citrus_UTF7_mbtoutf16(ei, &hi, s, n, psenc, &nr);
lib/i18n_module/UTF7/citrus_utf7.c
264
if (hi < HISRG_MIN || hi > HISRG_MAX) {
lib/i18n_module/UTF7/citrus_utf7.c
265
u32 = (uint32_t)hi;
lib/i18n_module/UTF7/citrus_utf7.c
280
hi -= HISRG_MIN;
lib/i18n_module/UTF7/citrus_utf7.c
282
u32 = (hi << 10 | lo) + SRG_BASE;
lib/libc/rpc/svc_auth_des.c
414
u_long hi;
lib/libc/rpc/svc_auth_des.c
416
hi = key->key.high;
lib/libc/rpc/svc_auth_des.c
418
if (cp->key.key.high == hi &&
lib/libc/stdlib/rand.c
59
long hi, lo, x;
lib/libc/stdlib/rand.c
64
hi = *ctx / 127773;
lib/libc/stdlib/rand.c
66
x = 16807 * lo - 2836 * hi;
lib/libc/stdlib/random.c
214
int32_t hi, lo;
lib/libc/stdlib/random.c
219
hi = x / 127773;
lib/libc/stdlib/random.c
221
x = 16807 * lo - 2836 * hi;
lib/libc/stdtime/localtime.c
1325
int hi = sp->timecnt;
lib/libc/stdtime/localtime.c
1327
while (lo < hi) {
lib/libc/stdtime/localtime.c
1328
int mid = (lo + hi) >> 1;
lib/libc/stdtime/localtime.c
1331
hi = mid;
lib/libc/stdtime/localtime.c
1758
time_t hi;
lib/libc/stdtime/localtime.c
1835
hi = time_t_max;
lib/libc/stdtime/localtime.c
1837
t = lo / 2 + hi / 2;
lib/libc/stdtime/localtime.c
1840
else if (t > hi)
lib/libc/stdtime/localtime.c
1841
t = hi;
lib/libc/stdtime/localtime.c
1856
} else if (t == hi) {
lib/libc/stdtime/localtime.c
1860
--hi;
lib/libc/stdtime/localtime.c
1862
if (lo > hi)
lib/libc/stdtime/localtime.c
1865
hi = t;
lib/libexecinfo/symtab.c
172
size_t hi = ns;
lib/libexecinfo/symtab.c
181
hi = mid;
lib/libexecinfo/symtab.c
184
if (hi - lo == 1) {
lib/libexecinfo/symtab.c
188
mid = (hi + lo) / 2;
lib/libsdp/sdp.h
225
#define SDP_ATTR_RANGE(lo, hi) \
lib/libsdp/sdp.h
226
(uint32_t)(((uint16_t)(lo) << 16) | ((uint16_t)(hi)))
lib/libsdp/search.c
124
hi = (uint16_t) (*ap);
lib/libsdp/search.c
126
if (lo != hi) {
lib/libsdp/search.c
62
uint16_t lo, hi;
lib/libsdp/search.c
81
hi = (uint16_t) (ap[t]);
lib/libsdp/search.c
83
if (lo > hi) {
lib/libsdp/search.c
88
if (lo != hi)
libexec/ftpd/ftpd.c
758
struct addrinfo *hi;
libexec/ftpd/ftpd.c
760
for (hi = hrp->hostinfo; hi != NULL;
libexec/ftpd/ftpd.c
761
hi = hi->ai_next)
libexec/ftpd/ftpd.c
762
if (hi->ai_addrlen == ai->ai_addrlen &&
libexec/ftpd/ftpd.c
763
memcmp(hi->ai_addr,
libexec/ftpd/ftpd.c
866
struct addrinfo *hi;
libexec/ftpd/ftpd.c
882
for (hi = hrp->hostinfo; hi != NULL; hi = hi->ai_next) {
libexec/ftpd/ftpd.c
883
if (memcmp(su, hi->ai_addr, hi->ai_addrlen) == 0) {
libexec/ftpd/ftpd.c
889
if (hi->ai_addr->sa_family == AF_INET && mapped_in6 != NULL &&
libexec/ftpd/ftpd.c
891
&((struct sockaddr_in *)hi->ai_addr)->sin_addr,
sbin/dump/cache.c
108
int hi;
sbin/dump/cache.c
139
hi = (offset / BlockSize) % HSize;
sbin/dump/cache.c
140
pblk = &BlockHash[hi];
sbin/dump/cache.c
161
blk->b_HNext = BlockHash[hi];
sbin/dump/cache.c
162
BlockHash[hi] = blk;
sbin/dump/cache.c
78
int hi;
sbin/dump/cache.c
96
hi = i / HFACTOR;
sbin/dump/cache.c
97
base[i].b_HNext = BlockHash[hi];
sbin/dump/cache.c
98
BlockHash[hi] = &base[i];
sbin/hammer/ondisk.c
341
int hi;
sbin/hammer/ondisk.c
362
hi = buffer_hash(zone2_offset);
sbin/hammer/ondisk.c
363
TAILQ_INSERT_TAIL(&volume->buffer_lists[hi], buffer, entry);
sbin/hammer/ondisk.c
448
int hi;
sbin/hammer/ondisk.c
455
hi = buffer_hash(buffer->zone2_offset);
sbin/hammer/ondisk.c
459
TAILQ_REMOVE(&volume->buffer_lists[hi], buffer, entry);
sbin/hammer/ondisk.c
62
int hi;
sbin/hammer/ondisk.c
64
hi = (int)(zone2_offset / HAMMER_BUFSIZE) & HAMMER_BUFLISTMASK;
sbin/hammer/ondisk.c
65
return(hi);
sbin/hammer/ondisk.c
74
int hi;
sbin/hammer/ondisk.c
79
hi = buffer_hash(zone2_offset);
sbin/hammer/ondisk.c
80
TAILQ_FOREACH(buffer, &volume->buffer_lists[hi], entry) {
sbin/newfs_msdos/newfs_msdos.c
194
argtou(const char *arg, u_int lo, u_int hi, const char *msg)
sbin/newfs_msdos/newfs_msdos.c
201
if (errno || !*arg || *s || x < lo || x > hi)
sbin/routed/main.c
784
u_long hi) /* and before this */
sbin/routed/main.c
786
tp->tv_sec = (time_t)(hi == lo
sbin/routed/main.c
788
: (lo + random() % ((hi - lo))));
stand/boot/pc32/btxld/btxld.c
512
optpage(const char *arg, int hi)
stand/boot/pc32/btxld/btxld.c
519
if (errno || !*arg || *s || x < 0 || x > hi)
stand/lib/random.c
52
long x, hi, lo, t;
stand/lib/random.c
61
hi = x / 127773;
stand/lib/random.c
63
t = 16807 * lo - 2836 * hi;
sys/bus/firewire/firewire.c
1253
fc->ongoeui.hi = 0xffffffff; fc->ongoeui.lo = 0xffffffff;
sys/bus/firewire/firewire.c
1289
fc->ongoeui.hi == 0xffffffff &&
sys/bus/firewire/firewire.c
1293
}else if(fc->ongoeui.hi == 0xffffffff ){
sys/bus/firewire/firewire.c
1316
fwdev->eui.hi = fc->ongoeui.hi; fwdev->eui.lo = fc->ongoeui.lo;
sys/bus/firewire/firewire.c
1322
if (tfwdev->eui.hi > fwdev->eui.hi ||
sys/bus/firewire/firewire.c
1323
(tfwdev->eui.hi == fwdev->eui.hi &&
sys/bus/firewire/firewire.c
1335
fc->ongoeui.hi, fc->ongoeui.lo);
sys/bus/firewire/firewire.c
1482
fc->ongoeui.hi = ntohl(rfp->mode.rresq.data);
sys/bus/firewire/firewire.c
1486
if (fc->ongoeui.hi == 0 && fc->ongoeui.lo == 0) {
sys/bus/firewire/firewire.c
1576
fc->ongoeui.hi = 0xffffffff; fc->ongoeui.lo = 0xffffffff;
sys/bus/firewire/firewire.c
594
src->businfo.eui64.hi = fc->eui.hi;
sys/bus/firewire/firewire.h
241
u_int32_t hi, lo;
sys/bus/firewire/firewire.h
245
((eui)->hi >> (8*(3-(x)))): \
sys/bus/firewire/firewire.h
249
((x).hi == (y).hi && (x).lo == (y).lo)
sys/bus/firewire/firewire.h
59
unsigned long hi;
sys/bus/firewire/fwcrom.c
569
src.businfo.eui64.hi = 0x11223344;
sys/bus/firewire/fwdev.c
594
bindreq->start.hi, bindreq->start.lo);
sys/bus/firewire/fwdev.c
608
if(bindreq->start.hi > 0xffff ){
sys/bus/firewire/fwdev.c
613
fwb->start = ((u_int64_t)bindreq->start.hi << 32) |
sys/bus/firewire/fwdev.c
641
devinfo->eui.hi = sc->fc->eui.hi;
sys/bus/firewire/fwdev.c
649
devinfo->eui.hi = fwdev->eui.hi;
sys/bus/firewire/fwmem.c
347
fms->eui.hi, fms->eui.lo);
sys/bus/firewire/fwmem.c
63
&fwmem_eui64.hi, 0, "Fwmem target EUI64 high");
sys/bus/firewire/fwohci.c
717
sc->fc.eui.hi = OREAD(sc, FWOHCIGUID_H);
sys/bus/u4b/usb_hid.c
744
struct hid_item hi;
sys/bus/u4b/usb_hid.c
751
while ((err = hid_get_item(hd, &hi))) {
sys/bus/u4b/usb_hid.c
752
if (hi.kind == hid_collection &&
sys/bus/u4b/usb_hid.c
753
hi.usage == usage)
sys/bus/u4b/usb_hid.c
858
struct hid_item hi;
sys/bus/u4b/usb_hid.c
869
while (hid_get_item(hd, &hi)) {
sys/bus/u4b/usb_hid.c
870
switch (hi.kind) {
sys/bus/u4b/usb_hid.c
874
else if (hi.collection == 1 &&
sys/bus/u4b/usb_hid.c
875
hi.usage ==
sys/bus/u4b/usb_hid.c
886
if (hi.usage ==
sys/bus/u4b/usb_hid.c
888
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
sys/bus/u4b/usb_hid.c
890
if (hi.usage ==
sys/bus/u4b/usb_hid.c
892
(hi.flags & (HIO_CONST|HIO_RELATIVE)) == HIO_RELATIVE)
sys/bus/u4b/usbdi.h
333
#define USB_DEV_BCD_LTEQ(hi) /* less than or equal */ \
sys/bus/u4b/usbdi.h
334
.match_flag_dev_hi = 1, .bcdDevice_hi = (hi)
sys/dev/acpica/acpi_hp/acpi_hp.c
1014
unsigned int hi;
sys/dev/acpica/acpi_hp/acpi_hp.c
1017
hi = hexin[0];
sys/dev/acpica/acpi_hp/acpi_hp.c
1019
if ('0' <= hi && hi <= '9')
sys/dev/acpica/acpi_hp/acpi_hp.c
1020
hi -= '0';
sys/dev/acpica/acpi_hp/acpi_hp.c
1021
else if ('A' <= hi && hi <= 'F')
sys/dev/acpica/acpi_hp/acpi_hp.c
1022
hi -= ('A' - 10);
sys/dev/acpica/acpi_hp/acpi_hp.c
1023
else if ('a' <= hi && hi <= 'f')
sys/dev/acpica/acpi_hp/acpi_hp.c
1024
hi -= ('a' - 10);
sys/dev/acpica/acpi_hp/acpi_hp.c
1035
*byteout = (hi << 4) + lo;
sys/dev/acpica/acpi_wmi/acpi_wmi.c
775
UINT8 hi = ((UINT8) winfo->ginfo.oid[0]) >> 4;
sys/dev/acpica/acpi_wmi/acpi_wmi.c
777
method[2] = (hi > 9 ? hi + 55: hi + 48);
sys/dev/acpica/acpi_wmi/acpi_wmi.c
792
unsigned int hi;
sys/dev/acpica/acpi_wmi/acpi_wmi.c
795
hi = hexin[0];
sys/dev/acpica/acpi_wmi/acpi_wmi.c
797
if ('0' <= hi && hi <= '9')
sys/dev/acpica/acpi_wmi/acpi_wmi.c
798
hi -= '0';
sys/dev/acpica/acpi_wmi/acpi_wmi.c
799
else if ('A' <= hi && hi <= 'F')
sys/dev/acpica/acpi_wmi/acpi_wmi.c
800
hi -= ('A' - 10);
sys/dev/acpica/acpi_wmi/acpi_wmi.c
801
else if ('a' <= hi && hi <= 'f')
sys/dev/acpica/acpi_wmi/acpi_wmi.c
802
hi -= ('a' - 10);
sys/dev/acpica/acpi_wmi/acpi_wmi.c
813
*byteout = (hi << 4) + lo;
sys/dev/apple/smc/smc_io.c
302
unsigned int lo, hi, mid;
sys/dev/apple/smc/smc_io.c
309
hi = sc->sc_nkeys;
sys/dev/apple/smc/smc_io.c
310
while (lo < hi) {
sys/dev/apple/smc/smc_io.c
311
mid = lo + (hi - lo) / 2;
sys/dev/apple/smc/smc_io.c
318
hi = mid;
sys/dev/disk/mpt/mpilib/mpi_targ.h
653
#define SET_HOST_INDEX_0100(t, hi) \
sys/dev/disk/mpt/mpilib/mpi_targ.h
655
(((hi) << TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX) & \
sys/dev/disk/sbp/sbp.c
2538
ocb->ind_ptr[i].hi = htonl(s->ds_len << 16);
sys/dev/disk/sbp/sbp.c
336
fwdev->eui.hi,
sys/dev/disk/sbp/sbp.c
378
if (wired[i].eui.hi == fwdev->eui.hi &&
sys/dev/disk/sbp/sbp.c
389
target, fwdev->eui.hi, fwdev->eui.lo);
sys/dev/disk/sbp/sbp.c
791
fwdev->eui.hi, fwdev->eui.lo);
sys/dev/disk/sbp/sbp.h
73
uint32_t hi,lo;
sys/dev/drm/amd/amdgpu/amdgpu_uvd.c
457
uint32_t lo, hi;
sys/dev/drm/amd/amdgpu/amdgpu_uvd.c
461
hi = amdgpu_get_ib_value(ctx->parser, ctx->ib_idx, ctx->data1);
sys/dev/drm/amd/amdgpu/amdgpu_uvd.c
462
addr = ((uint64_t)lo) | (((uint64_t)hi) << 32);
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
576
int lo, int hi, unsigned size, int32_t index)
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
587
((uint64_t)amdgpu_get_ib_value(p, ib_idx, hi)) << 32;
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
600
addr, lo, hi, size, index);
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
624
int lo, int hi, unsigned size, uint32_t index)
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
635
((uint64_t)amdgpu_get_ib_value(p, ib_idx, hi)) << 32;
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
641
addr, lo, hi, size, index);
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
648
addr, lo, hi);
sys/dev/drm/amd/amdgpu/amdgpu_vce.c
657
amdgpu_set_ib_value(p, ib_idx, hi, upper_32_bits(addr));
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
763
pp_atomctrl_voltage_table_entry *tab, uint16_t *hi,
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
768
*hi = tab->value * VOLTAGE_SCALE;
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
785
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[v_index].Leakage * VOLTAGE_SCALE);
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
789
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[hwmgr->dyn_state.cac_leakage_table->count - 1].Leakage * VOLTAGE_SCALE);
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
801
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[v_index].Leakage) * VOLTAGE_SCALE;
sys/dev/drm/amd/powerplay/smumgr/ci_smumgr.c
805
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[hwmgr->dyn_state.cac_leakage_table->count - 1].Leakage * VOLTAGE_SCALE);
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
531
pp_atomctrl_voltage_table_entry *tab, uint16_t *hi,
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
536
*hi = tab->value * VOLTAGE_SCALE;
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
559
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[v_index].Leakage * VOLTAGE_SCALE);
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
563
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[hwmgr->dyn_state.cac_leakage_table->count - 1].Leakage * VOLTAGE_SCALE);
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
579
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[v_index].Leakage) * VOLTAGE_SCALE;
sys/dev/drm/amd/powerplay/smumgr/iceland_smumgr.c
583
*hi = (uint16_t)(hwmgr->dyn_state.cac_leakage_table->entries[hwmgr->dyn_state.cac_leakage_table->count - 1].Leakage * VOLTAGE_SCALE);
sys/dev/drm/i915/i915_gem_gtt.c
1319
I915_WRITE(vgtif_reg(pdp[0].hi), upper_32_bits(daddr));
sys/dev/drm/i915/i915_gem_gtt.c
1328
I915_WRITE(vgtif_reg(pdp[i].hi), upper_32_bits(daddr));
sys/dev/drm/i915/i915_pvinfo.h
104
u32 hi;
sys/dev/drm/i915/i915_reg.h
2568
#define GEN6_WIZ_HASHING(hi, lo) (((hi) << 9) | ((lo) << 7))
sys/dev/drm/i915/i915_reg.h
7386
#define GEN9_PREEMPT_GPGPU_LEVEL(hi, lo) (((hi) << 2) | ((lo) << 1))
sys/dev/drm/include/linux/kernel.h
86
#define clamp(x, lo, hi) min( max(x,lo), hi)
sys/dev/drm/include/linux/kernel.h
87
#define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi)
sys/dev/drm/radeon/radeon.h
1744
int radeon_vce_cs_reloc(struct radeon_cs_parser *p, int lo, int hi, unsigned size);
sys/dev/drm/radeon/radeon_vce.c
470
int radeon_vce_cs_reloc(struct radeon_cs_parser *p, int lo, int hi,
sys/dev/drm/radeon/radeon_vce.c
480
idx = radeon_get_ib_value(p, hi);
sys/dev/drm/radeon/radeon_vce.c
494
p->ib.ptr[hi] = start >> 32;
sys/dev/netif/bwn/bwn/if_bwn_util.h
49
bwn_clamp_val(int val, int lo, int hi)
sys/dev/netif/bwn/bwn/if_bwn_util.h
53
if (val > hi)
sys/dev/netif/bwn/bwn/if_bwn_util.h
54
return hi;
sys/dev/netif/iwn/if_iwn.c
2343
kprintf("chan lo=%d, chan hi=%d\n", band->lo, band->hi);
sys/dev/netif/iwn/if_iwn.c
5695
sc->bands[i].lo <= chan && chan <= sc->bands[i].hi)
sys/dev/netif/iwn/if_iwnreg.h
1917
uint8_t hi; /* high channel number */
sys/dev/netif/nfe/if_nfe.c
2148
uint32_t lo, hi;
sys/dev/netif/nfe/if_nfe.c
2151
hi = NFE_READ(sc, NFE_MACADDR_HI);
sys/dev/netif/nfe/if_nfe.c
2156
addr[2] = (hi >> 24) & 0xff;
sys/dev/netif/nfe/if_nfe.c
2157
addr[3] = (hi >> 16) & 0xff;
sys/dev/netif/nfe/if_nfe.c
2158
addr[4] = (hi >> 8) & 0xff;
sys/dev/netif/nfe/if_nfe.c
2159
addr[5] = (hi & 0xff);
sys/dev/netif/nfe/if_nfe.c
2161
addr[0] = (hi & 0xff);
sys/dev/netif/nfe/if_nfe.c
2162
addr[1] = (hi >> 8) & 0xff;
sys/dev/netif/nfe/if_nfe.c
2163
addr[2] = (hi >> 16) & 0xff;
sys/dev/netif/nfe/if_nfe.c
2164
addr[3] = (hi >> 24) & 0xff;
sys/dev/netif/oce/oce_hw.h
251
uint32_t hi;
sys/dev/netif/oce/oce_hw.h
518
uint32_t hi:1;
sys/dev/netif/oce/oce_hw.h
522
uint32_t hi:1;
sys/dev/netif/oce/oce_mbox.c
164
mbox_db.bits.hi = 1;
sys/dev/netif/oce/oce_mbox.c
173
mbox_db.bits.hi = 0;
sys/dev/netif/oce/oce_util.c
238
dpt->paddrs[i].hi = ADDR_HI(segs[i].ds_addr);
sys/dev/netif/ral/rt2661.c
2600
int lo, hi, dbm;
sys/dev/netif/ral/rt2661.c
2612
hi = lo + 0x20;
sys/dev/netif/ral/rt2661.c
2620
bbp17 = hi;
sys/dev/netif/ral/rt2661.c
2630
hi -= 2 * (-74 - dbm);
sys/dev/netif/ral/rt2661.c
2631
if (hi < lo)
sys/dev/netif/ral/rt2661.c
2632
hi = lo;
sys/dev/netif/ral/rt2661.c
2634
if (bbp17 > hi) {
sys/dev/netif/ral/rt2661.c
2635
bbp17 = hi;
sys/dev/netif/ral/rt2661.c
2638
if (++bbp17 > hi)
sys/dev/netif/ral/rt2661.c
2639
bbp17 = hi;
sys/kern/kern_uuid.c
146
uuid.time.x.hi = ((uint16_t)(time >> 48) & 0xfff) | (1 << 12);
sys/kern/kern_uuid.c
193
id->time.x.low, id->time.x.mid, id->time.x.hi, be16toh(id->seq),
sys/kern/kern_uuid.c
61
uint16_t hi;
sys/libkern/random.c
52
long x, hi, lo, t;
sys/libkern/random.c
61
hi = x / 127773;
sys/libkern/random.c
63
t = 16807 * lo - 2836 * hi;
sys/net/netmap/netmap.c
296
nm_bound_var(u_int *v, u_int dflt, u_int lo, u_int hi, const char *msg)
sys/net/netmap/netmap.c
303
if (dflt > hi)
sys/net/netmap/netmap.c
304
dflt = hi;
sys/net/netmap/netmap.c
308
} else if (oldv > hi) {
sys/net/netmap/netmap.c
309
*v = hi;
sys/net/netmap/netmap_kern.h
635
u_int nm_bound_var(u_int *v, u_int dflt, u_int lo, u_int hi, const char *msg);
sys/netinet/in_pcb.c
2535
int hi, lo;
sys/netinet/in_pcb.c
2540
hi = *hi0;
sys/netinet/in_pcb.c
2543
hi = rounddown(hi, step);
sys/netinet/in_pcb.c
2544
hi += ofs;
sys/netinet/in_pcb.c
2545
if (hi > (int)*hi0)
sys/netinet/in_pcb.c
2546
hi -= step;
sys/netinet/in_pcb.c
2553
*hi0 = hi;
sys/netproto/802_11/wlan_tkip/ieee80211_crypto_tkip.c
477
static __inline u16 Mk16(u8 hi, u8 lo)
sys/netproto/802_11/wlan_tkip/ieee80211_crypto_tkip.c
479
return lo | (((u16) hi) << 8);
sys/platform/pc64/x86_64/pmap.c
642
int hi;
sys/platform/pc64/x86_64/pmap.c
645
hi = 0;
sys/platform/pc64/x86_64/pmap.c
647
hi = PM_PLACE_BASE;
sys/platform/pc64/x86_64/pmap.c
649
hi = PM_PLACE_BASE << 1;
sys/platform/pc64/x86_64/pmap.c
651
hi = PM_PLACE_BASE | (PM_PLACE_BASE << 1);
sys/platform/pc64/x86_64/pmap.c
652
hi += pindex & (PM_PLACE_BASE - 1);
sys/platform/pc64/x86_64/pmap.c
654
return (&pmap->pm_placemarks[hi]);
sys/vfs/ext2fs/ext2_csum.c
438
uint32_t hi, provided, calculated;
sys/vfs/ext2fs/ext2_csum.c
448
hi = le16toh(fs->e2fs_gd[cg].ext4bgd_i_bmap_csum_hi);
sys/vfs/ext2fs/ext2_csum.c
449
provided |= (hi << 16);
sys/vfs/ext2fs/ext2_csum.c
479
uint32_t hi, provided, calculated, size;
sys/vfs/ext2fs/ext2_csum.c
489
hi = le16toh(fs->e2fs_gd[cg].ext4bgd_b_bmap_csum_hi);
sys/vfs/ext2fs/ext2_csum.c
490
provided |= (hi << 16);
sys/vfs/ext2fs/ext2_csum.c
566
uint32_t hi, provided, calculated;
sys/vfs/ext2fs/ext2_csum.c
578
hi = le16toh(ei->e2di_chksum_hi);
sys/vfs/ext2fs/ext2_csum.c
579
provided |= hi << 16;
sys/vfs/nfs/nfs_serv.c
150
int hi, try;
sys/vfs/nfs/nfs_serv.c
154
hi = ((int)(vm_offset_t) vp / sizeof(struct vnode)) % NUM_HEURISTIC;
sys/vfs/nfs/nfs_serv.c
155
nh = &nfsheur[hi];
sys/vfs/nfs/nfs_serv.c
158
if (nfsheur[hi].nh_vp == vp) {
sys/vfs/nfs/nfs_serv.c
159
nh = &nfsheur[hi];
sys/vfs/nfs/nfs_serv.c
162
if (nfsheur[hi].nh_use > 0)
sys/vfs/nfs/nfs_serv.c
163
--nfsheur[hi].nh_use;
sys/vfs/nfs/nfs_serv.c
164
hi = (hi + 1) % NUM_HEURISTIC;
sys/vfs/nfs/nfs_serv.c
165
if (nfsheur[hi].nh_use < nh->nh_use)
sys/vfs/nfs/nfs_serv.c
166
nh = &nfsheur[hi];
sys/vm/vm_page.c
1579
size_t hi;
sys/vm/vm_page.c
1581
hi = iscsi_crc32(&object, sizeof(object)) << 2;
sys/vm/vm_page.c
1582
hi ^= hi >> (23 - 2);
sys/vm/vm_page.c
1583
hi += pindex * VM_PAGE_HASH_SET;
sys/vm/vm_page.c
1586
hi = (intptr_t)object ^ object->pg_color ^ pindex;
sys/vm/vm_page.c
1587
hi += object->pg_color * pindex;
sys/vm/vm_page.c
1588
hi = hi ^ (hi >> 20);
sys/vm/vm_page.c
1590
hi &= vm_page_hash_size - 1; /* bounds */
sys/vm/vm_page.c
1592
return (&vm_page_hash[hi]);
test/sysperf/randread.c
152
double hi;
test/sysperf/randread.c
179
hi = (double)hitime / (double)tscfreq;
test/sysperf/randread.c
195
hi * 1e6,
usr.bin/lock/lock.c
164
signal(SIGINT, hi);
usr.bin/lock/lock.c
165
signal(SIGQUIT, hi);
usr.bin/lock/lock.c
166
signal(SIGTSTP, hi);
usr.bin/lock/lock.c
208
hi(0);
usr.bin/lock/lock.c
65
static void hi(int);
usr.bin/top/hash.c
1003
hash_item_string *hi;
usr.bin/top/hash.c
1012
hi = (hash_item_string *)newli->datum;
usr.bin/top/hash.c
1015
hi->key = strdup(key);
usr.bin/top/hash.c
1016
hi->value = value;
usr.bin/top/hash.c
1066
hash_item_string *hi;
usr.bin/top/hash.c
1080
hi = (hash_item_string *)li->datum;
usr.bin/top/hash.c
1081
k1 = hi->key;
usr.bin/top/hash.c
1085
result = hi->value;
usr.bin/top/hash.c
1086
hi->value = value;
usr.bin/top/hash.c
1096
hi = (hash_item_string *)li->datum;
usr.bin/top/hash.c
1097
hi->key = strdup(key);
usr.bin/top/hash.c
1098
hi->value = value;
usr.bin/top/hash.c
1159
hash_item_string *hi;
usr.bin/top/hash.c
1171
hi = (hash_item_string *)li->datum;
usr.bin/top/hash.c
1172
k1 = hi->key;
usr.bin/top/hash.c
1176
result = hi->value;
usr.bin/top/hash.c
1177
key = hi->key;
usr.bin/top/hash.c
1293
hash_item_string *hi;
usr.bin/top/hash.c
1309
hi = (hash_item_string *)li->datum;
usr.bin/top/hash.c
1310
ans = hi->value;
usr.bin/top/hash.c
1313
key = hi->key;
usr.bin/top/hash.c
1341
hash_item_pidthr *hi;
usr.bin/top/hash.c
1350
hi = (hash_item_pidthr *)newli->datum;
usr.bin/top/hash.c
1353
hi->key = key;
usr.bin/top/hash.c
1354
hi->value = value;
usr.bin/top/hash.c
1404
hash_item_pidthr *hi;
usr.bin/top/hash.c
1418
hi = (hash_item_pidthr *)li->datum;
usr.bin/top/hash.c
1419
k1 = hi->key;
usr.bin/top/hash.c
1423
result = hi->value;
usr.bin/top/hash.c
1424
hi->value = value;
usr.bin/top/hash.c
1434
hi = (hash_item_pidthr *)li->datum;
usr.bin/top/hash.c
1435
hi->key = key;
usr.bin/top/hash.c
1436
hi->value = value;
usr.bin/top/hash.c
1497
hash_item_pidthr *hi;
usr.bin/top/hash.c
1509
hi = (hash_item_pidthr *)li->datum;
usr.bin/top/hash.c
1510
k1 = hi->key;
usr.bin/top/hash.c
1514
result = hi->value;
usr.bin/top/hash.c
1515
key = hi->key;
usr.bin/top/hash.c
1631
hash_item_pidthr *hi;
usr.bin/top/hash.c
1647
hi = (hash_item_pidthr *)li->datum;
usr.bin/top/hash.c
1648
ans = hi->value;
usr.bin/top/hash.c
1651
key = hi->key;
usr.bin/top/hash.c
1680
hash_item_lwpid *hi;
usr.bin/top/hash.c
1689
hi = (hash_item_lwpid *)newli->datum;
usr.bin/top/hash.c
1692
hi->key = key;
usr.bin/top/hash.c
1693
hi->value = value;
usr.bin/top/hash.c
1743
hash_item_lwpid *hi;
usr.bin/top/hash.c
1757
hi = (hash_item_lwpid *)li->datum;
usr.bin/top/hash.c
1758
k1 = hi->key;
usr.bin/top/hash.c
1762
result = hi->value;
usr.bin/top/hash.c
1763
hi->value = value;
usr.bin/top/hash.c
1773
hi = (hash_item_lwpid *)li->datum;
usr.bin/top/hash.c
1774
hi->key = key;
usr.bin/top/hash.c
1775
hi->value = value;
usr.bin/top/hash.c
1836
hash_item_lwpid *hi;
usr.bin/top/hash.c
1848
hi = (hash_item_lwpid *)li->datum;
usr.bin/top/hash.c
1849
k1 = hi->key;
usr.bin/top/hash.c
1853
result = hi->value;
usr.bin/top/hash.c
1854
key = hi->key;
usr.bin/top/hash.c
1970
hash_item_lwpid *hi;
usr.bin/top/hash.c
1986
hi = (hash_item_lwpid *)li->datum;
usr.bin/top/hash.c
1987
ans = hi->value;
usr.bin/top/hash.c
1990
key = hi->key;
usr.bin/top/hash.c
327
hash_item_uint *hi;
usr.bin/top/hash.c
336
hi = (hash_item_uint *)newli->datum;
usr.bin/top/hash.c
339
hi->key = key;
usr.bin/top/hash.c
340
hi->value = value;
usr.bin/top/hash.c
390
hash_item_uint *hi;
usr.bin/top/hash.c
404
hi = (hash_item_uint *)li->datum;
usr.bin/top/hash.c
405
k1 = hi->key;
usr.bin/top/hash.c
409
result = hi->value;
usr.bin/top/hash.c
410
hi->value = value;
usr.bin/top/hash.c
420
hi = (hash_item_uint *)li->datum;
usr.bin/top/hash.c
421
hi->key = key;
usr.bin/top/hash.c
422
hi->value = value;
usr.bin/top/hash.c
483
hash_item_uint *hi;
usr.bin/top/hash.c
495
hi = (hash_item_uint *)li->datum;
usr.bin/top/hash.c
496
k1 = hi->key;
usr.bin/top/hash.c
500
result = hi->value;
usr.bin/top/hash.c
501
key = hi->key;
usr.bin/top/hash.c
617
hash_item_uint *hi;
usr.bin/top/hash.c
633
hi = (hash_item_uint *)li->datum;
usr.bin/top/hash.c
634
ans = hi->value;
usr.bin/top/hash.c
637
key = hi->key;
usr.bin/top/hash.c
665
hash_item_pid *hi;
usr.bin/top/hash.c
674
hi = (hash_item_pid *)newli->datum;
usr.bin/top/hash.c
677
hi->key = key;
usr.bin/top/hash.c
678
hi->value = value;
usr.bin/top/hash.c
728
hash_item_pid *hi;
usr.bin/top/hash.c
742
hi = (hash_item_pid *)li->datum;
usr.bin/top/hash.c
743
k1 = hi->key;
usr.bin/top/hash.c
747
result = hi->value;
usr.bin/top/hash.c
748
hi->value = value;
usr.bin/top/hash.c
758
hi = (hash_item_pid *)li->datum;
usr.bin/top/hash.c
759
hi->key = key;
usr.bin/top/hash.c
760
hi->value = value;
usr.bin/top/hash.c
821
hash_item_pid *hi;
usr.bin/top/hash.c
833
hi = (hash_item_pid *)li->datum;
usr.bin/top/hash.c
834
k1 = hi->key;
usr.bin/top/hash.c
838
result = hi->value;
usr.bin/top/hash.c
839
key = hi->key;
usr.bin/top/hash.c
955
hash_item_pid *hi;
usr.bin/top/hash.c
971
hi = (hash_item_pid *)li->datum;
usr.bin/top/hash.c
972
ans = hi->value;
usr.bin/top/hash.c
975
key = hi->key;
usr.bin/usbhidaction/usbhidaction.c
287
int inst, cinst, u, lo, hi, range, t;
usr.bin/usbhidaction/usbhidaction.c
381
hi = h.usage_maximum;
usr.bin/usbhidaction/usbhidaction.c
385
hi = h.usage;
usr.bin/usbhidaction/usbhidaction.c
388
for (u = lo; u <= hi; u++) {
usr.sbin/boot0cfg/boot0cfg.c
401
argtoi(const char *arg, int lo, int hi, int opt)
usr.sbin/boot0cfg/boot0cfg.c
408
if (errno || !*arg || *s || x < lo || x > hi)
usr.sbin/dconschat/dconschat.c
175
u_int32_t buf, hi = 0, lo = 0;
usr.sbin/dconschat/dconschat.c
203
hi = reg->val;
usr.sbin/dconschat/dconschat.c
215
printf("addr: %06x %06x\n", hi, lo);
usr.sbin/dconschat/dconschat.c
216
dc->paddr = ((off_t)hi << 24) | lo;
usr.sbin/dconschat/dconschat.c
847
eui.hi = ntohl(*(u_int32_t*)&(target.octet[0]));
usr.sbin/fwcontrol/fwcontrol.c
103
devinfo->eui.hi,
usr.sbin/fwcontrol/fwcontrol.c
232
devinfo->dst, devinfo->eui.hi, devinfo->eui.lo, reg);
usr.sbin/sdpd/sar.c
106
hi = lo;
usr.sbin/sdpd/sar.c
114
SDP_GET16(hi, req);
usr.sbin/sdpd/sar.c
122
for (; lo <= hi; lo ++) {
usr.sbin/sdpd/sar.c
92
int32_t type, hi, lo, len;
usr.sbin/usbdump/usbdump.c
371
uint8_t hi;
usr.sbin/usbdump/usbdump.c
374
hi = temp >> 4;
usr.sbin/usbdump/usbdump.c
376
if (hi < 10)
usr.sbin/usbdump/usbdump.c
377
buf[0] = '0' + hi;
usr.sbin/usbdump/usbdump.c
379
buf[0] = 'A' + hi - 10;
usr.sbin/zic/zdump.c
244
intmax_t hi;
usr.sbin/zic/zdump.c
251
hi = lo;
usr.sbin/zic/zdump.c
252
cuthiyear = hi;
usr.sbin/zic/zdump.c
254
&& (hi = strtoimax(loend + 1, &hiend, 10),
usr.sbin/zic/zdump.c
257
cuthiyear = hi;
usr.sbin/zic/zdump.c
271
hi = lo;
usr.sbin/zic/zdump.c
272
if (hi < cuthitime) {
usr.sbin/zic/zdump.c
273
if (hi < absolute_min_time)
usr.sbin/zic/zdump.c
274
hi = absolute_min_time;
usr.sbin/zic/zdump.c
275
cuthitime = hi;
usr.sbin/zic/zdump.c
278
&& (hi = strtoimax(loend + 1, &hiend, 10),
usr.sbin/zic/zdump.c
285
if (hi < cuthitime) {
usr.sbin/zic/zdump.c
286
if (hi < absolute_min_time)
usr.sbin/zic/zdump.c
287
hi = absolute_min_time;
usr.sbin/zic/zdump.c
288
cuthitime = hi;