Searched refs:offset (Results 201 - 225 of 3483) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DFileWriterSync.cpp73 void FileWriterSync::truncate(long long offset, ExceptionCode& ec) argument
78 if (offset < 0) {
83 writer()->truncate(offset);
89 if (offset < position())
90 setPosition(offset);
91 setLength(offset);
/macosx-10.9.5/cctools-845/ld/
H A Di860_reloc.c80 unsigned long offset; local
94 offset = 0;
183 * The r_address field is really an offset into the contents of the
388 * saved) the offset to be added to the symbol's value is
390 * the symbol is in. In here if the offset is not zero then
397 offset = get_byte((char *)(contents + r_address));
400 offset = get_short((short *)(contents + r_address));
403 offset = get_long((long *)(contents + r_address));
410 offset += section_map->s->addr + r_address;
416 offset
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dxsym.c534 unsigned long offset; local
565 offset = compute_offset (sdata->header.dshb_rte.dti_first_page,
569 if (bfd_seek (abfd, offset, SEEK_SET) < 0)
585 unsigned long offset; local
616 offset = compute_offset (sdata->header.dshb_mte.dti_first_page,
620 if (bfd_seek (abfd, offset, SEEK_SET) < 0)
636 unsigned long offset; local
666 offset = compute_offset (sdata->header.dshb_frte.dti_first_page,
670 if (bfd_seek (abfd, offset, SEEK_SET) < 0)
686 unsigned long offset; local
736 unsigned long offset; local
786 unsigned long offset; local
836 unsigned long offset; local
886 unsigned long offset; local
936 unsigned long offset; local
986 unsigned long offset; local
1036 unsigned long offset; local
1078 bfd_sym_fetch_type_information_table_entry(bfd *abfd, bfd_sym_type_information_table_entry *entry, unsigned long offset) argument
1525 bfd_sym_fetch_long(unsigned char *buf, unsigned long len, unsigned long offset, unsigned long *offsetptr, long *value) argument
1591 bfd_sym_print_type_information(bfd *abfd, FILE *f, unsigned char *buf, unsigned long len, unsigned long offset, unsigned long *offsetptr) argument
1793 unsigned long offset; local
1861 unsigned long offset; local
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DRP.pm15 my ($class, $self, $data, $offset) = @_;
18 ($self->{"mbox"}, $offset) = Net::DNS::Packet::dn_expand($data, $offset);
19 ($self->{"txtdname"}, $offset) = Net::DNS::Packet::dn_expand($data, $offset);
48 my ($self, $packet, $offset) = @_;
52 $rdata .= $packet->dn_comp($self->{"mbox"}, $offset);
54 $offset + length $rdata);
H A DNAPTR.pm44 my ($class, $self, $data, $offset) = @_;
47 ($self->{"order"} ) = unpack("\@$offset n", $$data);
48 $offset += Net::DNS::INT16SZ();
50 ($self->{"preference"}) = unpack("\@$offset n", $$data);
51 $offset += Net::DNS::INT16SZ();
53 my ($len) = unpack("\@$offset C", $$data);
54 ++$offset;
55 ($self->{"flags"}) = unpack("\@$offset a$len", $$data);
56 $offset += $len;
58 $len = unpack("\@$offset
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Durep.h65 * offset into this text; 0 <= offset < n, where n is the value
70 * @param offset The index at which to fetch the UChar (code unit).
71 * @return The UChar (code unit) at offset, or U+FFFF if the offset is out of bounds.
75 int32_t offset);
79 * offset into this text. See unistr.h for a description of
83 * @param offset The index at which to fetch the UChar32 (code point).
84 * @return The UChar32 (code point) at offset, or U+FFFF if the offset i
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dregextxt.h42 uregex_utext_unescape_charAt(int32_t offset, void * /* struct URegexUTextUnescapeCharContext* */ context);
44 uregex_ucstr_unescape_charAt(int32_t offset, void * /* UChar* */ context);
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DPutByIdStatus.cpp52 PropertyOffset offset = structure->get(*profiledBlock->vm(), ident); local
53 if (!isValidOffset(offset))
56 return PutByIdStatus(SimpleReplace, structure, 0, 0, offset);
71 PropertyOffset offset = newStructure->get(*profiledBlock->vm(), ident); local
72 if (!isValidOffset(offset))
75 return PutByIdStatus(SimpleTransition, structure, newStructure, chain, offset);
106 PropertyOffset offset = stubInfo.u.putByIdReplace.baseObjectStructure->get( local
108 if (isValidOffset(offset)) {
113 offset);
121 PropertyOffset offset local
155 PropertyOffset offset = structure->get(vm, ident, attributes, specificValue); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DCharacterData.idl26 [TreatReturnedNullStringAs=Null, ObjCLegacyUnnamedParameters, RaisesException] DOMString substringData([IsIndex, Default=Undefined] optional unsigned long offset,
31 [ObjCLegacyUnnamedParameters, RaisesException] void insertData([IsIndex, Default=Undefined] optional unsigned long offset,
34 [ObjCLegacyUnnamedParameters, RaisesException] void deleteData([IsIndex, Default=Undefined] optional unsigned long offset,
37 [ObjCLegacyUnnamedParameters, RaisesException] void replaceData([IsIndex, Default=Undefined] optional unsigned long offset,
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/
H A DScrollingConstraints.cpp33 FloatSize offset; local
36 offset.setWidth(viewportRect.x() - m_viewportRectAtLastLayout.x());
38 offset.setWidth(viewportRect.maxX() - m_viewportRectAtLastLayout.maxX());
41 offset.setHeight(viewportRect.y() - m_viewportRectAtLastLayout.y());
43 offset.setHeight(viewportRect.maxY() - m_viewportRectAtLastLayout.maxY());
45 return m_layerPositionAtLastLayout + offset;
97 FloatSize offset = computeStickyOffset(viewportRect); local
98 return m_layerPositionAtLastLayout + offset - m_stickyOffsetAtLastLayout;
/macosx-10.9.5/WebCore-7537.78.1/platform/image-decoders/bmp/
H A DBMPImageDecoder.h55 inline uint32_t readUint32(int offset) const
57 return BMPImageReader::readUint32(m_data.get(), m_decodedOffset + offset);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DBlobRegistryImpl.cpp87 blobStorageData->m_data.appendData(iter->data, iter->offset, iter->length);
90 blobStorageData->m_data.appendURL(iter->url, iter->offset, iter->length, iter->expectedModificationTime);
94 blobStorageData->m_data.appendFile(iter->path, iter->offset, iter->length, iter->expectedModificationTime);
99 void BlobRegistryImpl::appendStorageItems(BlobStorageData* blobStorageData, const BlobDataItemList& items, long long offset, long long length) argument
104 if (offset) {
106 if (offset >= iter->length)
107 offset -= iter->length;
114 long long currentLength = iter->length - offset;
117 blobStorageData->m_data.appendData(iter->data, iter->offset + offset, newLengt
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderMultiColumnFlowThread.h47 virtual void setPageBreak(LayoutUnit offset, LayoutUnit spaceShortage) OVERRIDE;
48 virtual void updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) OVERRIDE;
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/Accessible2/
H A DAccessibleText2.idl72 to the given attributes filter at the given offset.
74 @param [in] offset
75 The offset at which to search for the attributes specified in the filter.
79 The starting (0-based) offset of the text containing the specified attributes.
81 The (0-based) offset one past the last character of the text containing the
91 [in] long offset,
/macosx-10.9.5/cctools-845/include/architecture/nrw/
H A Dreg_help.h49 #define MKMASK(width, offset) (((unsigned)-1)>>(32-(width))<<(offset))
/macosx-10.9.5/cctools-845/libstuff/
H A Dofile_get_word.c56 if(s->offset > ofile->object_size ||
57 s->offset + s->size > ofile->object_size ||
58 s->offset % sizeof(uint32_t) != 0 ||
63 (s->offset + addr - s->addr)),
84 if(s64->offset > ofile->object_size ||
85 s64->offset + s64->size > ofile->object_size ||
86 s64->offset % sizeof(uint32_t) != 0 ||
91 (s64->offset + addr - s64->addr)),
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Dfspaging.d84 self->offset = this->filep->f_offset;
96 (int)arg2, self->offset / 1024, self->vpath);
103 (int)arg2, self->offset / 1024, self->vpath);
110 self->offset = 0;
135 /* fetch the real offset (file_t is unaware of this) */
136 self->offset = ((inode_t *)args[0]->v_data)->i_nextrio;
143 self->offset = 0;
148 this->offset = self->read_ahead ? self->offset : args[2]->fi_offset;
152 this->offset / 102
[all...]
/macosx-10.9.5/dtrace-118.1/DTTk/FS/
H A Dfspaging.d84 self->offset = this->filep->f_offset;
96 (int)arg2, self->offset / 1024, self->vpath);
103 (int)arg2, self->offset / 1024, self->vpath);
110 self->offset = 0;
135 /* fetch the real offset (file_t is unaware of this) */
136 self->offset = ((inode_t *)args[0]->v_data)->i_nextrio;
143 self->offset = 0;
148 this->offset = self->read_ahead ? self->offset : args[2]->fi_offset;
152 this->offset / 102
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclIndexObj.c53 int offset; /* Offset between table entries */ member in struct:__anon12801
60 #define STRING_AT(table, offset, index) \
61 (*((CONST char * CONST *)(((char *)(table)) + ((offset) * (index)))))
62 #define NEXT_ENTRY(table, offset) \
63 (&(STRING_AT(table, offset, 1)))
65 STRING_AT((indexRep)->tablePtr, (indexRep)->offset, (indexRep)->index)
122 indexRep->offset == sizeof(char *)) {
138 * string and an offset for the amount of space between strings.
162 Tcl_GetIndexFromObjStruct(interp, objPtr, tablePtr, offset, msg, flags,
168 * offset, th
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Dswapimpl.cpp320 int32_t i, offset, count, size; local
384 offset=0;
389 offset+=count;
393 utrie2_swapAnyVersion(ds, inBytes+offset, count, outBytes+offset, pErrorCode);
394 offset+=count;
398 ds->swapArray16(ds, inBytes+offset, count, outBytes+offset, pErrorCode);
399 offset+=count;
401 U_ASSERT(offset
422 int32_t i, offset, count, size; local
530 int32_t i, offset, count, size; local
651 int32_t offset; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_compressor_pager.c86 memory_object_offset_t offset,
92 memory_object_offset_t offset,
101 memory_object_offset_t offset,
105 __unused memory_object_offset_t offset,
110 memory_object_offset_t offset,
195 memory_object_offset_t offset,
225 memory_object_offset_t offset,
233 memory_object_synchronize_completed(pager->cpgr_control, offset, length);
388 memory_object_offset_t offset,
402 if ((offset
223 compressor_memory_object_synchronize( memory_object_t mem_obj, memory_object_offset_t offset, memory_object_size_t length, __unused vm_sync_t flags) argument
386 compressor_memory_object_data_request( memory_object_t mem_obj, memory_object_offset_t offset, memory_object_cluster_size_t length, __unused vm_prot_t protection_required, __unused memory_object_fault_info_t fault_info) argument
448 compressor_memory_object_data_initialize( memory_object_t mem_obj, memory_object_offset_t offset, memory_object_cluster_size_t size) argument
471 compressor_memory_object_data_unlock( __unused memory_object_t mem_obj, __unused memory_object_offset_t offset, __unused memory_object_size_t size, __unused vm_prot_t desired_access) argument
484 compressor_memory_object_data_return( __unused memory_object_t mem_obj, __unused memory_object_offset_t offset, __unused memory_object_cluster_size_t size, __unused memory_object_offset_t *resid_offset, __unused int *io_error, __unused boolean_t dirty, __unused boolean_t kernel_copy, __unused int upl_flags) argument
573 compressor_pager_slot_lookup( compressor_pager_t pager, boolean_t do_alloc, memory_object_offset_t offset, compressor_slot_t **slot_pp) argument
649 vm_compressor_pager_put( memory_object_t mem_obj, memory_object_offset_t offset, ppnum_t ppnum, void **current_chead, char *scratch_buf) argument
702 vm_compressor_pager_get( memory_object_t mem_obj, memory_object_offset_t offset, ppnum_t ppnum, int *my_fault_type, int flags) argument
755 vm_compressor_pager_state_clr( memory_object_t mem_obj, memory_object_offset_t offset) argument
782 vm_compressor_pager_state_get( memory_object_t mem_obj, memory_object_offset_t offset) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/fumagic/
H A Drtcore.tcl25 # implement full offset language
62 namespace export emit offset Nv N S Nvx Nx Sx L R I
135 proc ::fileutil::magic::rt::offset {where} {
140 proc ::fileutil::magic::rt::Nv {type offset {qual ""}} {
148 set numeric [Fetch $offset $size $scan]
155 ::fileutil::magic::rt::Debug {puts stderr "NV $type $offset $qual: $numeric"}
159 # Numeric - get bytes of $type at $offset and $compare to $val
161 proc ::fileutil::magic::rt::N {type offset comp val {qual ""}} {
169 set numeric [Fetch $offset $size $scan]
196 proc ::fileutil::magic::rt::S {offset com
[all...]
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_support_format_zip.c132 size_t *size, off_t *offset);
134 size_t *size, off_t *offset);
175 ssize_t bytes_avail, offset; local
201 * TODO: Optimize by initializing 'offset' to an
208 offset = 0;
209 while (offset < 124000) {
211 buff = __archive_read_ahead(a, offset + 4096,
215 p = (const char *)buff + offset;
227 offset = p - (const char *)buff;
491 const void **buff, size_t *size, off_t *offset)
490 archive_read_format_zip_read_data(struct archive_read *a, const void **buff, size_t *size, off_t *offset) argument
602 zip_read_data_none(struct archive_read *a, const void **buff, size_t *size, off_t *offset) argument
643 zip_read_data_deflate(struct archive_read *a, const void **buff, size_t *size, off_t *offset) argument
741 zip_read_data_deflate(struct archive_read *a, const void **buff, size_t *size, off_t *offset) argument
772 off_t offset; local
820 int offset = 0; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DIndicLayoutEngine.cpp56 le_int32 IndicOpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
63 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
68 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success);
87 le_int32 IndicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
94 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
121 outCharCount = IndicReordering::v2process(&chars[offset], coun
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dblob.cpp37 char *BlobCore::stringAt(Offset offset) argument
39 char *s = at<char>(offset);
40 if (offset < this->length() && memchr(s, 0, this->length() - offset))
46 const char *BlobCore::stringAt(Offset offset) const
48 const char *s = at<const char>(offset);
49 if (offset < this->length() && memchr(s, 0, this->length() - offset))
63 BlobCore *BlobCore::readBlob(int fd, size_t offset, uint32_t magic, size_t minSize, size_t maxSize) argument
66 if (::pread(fd, &header, sizeof(header), offset)
[all...]

Completed in 323 milliseconds

1234567891011>>