Lines Matching +refs:val +refs:top
1030 int64_t val = 0;
1066 val = val * base + x;
1068 return (neg ? -val : val);
1779 uint64_t val = key[i].dttk_value;
1781 hashval += (val >> 48) & 0xffff;
1785 hashval += (val >> 32) & 0xffff;
1789 hashval += (val >> 16) & 0xffff;
1793 hashval += val & 0xffff;
1856 top:
1898 * send us back to top.
1947 goto top;
1993 goto top;
2005 goto top;
2205 goto top;
2228 int64_t val = (int64_t)nval;
2230 if (val < 0) {
2232 if (val <= DTRACE_QUANTIZE_BUCKETVAL(i)) {
2239 if (val < DTRACE_QUANTIZE_BUCKETVAL(i)) {
2259 int32_t val = (int32_t)nval, level;
2264 if (val < base) {
2272 level = (val - base) / step;
2336 * power of one plus the high magnitude -- return the top bucket.
3177 uint64_t val;
3181 val = pv->dtpv_pops.dtps_getargval(pv->dtpv_arg,
3185 val = dtrace_getarg(ndx, aframes);
3197 return (val);
3591 * Skip whitespace until we find either a top-level Object, moving
3684 * ERROR: expected to find a top-level object or array.
5108 uint64_t val, digit;
5121 val = (base == 10 && i < 0) ? i * -1 : i;
5129 for (*end-- = '\0'; val; val /= base) {
5130 if ((digit = val % base) <= '9' - '0') {
5482 uint8_t *ptr8, val;
5513 val = ptr8[i];
5515 if (val == 0) {
5518 for (; val; val /= 10) {
5519 *end-- = '0' + (val % 10);
5531 uint16_t val;
5613 val = ip6._S6_un._S6_u8[i];
5615 if (val == 0) {
5618 for (; val; val /= 10) {
5619 *end-- = '0' + val % 10;
5654 val = (ip6._S6_un._S6_u8[i] << 8) +
5657 if (val == 0) {
5660 for (; val; val /= 16) {
5661 *end-- = digits[val % 16];
6504 uintptr_t val = (uintptr_t)ecb;
6546 if (val >= ((uintptr_t)1 << shift))
6547 c[i++] = "0123456789abcdef"[(val & mask) >> shift];
6622 dtrace_action_chill(dtrace_mstate_t *mstate, hrtime_t val)
6648 if (cpu->cpu_dtrace_chilled + val > dtrace_chill_max ||
6649 cpu->cpu_dtrace_chilled + val < cpu->cpu_dtrace_chilled) {
6654 while (dtrace_gethrtime() - now < val)
6663 cpu->cpu_dtrace_chilled += val;
6791 uint64_t val = *valp;
6807 c = dtrace_load8(val++);
6810 c = dtrace_fuword8((void *)(uintptr_t)val++);
6825 c = dtrace_load8(val++);
6828 c = dtrace_fuword8((void *)(uintptr_t)val++);
6839 *valp = val;
6928 * declaration of the automatic 'val': by looking at the
6937 uint64_t val = 0;
6939 uint64_t val;
7088 offs, aggbuf, v, val);
7186 val = dtrace_dif_emulate(dp, &mstate, vstate, state);
7197 cpuid, val);
7236 dtrace_action_chill(&mstate, val);
7242 dtrace_action_raise(val);
7254 dtrace_speculation_commit(state, cpuid, val);
7259 dtrace_speculation_discard(state, cpuid, val);
7272 tracememsize = val;
7292 valoffs + sizeof (uint64_t), val);
7346 !dtrace_vcanload((void *)(uintptr_t)val,
7351 &val, end, act->dta_intuple,
7362 DTRACE_STORE(uint8_t, tomax, valoffs, val);
7365 DTRACE_STORE(uint16_t, tomax, valoffs, val);
7368 DTRACE_STORE(uint32_t, tomax, valoffs, val);
7371 DTRACE_STORE(uint64_t, tomax, valoffs, val);
7875 top:
7935 goto top;
7952 goto top;
9454 err += efunc(pc, "invalid val type %u\n", type);
11663 * We're going to be storing at the top of the buffer,
11685 * top of the buffer and that there is room for us
11697 * that the top of the buffer is aligned.
11854 * top of the buffer to the wrapped offset.
14316 dtrace_optval_t val)
14326 if (option != DTRACEOPT_CPU && val < 0)
14342 if (val < 0)
14345 if (val >= LONG_MAX) {
14360 val = LONG_MAX - (1 << 27) + 1;
14364 state->dts_options[option] = val;