Searched refs:offset (Results 276 - 300 of 3483) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dxdr_stdio.c100 xdrstdio_getpos, /* get offset in the stream */
101 xdrstdio_setpos, /* set offset in the stream */
197 long offset; local
200 offset = ftell((FILE *)xdrs->x_private);
202 if (offset > UINT32_MAX) return -1;
204 val = offset;
214 long offset; local
216 offset = pos;
217 return ((fseek((FILE *)xdrs->x_private, offset, 0) < 0) ? FALSE : TRUE);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DFontWinCE.cpp74 TextRunComponent(const UChar *start, int length, const TextRun& parentTextRun, const Font &font, int offset);
75 TextRunComponent(int spaces, const Font &font, int offset);
124 int offset = 0; local
135 components->append(TextRunComponent(1, font, offset));
136 offset += add + letterSpacing + components->last().m_width;
149 run, font, offset));
150 offset += components->last().m_width + letterSpacing;
157 components->append(TextRunComponent(1, font, offset));
158 offset += wordSpacing + add + components->last().m_width + letterSpacing;
165 font, offset));
264 int offset = 0; local
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-lmp.c371 int offset,subobj_type,subobj_len,total_subobj_len; local
589 offset = 12;
591 subobj_type = EXTRACT_16BITS(obj_tptr+offset)>>8;
592 subobj_len = EXTRACT_16BITS(obj_tptr+offset)&0x00FF;
604 EXTRACT_16BITS(obj_tptr+offset+2)>>8),
605 EXTRACT_16BITS(obj_tptr+offset+2)>>8);
609 EXTRACT_16BITS(obj_tptr+offset+2)&0x00FF),
610 EXTRACT_16BITS(obj_tptr+offset+2)&0x00FF);
611 bw.i = EXTRACT_32BITS(obj_tptr+offset+4);
614 bw.i = EXTRACT_32BITS(obj_tptr+offset
[all...]
/macosx-10.9.5/top-89.1.2/
H A Duserinput.c48 s->offset = 0;
75 .offset = 0,
103 .offset = 0,
184 if(current_state->offset > 0) {
185 current_state->offset--;
186 current_state->buf[current_state->offset] = '\0';
189 current_state->buf[current_state->offset] = '\0';
199 if(current_state->offset < (sizeof(current_state->buf) - 2)) {
200 current_state->buf[current_state->offset++] = c;
201 current_state->buf[current_state->offset]
[all...]
/macosx-10.9.5/xar-202/xar/test/
H A Ddata24 offset=`xsltproc data.xsl h.toc | grep -v xml`
25 if [ "$offset" != "" ]; then
54 offset=`xsltproc data.xsl h.toc | grep -v xml`
55 if [ "$offset" != "" ]; then
83 offset=`xsltproc data.xsl h.toc | grep -v xml`
84 if [ "$offset" != "" ]; then
112 offset=`xsltproc data.xsl h.toc | grep -v xml`
113 if [ "$offset" != "" ]; then
141 offset=`xsltproc data.xsl h.toc | grep -v xml`
142 if [ "$offset" !
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOInterleavedMemoryDescriptor.cpp128 IOByteCount offset,
134 if ( (offset + length) > descriptor->getLength() )
142 _descriptorOffsets[_descriptorCount] = offset;
246 IOByteCount offset,
251 // This method returns the physical address of the byte at the given offset
253 // segment from that offset.
258 assert(offset <= _length);
262 if ( offset < _descriptorLengths[index] )
264 pa = _descriptors[index]->getPhysicalSegment(_descriptorOffsets[index] + offset, length, options);
265 if ((_descriptorLengths[index] - offset) < *lengt
126 setMemoryDescriptor( IOMemoryDescriptor * descriptor, IOByteCount offset, IOByteCount length ) argument
245 getPhysicalSegment( IOByteCount offset, IOByteCount * length, IOOptionBits options ) argument
[all...]
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dtdb.c81 tdb_off next; /* offset of the next record in the list */
102 this functions locks/unlocks 1 byte at the specified offset */
103 static int tdb_brlock(TDB_CONTEXT *tdb, tdb_off offset, argument
117 fl.l_start = offset;
125 set, offset, strerror(errno));
212 static int tdb_oob(TDB_CONTEXT *tdb, tdb_off offset) argument
215 if ((offset <= tdb->map_size) || (tdb->fd == -1)) return 0;
218 if (st.st_size <= (ssize_t)offset) {
243 /* write a lump of data at a specified offset */
244 static int tdb_write(TDB_CONTEXT *tdb, tdb_off offset, cons argument
264 tdb_read(TDB_CONTEXT *tdb, tdb_off offset, char *buf, tdb_len len) argument
285 tdb_alloc_read(TDB_CONTEXT *tdb, tdb_off offset, tdb_len len) argument
305 rec_write(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec) argument
311 ofs_write(TDB_CONTEXT *tdb, tdb_off offset, tdb_off *d) argument
317 ofs_read(TDB_CONTEXT *tdb, tdb_off offset, tdb_off *d) argument
323 rec_read(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec) argument
345 tdb_off offset, ptr; local
423 tdb_off offset, rec_ptr, last_ptr; local
513 tdb_off offset; local
573 tdb_off offset, rec_ptr; local
754 tdb_off offset, rec_ptr; local
823 tdb_off offset, rec_ptr; local
876 tdb_off rec_ptr, offset; local
931 tdb_off offset, rec_ptr, last_ptr; local
1037 tdb_off rec_ptr, offset; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tools/
H A DTieredMMapArray.h68 size_t offset = index % entriesPerBlock;
71 return m_directory[block][offset];
93 size_t offset = index % entriesPerBlock;
95 if (!offset) {
102 m_directory[block][offset] = value;
/macosx-10.9.5/Libinfo-449.1.3/gen.subproj/
H A Dip6opt.c403 inet6_opt_append(void *extbuf, socklen_t extlen, int offset, u_int8_t type, socklen_t len, u_int8_t align, void **databufp) argument
405 int currentlen = offset, padlen = 0;
443 u_int8_t *optp = (u_int8_t *)extbuf + offset;
468 inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) argument
470 int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0;;
474 int padlen = updatelen - offset;
479 padp = (u_int8_t *)extbuf + offset;
493 inet6_opt_set_val(void *databuf, int offset, void *val, socklen_t vallen) argument
495 memcpy((u_int8_t *)databuf + offset, va
500 inet6_opt_next(void *extbuf, socklen_t extlen, int offset, u_int8_t *typep, socklen_t *lenp, void **databufp) argument
548 inet6_opt_find(void *extbuf, socklen_t extlen, int offset, u_int8_t type, socklen_t *lenp, void **databufp) argument
589 inet6_opt_get_val(void *databuf, int offset, void *val, socklen_t vallen) argument
592 memcpy(val, (u_int8_t *)databuf + offset, vallen); local
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsftp-glob.c39 int offset; member in struct:SFTP_OPENDIR
58 r->offset = 0;
73 if (od->dir[od->offset] == NULL)
83 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
85 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
/macosx-10.9.5/OpenSSH-186/osslshim/heimdal-asn1/
H A Dasn1-template.h95 uint32_t offset; member in struct:asn1_template
146 #define DPOC(data,offset) ((const void *)(((const unsigned char *)data) + offset))
147 #define DPO(data,offset) ((void *)(((unsigned char *)data) + offset))
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DSuffixTree.h101 for (unsigned offset = 0; base + offset < limit; ++offset) {
103 Node*& child = current->at(Codebook::codeWord(text[base + offset]));
105 child = base + offset + 1 == limit ? &m_leaf : new Node();
/macosx-10.9.5/eap8021x-180/EAP8021X.fproj/
H A Dprintdata.c70 int offset; local
72 for (line_pos = 0, offset = 0; offset < n_bytes; offset++, data_p++) {
74 STRING_APPEND(str, "%04x ", offset);
/macosx-10.9.5/lsof-52/lsof/scripts/
H A Dlist_fields.awk39 access = dev = devch = fd = inode = lock = name = offset = "";
69 t = size; if (offset != "") { t = offset }
76 access = dev = devch = fd = inode = lock = name = offset = "";
129 t = size; if (offset != "") { t = offset }
136 access = dev = devch = fd = inode = lock = name = offset = "";
155 if (id == "o") { offset = val; next } # offset
190 t = size; if (offset !
[all...]
H A Dlist_fields.perl39 $offset = $proto = $size = $state = $stream = $type = ""; # | variables
94 if (/^o(.*)/) { $offset = $1; next; }
129 $tmp = $size; if ($offset ne "") { $tmp = $offset }
140 $offset = $proto = $size = $state = $stream = $type = "";
/macosx-10.9.5/msdosfs-198/fsck_msdos.tproj/
H A Dmain.c97 int offset; local
132 if (sscanf(optarg, "%zi%n", &maxmem, &offset) == 0)
137 switch (optarg[offset])
146 if (optarg[offset+1])
153 pfatal("Size multiplier '%s' not recognized\n", optarg+offset);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dmemchan.tcl118 method seek {c offset base} {
119 # offset == 0 && base == current
123 if {!$offset && ($base eq "current")} {
131 start { set newloc $offset}
132 current { set newloc [expr {$at + $offset }] }
133 end { set newloc [expr {$max + $offset - 1}] }
H A Dvariable.tcl123 method seek {c offset base} {
124 # offset == 0 && base == current
128 if {!$offset && ($base eq "current")} {
140 start { set newloc $offset}
141 current { set newloc [expr {$at + $offset }] }
142 end { set newloc [expr {$max + $offset - 1}] }
/macosx-10.9.5/BerkeleyDB-21/db/hash/
H A Dhash_autop.c40 (u_long)lsnp->file, (u_long)lsnp->offset,
44 (u_long)argp->prev_lsn.file, (u_long)argp->prev_lsn.offset);
50 (u_long)argp->pagelsn.file, (u_long)argp->pagelsn.offset);
91 (u_long)lsnp->file, (u_long)lsnp->offset,
95 (u_long)argp->prev_lsn.file, (u_long)argp->prev_lsn.offset);
100 (u_long)argp->prevlsn.file, (u_long)argp->prevlsn.offset);
103 (u_long)argp->pagelsn.file, (u_long)argp->pagelsn.offset);
106 (u_long)argp->nextlsn.file, (u_long)argp->nextlsn.offset);
137 (u_long)lsnp->file, (u_long)lsnp->offset,
141 (u_long)argp->prev_lsn.file, (u_long)argp->prev_lsn.offset);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DVisiblePosition.cpp118 int offset; local
119 p.getInlineBoxAndOffset(m_affinity, primaryDirection, box, offset);
126 if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretRightmostOffset())
134 offset = box->caretRightmostOffset();
138 offset = box->isLeftToRightDirection() ? renderer->previousOffset(offset) : renderer->nextOffset(offset);
143 if (offset > caretMinOffset && offset < caretMaxOffset)
146 if (box->isLeftToRightDirection() ? offset < caretMinOffse
283 int offset; local
586 unsigned offset = static_cast<unsigned>(pos.offsetInContainerNode()); local
[all...]
/macosx-10.9.5/libdispatch-339.92.1/src/
H A Ddata.c228 size_t offset = 0; local
229 offset += dsnprintf(&buf[offset], bufsiz - offset, "data[%p] = { ", dd);
231 offset += dsnprintf(&buf[offset], bufsiz - offset,
234 offset += dsnprintf(&buf[offset], bufsiz - offset,
296 dispatch_data_create_subrange(dispatch_data_t dd, size_t offset, size_t length) argument
359 size_t size = dd->size, offset = 0; local
399 _dispatch_data_apply(dispatch_data_t dd, size_t offset, size_t from, size_t size, void *ctxt, dispatch_data_applier_function_t applier) argument
456 size_t size = dd->size, offset = 0, from = 0; local
[all...]
/macosx-10.9.5/file_cmds-230/mtree/
H A Dcreate.c158 int fd, offset; local
168 offset = printf("%*s%s", indent, "", escaped_name);
170 offset = printf("%*s %s", indent, "", escaped_name);
174 if (offset > (INDENTNAMELEN + indent))
175 offset = MAXLINELEN;
177 offset += printf("%*s", (INDENTNAMELEN + indent) - offset, "");
180 output(indent, &offset, "type=%s", inotype(p->fts_statp->st_mode));
185 output(indent, &offset, "uname=%s", pw->pw_name);
195 output(indent, &offset, "ui
421 output(int indent, int *offset, const char *fmt, ...) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dstore_mem.c72 mem_seek(krb5_storage *sp, off_t offset, int whence) argument
77 if((size_t)offset > s->size)
78 offset = s->size;
79 if(offset < 0)
80 offset = 0;
81 s->ptr = s->base + offset;
84 return sp->seek(sp, s->ptr - s->base + offset, SEEK_SET);
86 return sp->seek(sp, s->size + offset, SEEK_SET);
95 mem_trunc(krb5_storage *sp, off_t offset) argument
98 if(offset > SIZE_T_MA
107 mem_no_trunc(krb5_storage *sp, off_t offset) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DDbValue.h81 size_t size(const ReadSection &rs, uint32 offset) const { return size(); }
90 // (const ReadSection &, uint32 &offset) that advances the offset
96 UInt32Value(const ReadSection &rs, uint32 &offset);
99 void pack(WriteSection &ws, uint32 &offset) const;
105 SInt32Value(const ReadSection &rs, uint32 &offset);
108 void pack(WriteSection &ws, uint32 &offset) const;
114 DoubleValue(const ReadSection &rs, uint32 &offset);
117 void pack(WriteSection &ws, uint32 &offset) const;
126 BlobValue(const ReadSection &rs, uint32 &offset);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DDbValue.h81 size_t size(const ReadSection &rs, uint32 offset) const { return size(); }
90 // (const ReadSection &, uint32 &offset) that advances the offset
96 UInt32Value(const ReadSection &rs, uint32 &offset);
99 void pack(WriteSection &ws, uint32 &offset) const;
105 SInt32Value(const ReadSection &rs, uint32 &offset);
108 void pack(WriteSection &ws, uint32 &offset) const;
114 DoubleValue(const ReadSection &rs, uint32 &offset);
117 void pack(WriteSection &ws, uint32 &offset) const;
126 BlobValue(const ReadSection &rs, uint32 &offset);
[all...]

Completed in 485 milliseconds

<<11121314151617181920>>