Searched refs:offset (Results 451 - 475 of 3483) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DMX.pm32 my ($class, $self, $data, $offset) = @_;
35 ($self->{"preference"}) = unpack("\@$offset n", $$data);
36 $offset += Net::DNS::INT16SZ();
38 ($self->{"exchange"}) = Net::DNS::Packet::dn_expand($data, $offset);
65 my ($self, $packet, $offset) = @_;
71 $offset + length $rdata);
H A DPTR.pm15 my ($class, $self, $data, $offset) = @_;
18 ($self->{"ptrdname"}) = Net::DNS::Packet::dn_expand($data, $offset);
42 my ($self, $packet, $offset) = @_;
46 $rdata .= $packet->dn_comp(lc($self->{"ptrdname"}), $offset);
53 my ($self, $packet, $offset) = @_;
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dasn1-template.h93 uint32_t offset; member in struct:asn1_template
144 #define DPOC(data,offset) ((const void *)(((const unsigned char *)data) + offset))
145 #define DPO(data,offset) ((void *)(((unsigned char *)data) + offset))
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A Dcreate-html-entity-table57 def offset_table_entry(offset):
58 return " &staticEntityTable[%s]," % offset
124 offset = 0 variable
128 index[letter] = offset
136 offset += 1
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollAnimator.cpp76 void ScrollAnimator::scrollToOffsetWithoutAnimation(const FloatPoint& offset) argument
78 FloatSize delta = FloatSize(offset.x() - m_currentPosX, offset.y() - m_currentPosY);
79 m_currentPosX = offset.x();
80 m_currentPosY = offset.y();
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dgetenv.c110 int offset; local
118 offset = assignment (str, 0);
119 if (str[offset] != '=')
125 name[offset] = 0;
127 value = name + offset + 1;
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dstreval.c59 #define stakpush(v,val,type) ((((v)->offset=round(staktell(),pow2size(sizeof(type)))),\
60 stakseek((v)->offset+sizeof(type)), \
61 *((type*)stakptr((v)->offset)) = (val)),(v)->offset)
74 int offset; /* offset for pushchr macro */ member in struct:vars
804 int offset; local
810 offset = stakpush(vp,0,short);
814 *((short*)stakptr(offset)) = staktell();
902 int offset; local
957 int offset; local
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dheader_body_checks.c14 /* const char *buf, ssize_t len, off_t offset);
18 /* ssize_t line_len, off_t offset);
116 /* and the input byte offset within the current header or body
228 ssize_t line_len, off_t offset)
246 line_len, offset)) != HBC_CHECKS_STAT_UNKNOWN)
280 cb->prepend(context, REC_TYPE_NORM, cmd_args, strlen(cmd_args), offset);
302 VSTRING *header, off_t offset)
322 STR(header), LEN(header), offset));
333 ssize_t len, off_t offset)
347 line, len, offset));
225 hbc_action(void *context, HBC_CALL_BACKS *cb, const char *map_class, const char *where, const char *cmd, const char *line, ssize_t line_len, off_t offset) argument
300 hbc_header_checks(void *context, HBC_CHECKS *hbc, int header_class, const HEADER_OPTS *hdr_opts, VSTRING *header, off_t offset) argument
332 hbc_body_checks(void *context, HBC_CHECKS *hbc, const char *line, ssize_t len, off_t offset) argument
464 out_cb(void *context, int rec_type, const char *buf, ssize_t len, off_t offset) argument
476 head_out(void *context, int header_class, const HEADER_OPTS *header_info, VSTRING *buf, off_t offset) argument
517 body_out(void *context, int rec_type, const char *buf, ssize_t len, off_t offset) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/
H A Dscalar_scanner.rb133 offset = tz.first * 3600
135 if offset < 0
136 offset -= ((tz[1] || 0) * 60)
138 offset += ((tz[1] || 0) * 60)
141 Time.at((time - offset).to_i, us)
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/lib/
H A Dtdom.tcl362 proc ::dom::domNode::deleteData { node offset count } {
370 incr offset -1
371 set before [string range [$node nodeValue] 0 $offset]
372 incr offset
373 incr offset $count
374 set after [string range [$node nodeValue] $offset end]
382 proc ::dom::domNode::insertData { node offset arg } {
390 incr offset -1
391 set before [string range [$node nodeValue] 0 $offset]
392 incr offset
[all...]
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFWRingBufferQ.cpp140 IOByteCount theRealFrontOffset = frontEntryOffset( size, &paddingBytes ); // get front offset that corresponds to 'size'
155 IOByteCount IOFWRingBufferQ::readBytes(IOByteCount offset, void * bytes, IOByteCount withLength) argument
157 return fMemDescriptor->readBytes( offset, bytes, withLength );
167 IOByteCount offset = 0; local
170 // determine if 'bytes' will fit in queue and get the appropriate insertion offset
171 if ( success = willFitAtEnd(size, &offset, &paddingBytes) )
176 if ( fMemDescriptor->writeBytes(offset, bytes, size) == 0 ) // write 'bytes' into queue at insertion offset
185 DebugLog(">>> IOFWRingBufferQ::enqueueBytes BSize: %u Length: %u Front: %u Insert: %u/%u\n", fBufferSize, fQueueLength, fFrontOffset, offset, paddingBytes);
192 bool IOFWRingBufferQ::isSpaceAvailable( IOByteCount size, IOByteCount * offset )
275 willFitAtEnd( IOByteCount sizeOfEntry, IOByteCount * offset, IOByteCount * paddingBytes ) argument
[all...]
H A DIOFWPhysicalAddressSpace.h83 UInt64 getPhysicalSegment( UInt64 offset, UInt64 * length );
91 IOReturn getSegments( UInt64 * offset, FWSegment * fw_segments, UInt32 * num_segments );
149 @param offset start from this 'offset' in 'buf'.
153 IOMemoryDescriptor **buf, IOByteCount * offset,
240 @param offset input/output parameter, defines the starting and ending offset in the memory
241 descriptor, relative to any offset passed to the prepare() method.
245 inline IOReturn getSegments( UInt64 * offset, FWSegment * fw_segments, UInt32 * num_segments ) argument
246 { return ((IOFWPhysicalAddressSpaceAux*)fIOFWAddressSpaceExpansion->fAuxiliary)->getSegments( offset, fw_segment
256 getPhysicalSegment( UInt64 offset, UInt64 * length ) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsyntax.h221 /* Convert the byte offset BYTEPOS into a character position,
246 ? (update_syntax_table ((charpos) + gl_state.offset, 1, 0, \
257 ? (update_syntax_table ((charpos) + gl_state.offset, -1, 0, \
267 ? (update_syntax_table ((charpos) + gl_state.offset, -1, 0, \
272 ? (update_syntax_table ((charpos) + gl_state.offset, 1, 0,\
292 gl_state.offset = 0; \
306 So if it is a buffer, we set the offset field to BEGV. */
317 gl_state.offset = BUF_BEGV (buf) - 1; \
323 gl_state.offset = BEGV - 1; \
329 gl_state.offset
367 int offset; member in struct:gl_state_s
[all...]
/macosx-10.9.5/gnutar-452/gnutar/src/
H A Dsparse.c52 off_t offset; /* Current offset in fd if seekable==false. member in struct:tar_sparse_file
62 /* Dump zeros to file->fd until offset is reached. It is used instead of
65 dump_zeros (struct tar_sparse_file *file, off_t offset) argument
69 if (offset < file->offset)
75 while (file->offset < offset)
77 size_t size = (BLOCKSIZE < offset - file->offset
176 lseek_or_error(struct tar_sparse_file *file, off_t offset) argument
220 off_t offset = 0; local
559 off_t offset = 0; local
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-stp.c202 u_int16_t offset; local
254 offset = MST_BPDU_MSTI_OFFSET;
256 msti = EXTRACT_16BITS(ptr + offset +
261 msti, bittok2str(stp_bpdu_flag_values, "none", ptr[offset]),
263 RSTP_EXTRACT_PORT_ROLE(ptr[offset])));
265 stp_print_bridge_id(ptr + offset +
267 EXTRACT_32BITS(ptr + offset +
270 ptr[offset + MST_BPDU_MSTI_BRIDGE_PRIO_OFFSET] >> 4,
271 ptr[offset + MST_BPDU_MSTI_PORT_PRIO_OFFSET] >> 4,
272 ptr[offset
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIODMACommand.h284 @param offset defines the starting offset in the memory descriptor the DMA command will operate on. genIOVMSegments will produce its results based on the offset and length passed to the prepare method.
285 @param length defines the ending position in the memory descriptor the DMA command will operate on. genIOVMSegments will produce its results based on the offset and length passed to the prepare method.
290 virtual IOReturn prepare(UInt64 offset = 0, UInt64 length = 0, bool flushCache = true, bool synchronize = true);
314 @discussion Generates a list of physical segments from the given memory descriptor, relative to the current position of the descriptor. The constraints that are set during initialisation will be respected. This function maintains the state across multiple calls for efficiency. However the state is discarded if the new offset is not the expected one.
315 @param offset input/output parameter, defines the starting and ending offset in the memory descriptor, relative to any offset passed to the prepare() method.
320 virtual IOReturn genIOVMSegments(UInt64 *offset,
352 gen32IOVMSegments(UInt64 *offset, Segment32 *segments, UInt32 *numSegments) argument
360 gen64IOVMSegments(UInt64 *offset, Segment64 *segments, UInt32 *numSegments) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_kern.c98 register vm_object_offset_t offset,
103 register vm_object_offset_t offset,
119 vm_object_offset_t offset; local
159 entry->offset = offset = (object == kernel_object) ?
186 vm_page_insert(m, object, offset + i);
200 vm_object_page_remove(object, offset, offset + map_size);
248 vm_object_offset_t offset; local
404 entry->offset
529 vm_object_offset_t offset, pg_offset; local
699 vm_object_offset_t offset, pg_offset; local
795 vm_object_offset_t offset; local
1011 kmem_alloc_pages( register vm_object_t object, register vm_object_offset_t offset, register vm_object_size_t size) argument
1048 kmem_remap_pages( register vm_object_t object, register vm_object_offset_t offset, register vm_offset_t start, register vm_offset_t end, vm_prot_t protection) argument
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dstdio.c75 __sseek(cookie, offset, whence)
77 fpos_t offset;
82 return (lseek(fp->_file, (off_t)offset, whence));
148 _sseek(fp, offset, whence)
150 fpos_t offset;
158 ret = (*fp->_seek)(fp->_cookie, offset, whence);
169 if (offset != 0 || whence != SEEK_CUR) {
/macosx-10.9.5/Security-55471.14.18/include/securityd_client/
H A DSharedMemoryClient.cpp126 SegmentOffsetType offset; local
127 ReadData(&offset, sizeof(SegmentOffsetType));
128 offset = OSSwapBigToHostInt32 (offset);
129 return offset;
145 size_t offset = mDataPtr - mDataArea; local
146 if (offset == GetProducerCount())
/macosx-10.9.5/Security-55471.14.18/libsecurityd/lib/
H A DSharedMemoryClient.cpp126 SegmentOffsetType offset; local
127 ReadData(&offset, sizeof(SegmentOffsetType));
128 offset = OSSwapBigToHostInt32 (offset);
129 return offset;
145 size_t offset = mDataPtr - mDataArea; local
146 if (offset == GetProducerCount())
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dnameprep_template.c78 int offset; local
83 offset = TABLE[IMAP[IMAP[idx0] + idx1]].tbl[idx2];
84 if (offset == 0)
86 return (const char *)(DATA + offset);
127 int offset; local
132 offset = TABLE[IMAP[IMAP[idx0] + idx1]].tbl[idx2];
133 return DATA[offset];
/macosx-10.9.5/dtrace-118.1/libdwarf/
H A Ddwarf_abbrev.c45 Dwarf_Unsigned offset,
73 if (offset >= dbg->de_debug_abbrev_size) {
95 abbrev_ptr = dbg->de_debug_abbrev + offset;
136 *length = abbrev_ptr - dbg->de_debug_abbrev - offset;
191 Dwarf_Off * offset, Dwarf_Error * error)
245 if (offset != NULL)
246 *offset = mark_abbrev_ptr - abbrev->ab_dbg->de_debug_abbrev;
44 dwarf_get_abbrev(Dwarf_Debug dbg, Dwarf_Unsigned offset, Dwarf_Abbrev * returned_abbrev, Dwarf_Unsigned * length, Dwarf_Unsigned * abbr_count, Dwarf_Error * error) argument
187 dwarf_get_abbrev_entry(Dwarf_Abbrev abbrev, Dwarf_Signed index, Dwarf_Half * returned_attr_num, Dwarf_Signed * form, Dwarf_Off * offset, Dwarf_Error * error) argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DIntervalMap.cpp32 while (l && path[l].offset == 0)
36 if (path[l].offset == 0)
40 NodeRef NR = path[l].subtree(path[l].offset - 1);
55 while (path[l].offset == 0) {
64 --path[l].offset;
90 NodeRef NR = path[l].subtree(path[l].offset + 1);
107 // offset(0) == node(0).size().
108 if (++path[l].offset == path[l].size)
/macosx-10.9.5/dcerpc-58/dcerpc/idl_lib/
H A Dndrui.c210 /* [in] */ idl_byte *defn_vec_ptr, /* Points to index into offset vector */
222 idl_ulong_int offset; local
275 offset = *offset_vec_ptr;
277 IDL_UNMAR_BYTE( (idl_byte *)struct_addr+offset );
278 IDL_CHECK_RANGE_BYTE( range_bounds, (idl_byte *)struct_addr + offset ); local
281 offset = *offset_vec_ptr;
283 IDL_UNMAR_CHAR( (idl_byte *)struct_addr+offset );
284 IDL_CHECK_RANGE_CHAR( range_bounds, (idl_byte *)struct_addr + offset ); local
287 offset = *offset_vec_ptr;
289 IDL_UNMAR_BOOLEAN( (idl_byte *)struct_addr+offset );
290 IDL_CHECK_RANGE_BOOLEAN( range_bounds, (idl_byte *)struct_addr + offset ); local
296 IDL_CHECK_RANGE_DOUBLE( range_bounds, (idl_byte *)struct_addr + offset ); local
307 IDL_CHECK_RANGE_FLOAT( range_bounds, (idl_byte *)struct_addr + offset ); local
313 IDL_CHECK_RANGE_SMALL( range_bounds, (idl_byte *)struct_addr + offset ); local
319 IDL_CHECK_RANGE_SHORT( range_bounds, (idl_byte *)struct_addr + offset ); local
325 IDL_CHECK_RANGE_LONG( range_bounds, (idl_byte *)struct_addr + offset ); local
336 IDL_CHECK_RANGE_USMALL( range_bounds, (idl_byte *)struct_addr + offset ); local
342 IDL_CHECK_RANGE_USHORT( range_bounds, (idl_byte *)struct_addr + offset ); local
348 IDL_CHECK_RANGE_ULONG( range_bounds, (idl_byte *)struct_addr + offset ); local
373 (idl_byte *)struct_addr+offset, local
587 (idl_byte *)struct_addr+offset, NULL, IDL_msp); local
[all...]
/macosx-10.9.5/cctools-845/ld/
H A Dhppa_reloc.c85 unsigned long offset; local
99 offset = 0;
192 * The r_address field is really an offset into the contents of the
402 * saved) the offset to be added to the symbol's value is
404 * the symbol is in. In here if the offset is not zero then
411 offset = get_byte((char *)(contents + r_address));
414 offset = get_short((short *)(contents + r_address));
417 offset = get_long((long *)(contents + r_address));
424 offset += input_pc;
430 offset
[all...]

Completed in 199 milliseconds

<<11121314151617181920>>