/freebsd/contrib/ncurses/ncurses/base/ |
H A D | MKunctrl.awk | 54 gap = "," 63 printf "%4d%s", offset, gap; 80 gap = gap " " 85 gap = "\n" 87 gap = gap " " 91 printf "\"%s\"%s", part, gap 106 gap = "," 114 printf "%4d%s", offset, gap; 119 gap = gap " " 123 gap = gap " " [all …]
|
H A D | lib_slk.c | 82 int gap, i, x; in _nc_format_slks() local 90 gap = (cols - 3 * (3 + 4 * max_length)) / 2; in _nc_format_slks() 92 if (gap < 1) in _nc_format_slks() 93 gap = 1; in _nc_format_slks() 98 x += (i == 3 || i == 7) ? gap : 1; in _nc_format_slks() 102 gap = cols - (int) (SP_PARM->_slk->maxlab * max_length) - 6; in _nc_format_slks() 104 if (gap < 1) in _nc_format_slks() 105 gap = 1; in _nc_format_slks() 109 x += (i == 3) ? gap : 1; in _nc_format_slks() 113 gap = (cols - (SP_PARM->_slk->maxlab * max_length) - 5) in _nc_format_slks() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/ata/ |
H A D | ceva,ahci-1v84.yaml | 49 - description: CIBGN - COMINIT Burst Gap Nominal. 50 - description: CIBGMX - COMINIT Burst Gap Maximum. 51 - description: CIBGMN - COMINIT Burst Gap Minimum. 60 - description: CWBGMN - COMWAKE Burst Gap Minimum. 61 - description: CWBGMX - COMWAKE Burst Gap Maximum. 62 - description: CWBGN - COMWAKE Burst Gap Nominal. 95 - description: CIBGN - COMINIT Burst Gap Nominal. 96 - description: CIBGMX - COMINIT Burst Gap Maximum. 97 - description: CIBGMN - COMINIT Burst Gap Minimum. 106 - description: CWBGMN - COMWAKE Burst Gap Minimu [all...] |
H A D | ahci-ceva.txt | 13 CIBGN : COMINIT Burst Gap Nominal. 14 CIBGMX: COMINIT Burst Gap Maximum. 15 CIBGMN: COMINIT Burst Gap Minimum. 20 CWBGMN: COMWAKE Burst Gap Minimum. 21 CWBGMX: COMWAKE Burst Gap Maximum. 22 CWBGN: COMWAKE Burst Gap Nominal.
|
/freebsd/tools/tools/mctest/ |
H A D | mctest.cc | 64 …s -m client number -i interface -g multicast group -s packet size -n number -t inter-packet gap\n"; in usage() 204 long gap = (result.tv_sec * 1000000) + result.tv_usec; in sink() local 205 if (gap > maxgap) in sink() 206 maxgap = gap; in sink() 207 if (gap < mingap) in sink() 208 mingap = gap; in sink() 212 cout << "maximum gap (usecs): " << maxgap << endl; in sink() 213 cout << "minimum gap (usecs): " << mingap << endl; in sink() 292 // @param gap ///< inter packet gap in nano-seconds 298 int number, int gap, int clients, short base_port) { in source() argument [all …]
|
H A D | mctest.1 | 38 .Op Fl t Ar inter-packet gap 73 .It Fl t Ar gap 74 Inter-packet gap in nanoseconds. 97 Send 100 packets of 1024 bytes, with an inter-packet gap of 1 nanosecond.
|
/freebsd/contrib/less/ |
H A D | linenum.c | 46 POSITION gap; /* Gap between prev and next */ member 50 * "gap" needs some explanation: the gap of any particular line number 53 * gap of a line number is the gap which would be introduced if this 97 anchor.gap = 0; in clr_linenum() 103 * Calculate the gap for an entry. 108 * Don't bother to compute a gap for the anchor. in calcgap() 109 * Also don't compute a gap for the last one in the list. in calcgap() 110 * The gap for that last one should be considered infinite, in calcgap() 115 p->gap = p->next->pos - p->prev->pos; in calcgap() 184 * gap, take it out and make it the spare. in add_lnum() [all …]
|
/freebsd/usr.bin/pr/ |
H A D | pr.1 | 51 .Op Ar gap 64 .Op Ar gap 119 width are positive decimal integers and gap is a nonnegative decimal integer. 164 .Op Ar gap 170 .Ar n*gap+1 , 175 .Ar gap 205 .Op Ar gap 215 .Ar gap+1 , 216 .Ar 2*gap+1 , 219 .Ar gap
|
H A D | pr.c | 76 static int ingap; /* expand input gap */ 82 static int ogap; /* contract output gap */ 1016 int gap = ingap; in inln() local 1023 if (gap) { in inln() 1036 col = gap - (col % gap); in inln() 1122 int gap = ogap; in otln() local 1147 ips += gap - (ips % gap); in otln() 1159 if ((tbps = ops + gap - (ops % gap)) > ips) in otln() 1204 if ((tbps = ops + gap - (ops % gap)) > ips) in otln() 1576 "usage: pr [+page] [-col] [-adFfmprt] [-e[ch][gap]] [-h header]\n", in usage() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVSymbol.cpp | 106 // Create a location entry for the gap. in addLocationGap() 107 LVLocation *Gap = getReader().createLocationSymbol(); in addLocationGap() local 108 Gap->setParent(this); in addLocationGap() 109 Gap->setAttr(dwarf::DW_AT_location); in addLocationGap() 110 Gap->addObject(LowPC, HighPC, in addLocationGap() 114 LVLocations::iterator Iter = Locations->insert(Pos, Gap); in addLocationGap() 116 // Add gap to Location Entry. in addLocationGap() 117 Gap->addObject(dwarf::DW_OP_hi_user, {}); in addLocationGap() 119 // Mark the entry as a gap. in addLocationGap() 120 Gap->setIsGapEntry(); in addLocationGap() [all …]
|
/freebsd/contrib/jemalloc/src/ |
H A D | extent_dss.c | 112 extent_t *gap; in extent_alloc_dss() local 126 gap = extent_alloc(tsdn, arena); in extent_alloc_dss() 127 if (gap == NULL) { in extent_alloc_dss() 145 * Compute how much page-aligned gap space (if any) is in extent_alloc_dss() 156 extent_init(gap, arena, gap_addr_page, in extent_alloc_dss() 189 extent_dalloc_gap(tsdn, arena, gap); in extent_alloc_dss() 191 extent_dalloc(tsdn, arena, gap); in extent_alloc_dss() 227 extent_dalloc(tsdn, arena, gap); in extent_alloc_dss()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_shadow_setup.cpp | 23 // The shadow gap is unprotected, so there is a chance that someone in ProtectGap() 30 " not protecting shadow gap, allocating gap's shadow\n" in ProtectGap() 34 "unprotected gap shadow"); in ProtectGap() 57 // protect the gap. in InitializeShadowMemory()
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | marvell-bt-8xxx.txt | 22 - marvell,wakeup-gap-ms: wakeup gap represents wakeup latency of the host 39 wakeup pin 13 and gap 100ms are configured so that firmware can wakeup host 64 marvell,wakeup-gap-ms = /bits/ 16 <0x64>; 81 marvell,wakeup-gap-ms = /bits/ 16 <0x64>;
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | GOFFObjectWriter.cpp | 82 size_t Gap = 0; member in __anonc8770be50111::GOFFOstream 160 size_t Gap; in newRecord() local 162 Gap = (RemainingSize % GOFF::RecordContentLength); in newRecord() 163 if (Gap) { in newRecord() 164 Gap = GOFF::RecordContentLength - Gap; in newRecord() 165 RemainingSize += Gap; in newRecord() 176 assert(Remains == Gap && "Wrong size of fill gap"); in fillRecord()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_shadow_setup.cpp | 26 // The shadow gap is unprotected, so there is a chance that someone in ProtectGap() 34 " not protecting shadow gap, allocating gap's shadow\n" in ProtectGap() 38 "unprotected gap shadow"); in ProtectGap() 94 // protect the gap. in InitializeShadowMemory()
|
/freebsd/contrib/dialog/ |
H A D | buttons.c | 284 dlg_button_x_step(const char **labels, int limit, int *gap, int *margin, int *step) in dlg_button_x_step() argument 300 if ((*gap = unused / (count + 3)) <= 0) { in dlg_button_x_step() 301 if ((*gap = unused / (count + 1)) <= 0) in dlg_button_x_step() 302 *gap = 1; in dlg_button_x_step() 303 *margin = *gap; in dlg_button_x_step() 305 *margin = *gap * 2; in dlg_button_x_step() 307 *step = *gap + (used + count - 1) / count; in dlg_button_x_step() 308 result = (*gap > 0) && (unused >= 0); in dlg_button_x_step() 321 int gap, margin, step; in dlg_button_layout() local 326 while (!dlg_button_x_step(labels, width, &gap, &margin, &step)) in dlg_button_layout() [all …]
|
/freebsd/usr.sbin/fdcontrol/ |
H A D | fdcontrol.8 | 174 .Ar sectrac , secsize , datalen , gap , ncyls , speed , 188 .It Ar gap 189 The length of the gap 3 parameter for read/write operations. 199 The length of the gap 3 when formatting media. 271 Sector gap: 27 272 Format gap: 108
|
/freebsd/contrib/ntp/sntp/ |
H A D | 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.
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CoverageMappingGen.cpp | 126 /// Whether this region is a gap region. The count from a gap region is set 188 void setGap(bool Gap) { GapRegion = Gap; } in setGap() argument 913 /// Gap region counter after terminate statement. 1286 /// Find a valid gap range between \p AfterLoc and \p BeforeLoc. 1290 // have valid source locations. Do not emit a gap region if this is the case in findGapAreaBetween() 1329 // If the start and end locations of the gap are both within the same macro in findGapAreaBetween() 1339 /// Emit a gap region between \p StartLoc and \p EndLoc with the given count. 1386 // If the start and end locations of the gap are both within the same macro in findAreaStartingFromTo() 1454 // If last statement contains terminate statements, add a gap area in VisitStmt() 1457 auto Gap = findGapAreaBetween(getEnd(LastStmt), getStart(Child)); in VisitStmt() local [all …]
|
/freebsd/contrib/processor-trace/libipt/src/ |
H A D | pt_event_queue.c | 69 uint8_t begin, end, gap, idx; in pt_evq_enqueue() local 87 gap = pt_evq_inc(end); in pt_evq_enqueue() 89 /* Leave a gap so we don't overwrite the last dequeued event. */ in pt_evq_enqueue() 90 if (begin == gap) in pt_evq_enqueue()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | range_tree.c | 58 * is not to bridge gaps (i.e. the maximum allowed gap size is 0). 204 void *arg, uint64_t start, uint64_t shift, uint64_t gap) in ZFS_BTREE_FIND_IN_BUF_FUNC() 235 rt->rt_gap = gap; in ZFS_BTREE_FIND_IN_BUF_FUNC() 297 uint64_t end = start + size, gap = rt->rt_gap; in range_tree_add_impl() local 310 * If this is a gap-supporting range tree, it is possible that we in range_tree_add_impl() 318 if (gap == 0) { in range_tree_add_impl() 351 * If gap != 0, we might need to merge with our neighbors even if we in range_tree_add_impl() 359 start - gap); in range_tree_add_impl() 361 gap); in range_tree_add_impl() 363 if (merge_before && gap != 0) in range_tree_add_impl() [all …]
|
/freebsd/usr.sbin/fdread/ |
H A D | fdutil.c | 148 * sectrac,secsize,datalen,gap,ncyls,speed,heads,f_gap,f_inter,offs2,flags[...] 153 * gap = gap length when reading 157 * f_gap = gap length when formatting 228 case 3: /* gap */ in parse_fmt() 229 if (getnum(s1, &out->gap)) in parse_fmt() 231 "bad numeric value for gap: %s", s1); in parse_fmt() 360 in.sectrac, secsize, in.datalen, in.gap, in.tracks, in print_fmt()
|
/freebsd/sys/netinet/ |
H A D | sctp_constants.h | 324 * gap ack's to figure out if you need to stroke a chunk for FR. 871 #define SCTP_IS_TSN_PRESENT(arry, gap) ((arry[(gap >> 3)] >> (gap & 0x07)) & 0x01) argument 872 #define SCTP_SET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] |= (0x01 << ((gap & 0x07)))) argument 873 #define SCTP_UNSET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] &= ((~(0x01 << ((gap & 0x07)))) & 0xff)) argument 874 #define SCTP_CALC_TSN_TO_GAP(gap, tsn, mapping_tsn) do { \ argument 876 gap = tsn - mapping_tsn; \ 878 gap = (MAX_TSN - mapping_tsn) + tsn + 1; \
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | OptimizedStructLayout.cpp | 104 // important if we get into the gap-filling stage below, but it in performOptimizedStructLayout() 175 // field before the gap, or 0 if the gap is at the beginning of the in performOptimizedStructLayout() 177 // criteria below. If no such field exists, proceed to the next gap. in performOptimizedStructLayout() 180 // order to fill any remaining gap following that field. in performOptimizedStructLayout() 192 // - When filling a gap betweeen fields, the field must fit. in performOptimizedStructLayout() 210 // a larger object greedily may leave a gap that cannot be filled as in performOptimizedStructLayout() 227 // filling a gap between fixed-offset fields, which doesn't happen very in performOptimizedStructLayout()
|
/freebsd/sys/contrib/device-tree/Bindings/regulator/ |
H A D | richtek,rt4831-regulator.yaml | 20 Its voltage should be configured above 0.15V to 0.2V gap larger than the 21 voltage needed for DSVP and DSVN. Too much voltage gap could improve the
|