Searched refs:high (Results 1 - 12 of 12) sorted by relevance

/darwin-on-arm/xnu/osfmk/profiling/i386/
H A Dprofile-md.h59 * _profile_cnt_to_decimal now takes the low/high values as separate arguments.
178 prof_uptrint_t high; /* high 32 bits of counter */ member in struct:prof_cnt_t
188 : "=g" ((cnt).low), "=g" ((cnt).high) \
189 : "0" ((cnt).low), "1" ((cnt).high))
193 : "=g,r" ((cnt).low), "=g,r" ((cnt).high) \
195 "0,0" ((cnt).low), "1,1" ((cnt).high))
199 : "=g,r" ((cnt).low), "=g,r" ((cnt).high) \
200 : "r,g" ((val).low), "r,g" ((val).high), \
201 "0,0" ((cnt).low), "1,1" ((cnt).high))
[all...]
H A Dprofile-md.c57 * Update overflow_ticks for # times the lprofil counter overflows into high word.
88 * Print # histogram ticks too low/too high for server/mk.
900 PROF_CNT_ADD(pv->stats.overflow_ticks, lptr[i].high);
1004 "%12s histogram ticks were too high\n",
1112 (unsigned long)stats->stats_unused[i].high,
/darwin-on-arm/xnu/libkern/i386/
H A DOSAtomic.s44 movzbl %al, %eax #; clear out the high bytes
58 movl 8+8(%esp), %edx #; high 32-bits of oldValue
60 movl 16+8(%esp), %ecx #; high 32-bits of newValue
65 movzbl %al, %eax #; clear out the high bytes
82 movl 4(%edi), %edx #; load high 32-bits of *ptr
/darwin-on-arm/xnu/libkern/x86_64/
H A DOSAtomic.s45 movzbq %al, %rax #; clear out the high bytes
67 movzbq %al, %rax #; clear out the high bytes
/darwin-on-arm/xnu/osfmk/i386/
H A Dhpet.c463 uint32_t high; local
467 high = *(regp + 1);
469 } while (high != *(regp + 1));
471 return (((uint64_t) high) << 32) | low;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_search.c127 static Boolean CompareRange(u_long val, u_long low, u_long high);
128 static Boolean CompareWideRange(u_int64_t val, u_int64_t low, u_int64_t high);
130 static Boolean CompareRange( u_long val, u_long low, u_long high )
132 return( (val >= low) && (val <= high) );
135 static Boolean CompareWideRange( u_int64_t val, u_int64_t low, u_int64_t high )
137 return( (val >= low) && (val <= high) );
139 //#define CompareRange(val, low, high) ((val >= low) && (val <= high))
/darwin-on-arm/xnu/bsd/netat/
H A Dadsp_internal.h58 #define high(x) ((byte)((x) >> 8)) macro
H A Dadsp_Control.c279 sp->f.data[0] = high(sp->sapb->u.attnParams.attnCode);
/darwin-on-arm/xnu/osfmk/kdp/
H A Dkdp_udp.c453 unsigned int high, low, sum; local
455 high = low = 0;
458 high += c[0] + c[2];
463 sum = (high << 8) + low;
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_exec.c2921 uint64_t low, high, value; local
2934 high = random();
2935 value = high << 32 | low;
/darwin-on-arm/xnu/bsd/net/
H A Dpf.c1889 printf(" [lo=%u high=%u win=%u modulator=%u", s->src.seqlo,
1894 printf(" [lo=%u high=%u win=%u modulator=%u", s->dst.seqlo,
3180 unsigned int high = r->rpool.proxy_port[1]; local
3188 high = 65535;
3280 } else if (low == 0 && high == 0) {
3284 } else if (low == high) {
3292 if (low > high) {
3294 low = high;
3295 high = tmp;
3297 /* low < high */
[all...]
/darwin-on-arm/xnu/bsd/dev/i386/
H A Ddis_tables.c1444 #define REX_R 0x04 /* high order bit extension of ModRM reg field */
1445 #define REX_X 0x02 /* high order bit extension of SIB index field */
1476 * Get the next byte and separate the op code into the high and low nibbles.
1479 dtrace_get_opcode(dis86_t *x, uint_t *high, uint_t *low) argument
1497 *high = byte >> 4 & 0xf; /* xxxx---- bits 7 to 4 */
1954 uint_t opcode1; /* high nibble of 1st byte */
1957 uint_t opcode4; /* high nibble of 2nd byte */
1959 uint_t opcode6; /* high nibble of 3rd byte */

Completed in 123 milliseconds