/src/sys/arch/amiga/dev/ |
gvpbus.c | 159 struct gvpbus_args *gap; local in function:gvpbusprint 161 gap = aux; 167 if (gap->prod == GVP_IOEXTEND)
|
gtsc.c | 119 struct gvpbus_args *gap; local in function:gtscmatch 121 gap = aux; 122 if (gap->flags & GVP_SCSI) 134 struct gvpbus_args *gap; local in function:gtscattach 139 gap = aux; 141 sc->sc_cregs = rp = gap->zargs.va; 148 if ((gap->flags & GVP_NOBANK) == 0) { 162 else if (gap->flags & GVP_24BITDMA) 164 else if (gap->flags & GVP_25BITDMA) 170 if ((gap->flags & GVP_NOBANK) == 0 [all...] |
gvpio.c | 74 struct gvpbus_args *gap; local in function:gvpiomatch 76 gap = aux; 78 if (gap->flags & GVP_IO) 101 struct gvpbus_args *gap; local in function:gvpioattach 109 gap = aux; 114 gbase = gap->zargs.va;
|
fd.c | 138 u_int gap; /* track gap size in long words */ member in struct:fdtype 230 * read size is (nsectors + 1) * mfm secsize + gap bytes + 2 shorts 231 * write size is nsectors * mfm secsize + gap bytes + 3 shorts 1725 * not yet one sector (- 1 long) gap. 1728 for (i = 0; i < sc->type->gap; i++) 1849 * if we are at gap then we can no longer be sure 1875 for (i = 0; i < sc->type->gap; i++) { 1883 * leading sector gap 1909 * sector info/data gap [all...] |
/src/distrib/utils/more/ |
linenum.c | 82 off_t gap; /* Gap between prev and next */ member in struct:linenum 86 * "gap" needs some explanation: the gap of any particular line number 89 * gap of a line number is the gap which would be introduced if this 130 anchor.gap = 0; 136 * Calculate the gap for an entry. 143 * Don't bother to compute a gap for the anchor. 144 * Also don't compute a gap for the last one in the list [all...] |
/src/games/testpat/ |
testpat.c | 254 int gap = (circle_pos[(int)(5 * grid_unit)][1] - local in function:main 258 for (xpos = 0; xpos <= x_limit; xpos += 2 * gap) { 264 for (col = xpos; col < xpos + gap; col++) { 275 for (col = xpos + gap ; col < xpos + (2 * gap);
|
/src/lib/libm/noieee_src/ |
n_support.c | 79 static const short prep1=57, gap=7, bias=129 ; variable in typeref:typename:const short 83 static const short prep1=54, gap=4, bias=1023 ; variable in typeref:typename:const short 114 if((k = (k>>gap)+ N) > 0 ) 115 if( k < (mexp>>gap) ) *px = (*px&~mexp) | (k<<gap); 120 {*px=(*px&~mexp)|(short)(1<<gap); x *= scalb(1.0,k-1);} 158 return (int)(((*px&mexp)>>gap)-bias); 162 return ( (k>>gap) - bias ); 231 else if ( ((*pp & mexp)>>gap) <= 1 )
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_linux.cc | 63 uptr gap = 16 * GetPageSizeCached(); local in function:__msan::ProtectMemoryRange 64 beg += gap; 65 size -= gap;
|
/src/usr.sbin/acpitools/aml/ |
aml_memman.c | 190 int gap; local in function:memman_flexsize_add_histogram 196 gap = memman->flex_mem_histogram[i].mem_size - size; 197 if (gap >= (tolerance * -1) && gap <= tolerance) {
|
/src/lib/libkvm/ |
kvm.c | 652 size_t gap; local in function:kvm_dump_header 668 gap = kd->kcore_hdr->c_hdrsize - sizeof(kcore_hdr_t); 669 if (clear_gap(kd, write_buf, cookie, gap) == -1) 682 gap = kd->kcore_hdr->c_seghdrsize - sizeof(seghdr); 683 if (clear_gap(kd, write_buf, cookie, gap) == -1) 691 gap = seghdr.c_size - kd->cpu_dsize; 692 if (clear_gap(kd, write_buf, cookie, gap) == -1) 705 gap = kd->kcore_hdr->c_seghdrsize - sizeof(seghdr); 706 if (clear_gap(kd, write_buf, cookie, gap) == -1)
|
/src/usr.bin/elf2aout/ |
elf2aout.c | 365 /* If there is a gap between text and data, we'll fill it when we copy 414 uint32_t gap = ph[i].p_vaddr - cur_vma; local in function:main 416 if (gap > 65536) 418 "Intersegment gap (%u bytes) too large", gap); 420 warnx("%u byte intersegment gap", gap); 422 while (gap) { 424 (gap > sizeof obuf 425 ? sizeof obuf : gap)); [all...] |
/src/sys/netinet/ |
dccp_tcplike.c | 664 u_int64_t gap, offset, seqnr; local in function:_cwndvector_size 671 gap = seqnr - cb->cv_hs; 673 offset = gap % 8; 674 t = cb->cv_hp + (gap/8); 687 u_int64_t gap, offset; local in function:_cwndvector_state 693 gap = seqnr - cb->cv_hs; 696 gap = seqnr + 0x1000000000000LL - cb->cv_hs; /* seq nr = 48 bits */ 699 if (gap >= cb->cv_size) { 700 /* gap is bigger than cwndvector size? baaad */ 704 offset = gap % 8 715 u_int64_t offset, dc, gap; local in function:_add_to_cwndvector 776 int64_t gap; local in function:_remove_from_cwndvector 811 int64_t gap, bytegap; local in function:_chop_cwndvector [all...] |
in_pcb.c | 818 int i, gap; local in function:in_purgeifmcast 837 for (i = 0, gap = 0; i < imo->imo_num_memberships; i++) { 840 gap++; 841 } else if (gap != 0) 842 imo->imo_membership[i - gap] = imo->imo_membership[i]; 844 imo->imo_num_memberships -= gap;
|
dccp_usrreq.c | 2779 int64_t gap; local in function:dccp_update_ackvector 2792 gap = seqnr - dp->av_hs; 2798 t = dp->av_hp + (gap/4); 2813 int64_t gap; local in function:dccp_increment_ackvector 2830 gap = seqnr - dp->av_hs; 2833 gap = seqnr + 0x1000000000000LL - dp->av_hs; /* seqnr = 48 bits */ 2835 DCCP_DEBUG((LOG_INFO, "dccp_increment_ackvecktor gap=%llu av_size %d\n", gap, dp->av_size)); 2837 if (gap >= dp->av_size) { 2838 /* gap is bigger than ackvector size? baaad * 2990 u_int64_t gap, offset; local in function:dccp_ackvector_state [all...] |
sctp_indata.c | 1672 u_int32_t tsn, gap; local in function:sctp_process_a_data_chunk 1696 gap = tsn - asoc->mapping_array_base_tsn; 1698 gap = (MAX_TSN - asoc->mapping_array_base_tsn) + tsn + 1; 1700 if (gap >= (SCTP_MAPPING_ARRAY << 3)) { 1704 if (gap >= (uint32_t)(asoc->mapping_array_size << 3)) { 1714 if (SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap)) { 2200 SCTP_SET_TSN_PRESENT(asoc->mapping_array, gap); 2397 /* is there a gap now ? */ 2401 ((was_a_gap) && (is_a_gap == 0)) || /* was a gap, but no longer is one */ 2403 (is_a_gap) || /* is still a gap */ 4418 u_int32_t new_cum_tsn, gap, back_out_htsn; local in function:sctp_handle_forward_tsn [all...] |
sctp_pcb.c | 4495 int cnt, strmat, gap; local in function:sctp_drain_mbufs 4512 gap = tsn - asoc->mapping_array_base_tsn; 4514 gap = (MAX_TSN - asoc->mapping_array_base_tsn) + 4519 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); 4543 gap = tsn - 4546 gap = (MAX_TSN - 4554 gap);
|
/src/sys/uvm/ |
uvm_map.h | 137 vsize_t gap; /* free space after */ member in struct:vm_map_entry
|
/src/sys/arch/powerpc/booke/ |
booke_machdep.c | 629 size_t gap = count; local in function:sort_data 631 while (gap > 1 || swapped) { 632 if (gap > 1) { 638 * gap = (size_t)((double)gap / N) 646 gap = (gap * 52540) / 65536; 651 for (size_t i = 0; gap + i < count; i++) { 652 if (data[i] > data[i + gap]) { 653 swap_data(data, i, i + gap); [all...] |
/src/usr.bin/elf2ecoff/ |
elf2ecoff.c | 289 /* If there is a gap between text and data, we'll fill it when we copy 401 uint32_t gap = ph[i].p_vaddr - cur_vma; local in function:main 403 if (gap > 65536) 404 errx(1, "Intersegment gap (%d bytes) " 405 "too large", gap); 408 "intersegment gap.\n", gap); 410 while (gap) { 412 (gap > sizeof obuf 413 ? sizeof obuf : gap)); [all...] |
/src/sys/dev/ic/ |
an.c | 1382 uint8_t *gap; local in function:an_rx_intr 1400 " plcp %02x %02x %02x %02x gap %u\n", 1457 DPRINTF(("%s: gap too long\n", __func__)); 1466 * the "gap" is filled with the SNAP header. Read 1469 gap = m->m_data + sizeof(struct ieee80211_frame) - 1471 an_read_bap(sc, fid, -1, gap, gaplen + sizeof(u_int16_t)); 1476 printf(" gap&len"); 1478 printf(" %02x", gap[i]);
|
/src/usr.bin/pr/ |
pr.c | 88 static int ingap; /* expand input gap */ 92 static int ogap; /* contract output gap */ 1031 int gap = ingap; local in function:inln 1038 if (gap) { 1051 col = gap - (col % gap); 1137 int gap = ogap; local in function:otln 1162 ips += gap - (ips % gap); 1174 if ((tbps = ops + gap - (ops % gap)) > ips [all...] |
/src/sys/arch/bebox/stand/boot/ |
fd.c | 98 int gap; /* gap */ member in struct:fdd_type 99 int gaplen; /* gap length */ 105 int f_gap; /* format gap */ 563 printf("gap = %d", un->un_type->gap); 575 fdc_out(ctlr, un->un_type->gap); /* GAP3 */
|
/src/sys/compat/linux/common/ |
linux_fdio.h | 51 u_char gap; member in struct:linux_floppy_struct
|
/src/sbin/ping/ |
ping.c | 1166 u_int16_t gap = seqno - (last_seqno + 1); local in function:pr_pack 1167 if (gap > 0 && gap < 0x8000 && 1169 (void)printf("[*** sequence gap of %u " 1170 "packets from %u ... %u ***]\n", gap, 1177 if (gap < 0x8000)
|