Searched refs:off (Results 201 - 225 of 1205) sorted by relevance

1234567891011>>

/freebsd-11-stable/libexec/rtld-elf/powerpc/
H A Drtld_machdep.h78 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/libexec/rtld-elf/mips/
H A Drtld_machdep.h68 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/libexec/rtld-elf/amd64/
H A Drtld_machdep.h68 #define calculate_tls_end(off, size) (off)
/freebsd-11-stable/libexec/rtld-elf/arm/
H A Drtld_machdep.h68 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/libexec/rtld-elf/aarch64/
H A Drtld_machdep.h71 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/libexec/rtld-elf/powerpc64/
H A Drtld_machdep.h70 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/libexec/rtld-elf/riscv/
H A Drtld_machdep.h95 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/stand/i386/common/
H A Dedd.h41 uint16_t off; member in struct:edd_packet
49 uint16_t off; member in struct:edd_packet_v3
/freebsd-11-stable/stand/libsa/
H A Dcd9660read.c227 size_t dsize, off; local
253 off = 0;
256 while (off < dsize) {
257 if ((off % ISO_DEFAULT_BLOCK_SIZE) == 0) {
267 off = boff * ISO_DEFAULT_BLOCK_SIZE;
287 off = boff * ISO_DEFAULT_BLOCK_SIZE;
290 off += isonum_711(dp->length);
292 if (off >= dsize) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.h50 void setVarArgsFrameIndex(int off) { VarArgsFrameIndex = off; } argument
/freebsd-11-stable/sys/netipsec/
H A Dipsec_mbuf.c54 m_makespace(struct mbuf *m0, int skip, int hlen, int *off) argument
88 *off = skip;
123 *off = skip;
148 *off = 0; /* ... of new mbuf */
159 *off = skip;
312 m_checkalignment(const char* where, struct mbuf *m0, int off, int len) argument
315 struct mbuf *m = m_getptr(m0, off, &roff);
320 printf("%s (off %u len %u): ", where, off, len);
/freebsd-11-stable/sys/kern/
H A Duipc_mbuf.c140 * Ensure the correct size of various mbuf parameters. It could be off due
452 int off = off0; local
456 KASSERT(off >= 0, ("m_copym, negative off %d", off));
459 if (off == 0 && m->m_flags & M_PKTHDR)
461 while (off > 0) {
463 if (off < m->m_len)
465 off -= m->m_len;
492 n->m_len = min(len, m->m_len - off);
573 m_copydata(const struct mbuf *m, int off, int len, caddr_t cp) argument
974 m_devget(char *buf, int totlen, int off, struct ifnet *ifp, void (*copy)(char *from, caddr_t to, u_int len)) argument
1040 m_copyback(struct mbuf *m0, int off, int len, c_caddr_t cp) argument
1139 m_apply(struct mbuf *m, int off, int len, int (*f)(void *, void *, u_int), void *arg) argument
1171 m_getptr(struct mbuf *m, int loc, int *off) argument
1606 int len, off; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386-nto-tdep.c123 i386nto_register_area (int regno, int regset, unsigned *off) argument
127 *off = 0;
133 *off = nto_reg_offset (regno);
134 if (*off == -1)
158 *off = (regno - FP0_REGNUM) * regsize + off_adjust;
/freebsd-11-stable/sys/dev/qlxgb/
H A Dqla_reg.h232 #define READ_OFFSET32(ha, off) READ_REG32(ha, off)
246 #define WRITE_OFFSET32(ha, off, val)\
248 bus_write_4((ha->pci_reg), off, val);\
249 bus_read_4((ha->pci_reg), off);\
/freebsd-11-stable/usr.bin/number/
H A Dnumber.c193 int off, rval; local
198 off = len % 3;
199 len -= off;
200 if (number(p, off)) {
205 p += off;
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dmem.c88 vm_offset_t off; local
119 off = uio->uio_offset & PAGE_MASK;
122 cnt = ulmin(cnt, PAGE_SIZE - off);
141 error = uiomove((void *)(va + off), cnt,
146 error = uiomove((void *)(va + off), cnt,
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_msync.c45 static const off_t off = 512; variable
91 if (lseek(fd, off, SEEK_SET) != off) {
113 if (memcmp(map + off, garbage, len) != 0) {
227 ATF_REQUIRE(page > off);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_tx.c208 dmu_tx_count_write(dmu_tx_hold_t *txh, uint64_t off, uint64_t len) argument
231 if (off < dn->dn_datablksz &&
232 (off > 0 || len < dn->dn_datablksz)) {
243 uint64_t start = off >> dn->dn_datablkshift;
244 if (P2PHASE(off, dn->dn_datablksz) || len < dn->dn_datablksz) {
252 uint64_t end = (off + len - 1) >> dn->dn_datablkshift;
254 P2PHASE(off + len, dn->dn_datablksz)) {
287 dmu_tx_hold_write(dmu_tx_t *tx, uint64_t object, uint64_t off, int len) argument
293 ASSERT(len == 0 || UINT64_MAX - off >= len - 1);
296 object, THT_WRITE, off, le
321 dmu_tx_hold_write_by_dnode(dmu_tx_t *tx, dnode_t *dn, uint64_t off, int len) argument
351 dmu_tx_hold_free_impl(dmu_tx_hold_t *txh, uint64_t off, uint64_t len) argument
442 dmu_tx_hold_free(dmu_tx_t *tx, uint64_t object, uint64_t off, uint64_t len) argument
453 dmu_tx_hold_free_by_dnode(dmu_tx_t *tx, dnode_t *dn, uint64_t off, uint64_t len) argument
[all...]
/freebsd-11-stable/contrib/elftoolchain/libpe/
H A Dlibpe_dos.c208 libpe_write_msdos_stub(PE *pe, off_t off) argument
244 off = sizeof(PE_DosHdr) + pe->pe_stub_ex;
254 if (lseek(pe->pe_fd, off, SEEK_SET) < 0) {
278 if (lseek(pe->pe_fd, off, SEEK_SET) < 0) {
296 off = pe->pe_stub_app_sz;
364 off = sizeof(PE_DosHdr);
378 off = d;
387 off += pe->pe_stub_ex;
396 off += sizeof(msdos_stub);
402 return (off);
[all...]
/freebsd-11-stable/sys/netinet6/
H A Din6_cksum.c145 * off is an offset where TCP/UDP/ICMP6 header starts.
151 in6_cksum_partial(struct mbuf *m, u_int8_t nxt, u_int32_t off, argument
176 KASSERT(m->m_pkthdr.len >= off + len, ("%s: mbuf len (%d) < off(%d)+"
177 "len(%d)", __func__, m->m_pkthdr.len, off, len));
211 while (off > 0) {
212 if (m->m_len <= off)
213 off -= m->m_len;
218 w = (u_int16_t *)(mtod(m, u_char *) + off);
219 mlen = m->m_len - off;
362 in6_cksum(struct mbuf *m, u_int8_t nxt, u_int32_t off, u_int32_t len) argument
[all...]
/freebsd-11-stable/sys/net/
H A Dmppcc.c149 uint32_t olen, off, len, idx, i, l; local
198 off = s - p;
201 if (off > MPPE_HIST_LEN - 1 || off < 1 || *p++ != *s++ ||
228 if (off < 64) { /* 10-bit offset; 0 <= offset < 64 */
229 putbits16(*dst, 0x3c0|off, 10, &olen, &l);
230 } else if (off < 320) { /* 12-bit offset; 64 <= offset < 320 */
231 putbits16(*dst, 0xe00|(off-64), 12, &olen, &l);
232 } else if (off < 8192) { /* 16-bit offset; 320 <= offset < 8192 */
233 putbits16(*dst, 0xc000|(off
[all...]
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_raudio_pxy.c90 int off, dlen; local
105 off = (char *)tcp - (char *)fin->fin_ip;
106 off += (TCP_OFF(tcp) << 2) + fin->fin_ipoff;
108 dlen = MSGDSIZE(m) - off;
116 COPYDATA(m, off, dlen, (char *)membuf);
196 int off, dlen, slen; local
218 off = (char *)tcp - (char *)fin->fin_ip;
219 off += (TCP_OFF(tcp) << 2) + fin->fin_ipoff;
221 dlen = MSGDSIZE(m) - off;
229 COPYDATA(m, off, dle
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/avl/
H A Davl.c138 size_t off = tree->avl_offset; local
139 avl_node_t *node = AVL_DATA2NODE(oldnode, off);
175 return (AVL_NODE2DATA(node, off));
187 size_t off = tree->avl_offset; local
193 return (AVL_NODE2DATA(prev, off));
206 size_t off = tree->avl_offset; local
212 return (AVL_NODE2DATA(prev, off));
231 size_t off = tree->avl_offset; local
237 data = AVL_NODE2DATA(node, off);
261 size_t off local
489 size_t off = tree->avl_offset; local
689 size_t off = tree->avl_offset; local
979 size_t off = tree->avl_offset; local
[all...]
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A Dsegments.c75 if (s->off < seg->off || (s->vma < seg->vaddr && !s->pseudo))
77 if (s->off + s->sz > seg->off + seg->fsz &&
91 s->vma = seg->vaddr + (s->off - seg->off);
93 s->lma = seg->paddr + (s->off - seg->off);
247 s0->off += dl;
250 s0->name, (uintmax_t) s0->off);
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dbuffer.c128 #define CHAIN_SPACE_PTR(ch) ((ch)->buffer + (ch)->misalign + (ch)->off)
130 0 : (ch)->buffer_len - ((ch)->misalign + (ch)->off))
269 if (chain->off)
294 while ((*ch) && ((*ch)->off != 0 || CHAIN_PINNED(*ch)))
321 if (chain->off)
325 buf->total_len += chain->off;
627 result = (chain != NULL ? chain->off : 0);
711 while ((*buf->last_with_datap)->next && (*buf->last_with_datap)->next->off) {
740 buf->last->off += vec[0].iov_len;
769 (*chainp)->off
1576 size_t off = it->internal_.pos_in_chain; local
[all...]

Completed in 156 milliseconds

1234567891011>>