Searched refs:high (Results 1 - 25 of 374) sorted by path

1234567891011>>

/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c231 uint16_t high = DTRACE_LLQUANTIZE_HIGH(arg); local
248 while (order <= high) {
H A Ddt_consume.c73 #define llquantize_high u.llquantize.high
82 uint16_t high; member in struct:dt_prepare_args::__anon3::llquantize_args
1165 uint16_t factor, low, high, nsteps; local
1180 high = DTRACE_LLQUANTIZE_HIGH(arg);
1187 if (size > INT32_MAX || factor < 2 || low >= high ||
1225 args->llquantize_high = high;
1241 uint16_t factor, low, high, nsteps; local
1257 high = args.llquantize_high;
1277 while (order <= high) {
1316 uint16_t factor, low, high, nstep local
[all...]
/freebsd-current/contrib/bc/src/
H A Dvector.c417 size_t low = 0, high = v->len; local
419 while (low < high)
421 size_t mid = low + (high - low) / 2;
426 else if (result < 0) high = mid;
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-ifelse.mk149 # change has a high chance of breaking _some_ existing code and would need
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp9708 else if( lcVerbosity == "high" )
9778 | Opt( setVerbosity, "quiet|normal|high" )
14673 // - and potentially do more iterations if there's a high variance.
16125 { "estimated high mean high std dev", 14, ColumnInfo::Right }
/freebsd-current/contrib/byacc/
H A Dlalr.c254 int high = goto_map[symbol + 1]; local
261 assert(low <= high);
262 middle = (low + high) >> 1;
269 high = middle - 1;
H A Doutput.c32 static long high; variable
903 if (loc > high)
904 high = loc;
929 high = 0;
1051 if (high >= MAXYYINT)
1053 fprintf(stderr, "YYTABLESIZE: %ld\n", high);
1059 fprintf(code_file, "#define YYTABLESIZE %ld\n", high);
1063 for (i = 1; i <= high; i++)
1089 for (i = 1; i <= high; i++)
1114 if (limit < high)
[all...]
/freebsd-current/contrib/dialog/
H A Dfselect.c162 int high = getmaxy(list->win); local
167 if (list->choice - list->offset >= high)
168 list->offset = list->choice - high + 1;
H A Dprogressbox.c46 int high, wide; member in struct:__anon465
76 obj->high = obj->old_high;
90 dlg_auto_size(title, obj->prompt, &obj->high, &obj->wide, MIN_HIGH, MIN_WIDE);
92 dlg_print_size(obj->high, obj->wide);
93 dlg_ctl_size(obj->high, obj->wide);
96 y = dlg_box_y_ordinate(obj->high);
97 thigh = obj->high - (2 * MARGIN);
99 obj->obj.win = dlg_new_window(obj->high, obj->wide, y, x);
103 obj->high, obj->wide,
115 dlg_print_autowrap(obj->obj.win, obj->prompt, obj->high, ob
[all...]
H A Dtailbox.c181 int high = getmaxy(obj->obj.win) - (2 * MARGIN + (obj->obj.bg_task ? 1 : 3)); local
184 last_lines(obj, high);
185 print_page(obj, high, wide);
H A Dttysize.c69 dlg_ttysize(int fd, int *high, int *wide) argument
77 *high = WINSIZE_ROWS(size);
83 *high = 24;
H A Dutil.c1042 int *high, int *wide)
1096 if (high != 0)
1097 *high = y;
1141 int high = LINES; local
1150 if ((len = dlg_count_columns(prompt)) > high)
1151 high = len;
1153 dummy = newwin(high, width, 0, 0);
1164 dlg_print_autowrap(dummy, prompt, high, width);
1280 int high = 0, wide = 0; local
1288 justify_text((WINDOW *) 0, prompt, max_y, max_x, &high,
1038 justify_text(WINDOW *win, const char *prompt, int limit_y, int limit_x, int *high, int *wide) argument
1353 int high; local
[all...]
/freebsd-current/contrib/diff/src/
H A Ddiff3.c478 being the high water mark and move the current block up
480 b) Check the next block in the diff that the high water
483 *If* the high water mark is above
487 block up. Set the high water mark to the max of
488 the high end of this block and the current. Repeat b.
585 /* Setup low and high water threads, diffs, and marks. */
691 lin low[2], high[2];
709 high[d] = D_HIGH_MAPLINE (last_using[d], FC, FO, highc);
714 high[d] = D_HIGH_MAPLINE (last_diff3, FILEC, FILE0 + d, highc);
718 result = create_diff3_block (low[0], high[
688 lin low[2], high[2]; local
[all...]
/freebsd-current/contrib/expat/lib/
H A Dsiphash.h109 #define SIP_ULL(high, low) ((((uint64_t)high) << 32) | (low))
H A Dxmlparse.c147 # error You do not have support for any sources of high quality entropy \
947 /* "Failproof" high quality providers: */
955 /* Try high quality providers first .. */
/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-printers.cc304 uint64_t high = static_cast<uint64_t>(v >> 64); local
308 while (high != 0 || low != 0) {
309 uint64_t high_mod = high % 10;
310 high = high / 10;
/freebsd-current/contrib/jemalloc/src/
H A Dextent.c754 size_t high = atomic_load_zu(&highpages, ATOMIC_RELAXED); local
755 while (cur > high && !atomic_compare_exchange_weak_zu(
756 &highpages, &high, cur, ATOMIC_RELAXED, ATOMIC_RELAXED)) {
760 * Note that high is updated in case of CAS failure.
763 if (cur > high && prof_gdump_get_unlocked()) {
/freebsd-current/contrib/lib9p/pytest/
H A Dnumalloc.py173 high = len(self.avail) - 1
174 while low <= high:
175 mid = low + ((high - low) // 2)
179 high = mid - 1
186 # Low > high: no block actually contains val, or
281 If needed, widen our range to include new high val -- i.e.,
283 new all time high; fail if we have autoextend disabled.
317 # If we're freeing a range, check that the high val
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_mtree.c1540 int high, low; local
1583 high = parse_hex_nibble(digest[i]);
1585 if (high == -1 || low == -1) {
1591 digest_buf[j] = high << 4 | low;
H A Darchive_read_support_format_rar.c1571 char extra, high; local
1576 high = (char)highbyte;
1578 extra = high = 0;
1582 filename[filename_size++] = high;
H A Darchive_write_set_format_iso9660.c1205 get_num_opt(struct archive_write *a, int *num, int high, int low, argument
1229 if (data > high) {
1232 "option ``%s''", high, key);
2213 joliet_allowed_char(unsigned char high, unsigned char low) argument
2215 int utf16 = (high << 8) | low;
3356 * | 'P'| 'N'| 14 | 01 | dev_t high | dev_t low |
/freebsd-current/contrib/libedit/
H A Dchared.c263 c__next_word(wchar_t *p, wchar_t *high, int n, int (*wtest)(wint_t)) argument
266 while ((p < high) && !(*wtest)(*p))
268 while ((p < high) && (*wtest)(*p))
271 if (p > high)
272 p = high;
281 cv_next_word(EditLine *el, wchar_t *p, wchar_t *high, int n, argument
288 while ((p < high) && (*wtest)(*p) == test)
295 while ((p < high) && iswspace(*p))
300 if (p > high)
301 return high;
375 cv__endword(wchar_t *p, wchar_t *high, int n, int (*wtest)(wint_t)) argument
[all...]
/freebsd-current/contrib/libevent/
H A Dbufferevent.c111 * Sometimes bufferevent's implementation can overrun high watermarks
123 if (!bev->wm_read.high)
127 if (evbuffer_get_length(bev->input) < bev->wm_read.high)
145 if (size >= bufev->wm_read.high)
602 bufev->wm_write.high = highmark;
607 bufev->wm_read.high = highmark;
610 /* There is now a new high-water mark for read.
629 /* There is now no high-water mark for read. */
649 *highmark = bufev->wm_write.high;
659 *highmark = bufev->wm_read.high;
[all...]
H A Dbufferevent_async.c270 read_high = bev->wm_read.high;
H A Dbufferevent_filter.c132 * over its high watermark such that we should not write to it in a given
140 u->wm_write.high &&
141 evbuffer_get_length(u->output) >= u->wm_write.high;
144 /** Return 1 if our input buffer is at or over its high watermark such that we
152 bufev->wm_read.high &&
153 evbuffer_get_length(bufev->input) >= bufev->wm_read.high;
311 * unless we're reading data and under our high-water mark.*/
319 if (state == BEV_NORMAL && bev->wm_read.high)
320 limit = bev->wm_read.high -
374 bevf->underlying->wm_write.high)
[all...]

Completed in 524 milliseconds

1234567891011>>