| /NextBSD/contrib/ncurses/ncurses/base/ |
| HD | MKunctrl.awk | 53 gap = "," 62 printf "%4d%s", offset, gap; 79 gap = gap " " 84 gap = "\n" 86 gap = gap " " 90 printf "\"%s\"%s", part, gap 105 gap = "," 113 printf "%4d%s", offset, gap; 118 gap = gap " " 122 gap = gap " " [all …]
|
| HD | lib_slk.c | 81 int gap, i, x; in _nc_format_slks() local 89 gap = (cols - 3 * (3 + 4 * max_length)) / 2; in _nc_format_slks() 91 if (gap < 1) in _nc_format_slks() 92 gap = 1; in _nc_format_slks() 97 x += (i == 3 || i == 7) ? gap : 1; in _nc_format_slks() 101 gap = cols - (int) (SP_PARM->_slk->maxlab * max_length) - 6; in _nc_format_slks() 103 if (gap < 1) in _nc_format_slks() 104 gap = 1; in _nc_format_slks() 108 x += (i == 3) ? gap : 1; in _nc_format_slks() 112 gap = (cols - (SP_PARM->_slk->maxlab * max_length) - 5) in _nc_format_slks() [all …]
|
| /NextBSD/tools/tools/mctest/ |
| HD | mctest.cc | 206 long gap = (result.tv_sec * 1000000) + result.tv_usec; in sink() local 207 if (gap > maxgap) in sink() 208 maxgap = gap; in sink() 209 if (gap < mingap) in sink() 210 mingap = gap; in sink() 300 int number, int gap, int clients, short base_port) { in source() argument 381 sleeptime.tv_nsec = gap; in source() 390 if (gap > 0) in source() 456 int gap = 0; ///< inter packet gap (in nanoseconds) in main() local 490 gap = atoi(optarg); in main() [all …]
|
| HD | mctest_run.sh | 15 gap=1000
|
| /NextBSD/sys/netinet/ |
| HD | sctp_constants.h | 895 #define SCTP_IS_TSN_PRESENT(arry, gap) ((arry[(gap >> 3)] >> (gap & 0x07)) & 0x01) argument 896 #define SCTP_SET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] |= (0x01 << ((gap & 0x07)))) argument 897 #define SCTP_UNSET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] &= ((~(0x01 << ((gap & 0x07)))) & 0xff)) argument 898 #define SCTP_CALC_TSN_TO_GAP(gap, tsn, mapping_tsn) do { \ argument 900 gap = tsn - mapping_tsn; \ 902 gap = (MAX_TSN - mapping_tsn) + tsn + 1; \
|
| HD | sctp_indata.c | 318 uint32_t gap, i, cumackp1; in sctp_mark_non_revokable() local 332 SCTP_CALC_TSN_TO_GAP(gap, tsn, asoc->mapping_array_base_tsn); in sctp_mark_non_revokable() 333 if (!SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap)) { in sctp_mark_non_revokable() 334 SCTP_PRINTF("gap:%x tsn:%x\n", gap, tsn); in sctp_mark_non_revokable() 340 SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap); in sctp_mark_non_revokable() 341 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_mark_non_revokable() 348 SCTP_CALC_TSN_TO_GAP(gap, i, asoc->mapping_array_base_tsn); in sctp_mark_non_revokable() 349 if (SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap)) { in sctp_mark_non_revokable() 1291 uint32_t tsn, gap; in sctp_process_a_data_chunk() local 1331 SCTP_CALC_TSN_TO_GAP(gap, tsn, asoc->mapping_array_base_tsn); in sctp_process_a_data_chunk() [all …]
|
| /NextBSD/contrib/dialog/ |
| HD | buttons.c | 270 dlg_button_x_step(const char **labels, int limit, int *gap, int *margin, int *step) in dlg_button_x_step() argument 285 if ((*gap = unused / (count + 3)) <= 0) { in dlg_button_x_step() 286 if ((*gap = unused / (count + 1)) <= 0) in dlg_button_x_step() 287 *gap = 1; in dlg_button_x_step() 288 *margin = *gap; in dlg_button_x_step() 290 *margin = *gap * 2; in dlg_button_x_step() 292 *step = *gap + (used + count - 1) / count; in dlg_button_x_step() 293 result = (*gap > 0) && (unused >= 0); in dlg_button_x_step() 307 int gap, margin, step; in dlg_button_layout() local 310 while (!dlg_button_x_step(labels, width, &gap, &margin, &step)) in dlg_button_layout() [all …]
|
| HD | inputstr.c | 565 int gap = indx[offset] - indx[offset - 1]; in dlg_edit_string() local 567 if (gap > 0) { in dlg_edit_string() 569 (string[i] = string[i + gap]) != '\0'; in dlg_edit_string() 581 int gap = ((offset <= limit) in dlg_edit_string() local 584 if (gap > 0) { in dlg_edit_string() 586 (string[i] = string[i + gap]) != '\0'; in dlg_edit_string()
|
| /NextBSD/contrib/less/ |
| HD | linenum.c | 46 POSITION gap; /* Gap between prev and next */ member 95 anchor.gap = 0; in clr_linenum() 115 p->gap = p->next->pos - p->prev->pos; 193 mingap = anchor.next->gap; 196 if (p->gap <= mingap) 199 mingap = p->gap;
|
| /NextBSD/gnu/usr.bin/rcs/lib/ |
| HD | rcsedit.c | 351 static size_t gap, gapsize, linelim; variable 366 gap = gapsize = linelim, 369 if (n < gap) 370 movelines(line+n+gapsize, line+n, gap-n); 371 else if (gap < n) 372 movelines(line+gap, line+gap+gapsize, n-gap); 375 gap = n + 1; 387 if (l < gap) 388 movelines(line+l+gapsize, line+l, gap-l); 389 else if (gap < n) [all …]
|
| /NextBSD/contrib/gcc/config/rs6000/ |
| HD | linux-unwind.h | 108 char gap[SIGNAL_FRAMESIZE]; in get_regs() member 133 char gap[SIGNAL_FRAMESIZE]; in get_regs() member 165 char gap[SIGNAL_FRAMESIZE]; in get_regs() member 175 char gap[SIGNAL_FRAMESIZE + 16]; in get_regs() member
|
| /NextBSD/usr.bin/pr/ |
| HD | pr.c | 998 int gap = ingap; in inln() local 1005 if (gap) { in inln() 1018 col = gap - (col % gap); in inln() 1104 int gap = ogap; in otln() local 1129 ips += gap - (ips % gap); in otln() 1141 if ((tbps = ops + gap - (ops % gap)) > ips) in otln() 1186 if ((tbps = ops + gap - (ops % gap)) > ips) in otln()
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| HD | zfs_fm.c | 441 uint32_t gap = nstart - end; in shrink_ranges() local 442 if (gap < new_allowed_gap) { in shrink_ranges() 446 if (gap < mingap) in shrink_ranges() 447 mingap = gap; in shrink_ranges() 474 int gap = start - r[count - 1].zr_end; in add_range() local 476 if (gap < eip->zei_allowed_mingap) { in add_range() 480 if (gap < eip->zei_mingap) in add_range() 481 eip->zei_mingap = gap; in add_range()
|
| /NextBSD/contrib/compiler-rt/lib/msan/ |
| HD | msan_linux.cc | 62 uptr gap = 16 * GetPageSizeCached(); in ProtectMemoryRange() local 63 beg += gap; in ProtectMemoryRange() 64 size -= gap; in ProtectMemoryRange()
|
| /NextBSD/contrib/groff/src/roff/troff/ |
| HD | column.cpp | 518 vunits gap = height - *bottomp; in justify() local 525 if (total <= gap) { in justify() 527 gap -= amount[i]; in justify() 531 vunits v = scale(amount[i], gap, total); in justify() 533 gap -= v; in justify() 541 *bottomp = height - gap; in justify()
|
| /NextBSD/contrib/ntp/sntp/ |
| HD | invoke-sntp.texi | 73 * sntp gap:: gap option (-g) 121 -g Num gap The gap (in milliseconds) between time requests 236 one after another, with a 2-second gap in between each query. 241 @node sntp gap 242 @subsection gap option (-g) 243 @cindex sntp-gap 245 This is the ``the gap (in milliseconds) between time requests'' option.
|
| HD | main.c | 73 struct timeval gap; variable 164 gap.tv_usec = max(0, OPT_VALUE_GAP * 1000); in sntp_main() 165 gap.tv_usec = min(gap.tv_usec, 999999); in sntp_main() 633 event_add(ev_xmt_timer, &gap); in xmt_timer_cb() 636 (u_int)gap.tv_usec)); in xmt_timer_cb()
|
| HD | sntp-opts.def | 86 one after another, with a 2-second gap in between each query. 97 name = gap; 99 descrip = "The gap (in milliseconds) between time requests";
|
| /NextBSD/sys/netinet6/ |
| HD | in6_pcb.c | 784 int i, gap; in in6_pcbpurgeif0() local 801 gap = 0; in in6_pcbpurgeif0() 807 gap++; in in6_pcbpurgeif0() 808 } else if (gap != 0) { in in6_pcbpurgeif0() 809 im6o->im6o_membership[i - gap] = in in6_pcbpurgeif0() 813 im6o->im6o_num_memberships -= gap; in in6_pcbpurgeif0()
|
| /NextBSD/usr.sbin/fdread/ |
| HD | fdutil.c | 254 if (getnum(s1, &out->gap)) in parse_fmt() 385 in.sectrac, secsize, in.datalen, in.gap, in.tracks, in print_fmt()
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | bout.c | 1066 bfd_vma gap; in abs32code() local 1071 gap = value - (dot - shrink); in abs32code() 1073 if (-1 << 23 < (long)gap && (long)gap < 1 << 23) in abs32code() 1096 bfd_vma gap; in aligncode() local 1113 gap = old_end - ((dot + size) & ~size); in aligncode()
|
| /NextBSD/sys/dev/firewire/ |
| HD | 00README | 35 show topology map, change gap count, bus reset, etc. 55 reduce gap overhead.
|
| /NextBSD/usr.sbin/fdcontrol/ |
| HD | fdcontrol.c | 173 printf("\tSector gap:\t%d\n", ft.gap); in main()
|
| /NextBSD/sys/sys/ |
| HD | fdcio.h | 87 int gap; /* gap len between sectors */ member
|
| /NextBSD/contrib/dtc/Documentation/ |
| HD | manual.txt | 423 | (alignment gap) (*) | 427 | (alignment gap) | 433 | (alignment gap) | 594 * [align gap to next 4 bytes boundary] 601 * [align gap to next 4 bytes boundary]
|