Searched refs:off (Results 176 - 200 of 1112) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/win32/
H A Drtname.cmd1 @echo off
/macosx-10.10.1/vim-55/src/proto/
H A Dhashtab.pro4 void hash_clear_all __ARGS((hashtab_T *ht, int off));
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet6/
H A Din6_cksum.c184 * off is an offset where TCP/UDP/ICMP6 header starts;
188 inet6_cksum(struct mbuf *m, uint32_t nxt, uint32_t off, uint32_t len) argument
192 sum = m_sum16(m, off, len);
H A Dicmp6.c292 int off; local
349 off = ip6_lasthdr(m, 0, IPPROTO_IPV6, &nxt);
350 if (off >= 0 && nxt == IPPROTO_ICMPV6) {
354 IP6_EXTHDR_CHECK(m, 0, off + sizeof(struct icmp6_hdr), return);
355 icp = (struct icmp6_hdr *)(mtod(m, caddr_t) + off);
357 IP6_EXTHDR_GET(icp, struct icmp6_hdr *, m, off,
448 int off = *offp; local
455 IP6_EXTHDR_CHECK(m, off, sizeof(struct icmp6_hdr), return IPPROTO_DONE);
473 icmp6 = (struct icmp6_hdr *)((caddr_t)ip6 + off);
475 IP6_EXTHDR_GET(icmp6, struct icmp6_hdr *, m, off, sizeo
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/os_windows/
H A Dos_rw.c34 ULONG64 off; local
36 if ((off = relative) == 0)
37 off = (ULONG64)pgsize * pgno;
38 over.Offset = (DWORD)(off & 0xffffffff);
39 over.OffsetHigh = (DWORD)(off >> 32);
47 fhp->name, (u_long)io_len, (u_long)off);
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/opcode/
H A Dm88k.h357 #define UEXT(src,off,wid) \
358 ((((unsigned int)(src)) >> (off)) & ((1 << (wid)) - 1))
360 #define SEXT(src,off,wid) \
361 (((((int)(src))<<(32 - ((off) + (wid)))) >>(32 - (wid))) )
363 #define MAKE(src,off,wid) \
364 ((((unsigned int)(src)) & ((1 << (wid)) - 1)) << (off))
/macosx-10.10.1/ntp-92/scripts/monitoring/
H A Dntp.pl416 foreach $off (sort numerical keys(%FRAGS))
418 next unless defined($FRAGS{$off});
420 ($loff + length($FRAGS{$loff})) == $off)
422 $FRAGS{$loff} .= $FRAGS{$off};
423 delete $FRAGS{$off};
426 $loff = $off;
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/base64/
H A Dbase64.tcl130 for {set off 0} {$off < $l} {incr off $maxlen} {
131 append res [string range $result $off [expr {$off+$maxlen-1}]] $wrapchar
133 append res [string range $result $off end]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/base64/
H A Dbase64.tcl130 for {set off 0} {$off < $l} {incr off $maxlen} {
131 append res [string range $result $off [expr {$off+$maxlen-1}]] $wrapchar
133 append res [string range $result $off end]
/macosx-10.10.1/xar-254/xar/lib/
H A Ddata.c107 size_t off = 0; local
127 r = write(DATA_CONTEXT(context)->fd, ((char *)buf)+off, len-off);
130 off += r;
131 } while( off < len );
132 return off;
H A Dmacho.c186 uint64_t off; local
188 off = context->nextme - context->curroffset;
189 tmpin += off;
190 if( (inlen-off) >= sizeof(struct mach_header) ) {
251 consumed = off + sizeof(struct mach_header);
257 memcpy(context->buffer, tmpin, inlen-off);
258 context->buffersz = inlen-off;
268 uint64_t off; local
270 off = context->me[context->curme].nextlc - context->curroffset;
271 tmpin += off;
[all...]
H A Darchive.c130 int off = 0; local
140 r = xar_read_fd(XAR(x)->fd, (char *)&XAR(x)->header.magic+off, sizeof(XAR(x)->header.magic)-off);
153 r = xar_read_fd(XAR(x)->fd, (char *)&XAR(x)->header.size+off, sizeof(XAR(x)->header.size)-off);
164 off = sizeof(XAR(x)->header.magic) + sizeof(XAR(x)->header.size);
165 r = xar_read_fd(XAR(x)->fd, ((char *)&XAR(x)->header)+off, sizeof(xar_header_t)-off);
174 off = XAR(x)->header.size - sz2read;
175 if( off >
428 int fd, r, off, wbytes, rbytes; local
1404 int ret, off = 0; local
[all...]
/macosx-10.10.1/Libc-1044.1.2/db/btree/FreeBSD/
H A Dbt_split.c596 indx_t full, half, nxt, off, skip, top, used; local
611 for (nxt = off = 0, top = NEXTINDEX(h); nxt < top; ++off) {
612 if (skip == off) {
647 if ((skip <= off && used + nbytes + sizeof(indx_t) >= full)
649 --off;
654 if (skip != off) {
657 l->linp[off] = l->upper -= nbytes;
674 l->lower += (off + 1) * sizeof(indx_t);
700 if (skip <= off) {
[all...]
/macosx-10.10.1/dtrace-147/libdwarf/
H A Ddwarf_global.c295 /* loop thru pairs. DIE off with CU followed by string */
318 /* finish off current entry chain */
499 Dwarf_Off off; local
513 off = con->pu_offset_of_cu_header;
515 _dwarf_length_of_cu_header() will step off the end and therefore
528 ((off + MIN_CU_HDR_SIZE) >= dbg->de_debug_info_size)) {
534 *die_offset = global->gl_named_die_offset_within_cu + off;
546 _dwarf_length_of_cu_header() will step off the end and
549 if ((off + 10) >= dbg->de_debug_info_size) {
553 *cu_die_offset = off
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/regex/
H A Dregsubcomp.c195 op->off = 0;
289 if ((op->len = (t - sub->re_rhs) - op->off) && (n = ++op - sub->re_ops) >= nops)
299 op->off = t - sub->re_rhs;
334 if (op->len = (t - sub->re_rhs) - op->off)
337 op->off = c;
341 op->off = t - sub->re_rhs;
343 if ((op->len = (t - sub->re_rhs) - op->off) && (n = ++op - sub->re_ops) >= nops)
/macosx-10.10.1/syslog-267/libsystem_asl.tproj/src/
H A Dasl_file.c142 asl_file_read_uint32(asl_file_t *s, off_t off, uint32_t *out) argument
148 if ((off + sizeof(uint32_t)) > s->file_size) return ASL_STATUS_READ_FAILED;
150 status = fseeko(s->store, off, SEEK_SET);
163 asl_file_read_uint64(asl_file_t *s, off_t off, uint64_t *out) argument
170 if ((off + sizeof(uint64_t)) > s->file_size) return ASL_STATUS_READ_FAILED;
172 status = fseeko(s->store, off, SEEK_SET);
379 off_t off; local
457 off = out->last + RECORD_TYPE_LEN;
458 status = asl_file_read_uint32(out, off, &last_len);
696 off_t off; local
811 off_t off; local
1173 off_t off; local
1327 off_t off; local
1531 off_t off; local
1645 off_t off; local
1663 off_t off; local
1721 off_t off; local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Dstk.c454 register int off=stktell(stream); local
456 if(off)
458 if(off > sizeof(buff))
460 if(!(tp = malloc(off)))
463 if(!sp->stkoverflow || !(tp = (*sp->stkoverflow)(off)))
467 memcpy(tp, stream->_data, off);
480 if(off)
482 _stkseek(stream,off);
483 memcpy(stream->_data, tp, off);
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCBufferSegment.cpp360 Size CBufferSegment::Seek(Long off, int dir) argument
366 if (off == 0)
383 newPos = fBase + off;
387 newPos = fMark + off;
391 newPos = fEnd - off;
/macosx-10.10.1/BerkeleyDB-21/db/db/
H A Ddb_reclaim.c118 db_indx_t indx, len, off, tlen, top; local
131 /* Skip for off-page duplicates and deleted items. */
192 for (off = 0; off < tlen;
193 off += len + 2 * sizeof(db_indx_t)) {
197 + off, sizeof(db_indx_t));
/macosx-10.10.1/ruby-106/ruby/
H A Dtime.c1521 VALUE off = INT2FIX(0); local
1535 off = LONG2FIX(gmtoff);
1542 off = LONG2FIX(gmtoff);
1550 return off;
1596 int off; local
1598 off = vtm1->sec - vtm2->sec;
1599 off += (vtm1->min - vtm2->min) * 60;
1600 off += (vtm1->hour - vtm2->hour) * 3600;
1602 off += lt(vtm1->year, vtm2->year) ? -24*3600 : 24*3600;
1604 off
2018 time_set_utc_offset(VALUE time, VALUE off) argument
2033 vtm_add_offset(struct vtm *vtm, VALUE off) argument
2244 VALUE off = vtm.utc_offset; local
2396 rb_time_num_new(VALUE timev, VALUE off) argument
3553 VALUE off; local
3614 VALUE off; local
3666 VALUE off; local
3769 VALUE off = tobj->vtm.utc_offset; local
4749 VALUE off = time_utc_offset(time), div, mod; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/clib/
H A Dgetcwd.c222 size_t len, off; local
228 off = bpt - pt;
232 bpt = pt + off;
/macosx-10.10.1/Libc-1044.1.2/db/recno/FreeBSD/
H A Drec_close.c112 off_t off; local
176 if ((off = lseek(t->bt_rfd, (off_t)0, SEEK_CUR)) == -1)
178 if (ftruncate(t->bt_rfd, off))
/macosx-10.10.1/sudo-73/src/
H A Dgetcwd.c222 size_t len, off; local
229 off = bpt - pt;
234 bpt = pt + off;
/macosx-10.10.1/Libc-1044.1.2/db/mpool/FreeBSD/
H A Dmpool.c154 off_t off; local
199 off = mp->pagesize * pgno;
200 nr = pread(mp->fd, bp->page, mp->pagesize, off);
316 * off any lists. If we don't find anything we grow the cache anyway.
359 off_t off; local
369 off = mp->pagesize * bp->pgno;
370 if (pwrite(mp->fd, bp->page, mp->pagesize, off) != mp->pagesize)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/dns/
H A Ddns.tcl845 # check the length and flags and chop off the tcp length prefix.
1004 # Pop the nth element off a list. Used in options processing.
1055 # Read off QTYPE and QCLASS for this query.
1084 # Read off TYPE, CLASS, TTL and RDLENGTH
1107 set rdata [ReadName data $index off]
1111 set exchange [ReadName data [expr {$index + 2}] off]
1116 set rdata [list priority [ReadUShort data $x off]]
1117 incr x $off
1118 lappend rdata weight [ReadUShort data $x off]
1119 incr x $off
[all...]

Completed in 447 milliseconds

1234567891011>>