Searched refs:offset (Results 176 - 200 of 3492) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dstring.tcl77 method seek {c offset base} {
78 # offset == 0 && base == current
82 if {!$offset && ($base eq "current")} {
90 start { set newloc $offset}
91 current { set newloc [expr {$at + $offset }] }
92 end { set newloc [expr {$max + $offset - 1}] }
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/
H A Dapic.py43 def DoLapicRead32(offset, cpu):
46 offset: int - index of LAPIC register to read
52 return DoReadMsr64(offset >> 4, cpu)
54 return ReadPhysInt(lapic_base_addr + offset, 32, cpu)
56 def DoLapicWrite32(offset, val, cpu):
59 offset: int - index of LAPIC register to write
66 return DoWriteMsr64(offset >> 4, cpu, val)
68 return WritePhysInt(lapic_base_addr + offset, val, 32)
157 # LAPIC register offset, register name, field formatting function
213 def DoIoApicRead(offset)
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationdatareader.cpp89 int32_t offset; // byte offset for the index part local
108 offset = getIndex(inIndexes, indexesLength, index);
109 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
117 reorderCodes = reinterpret_cast<const int32_t *>(inBytes + offset);
126 offset = getIndex(inIndexes, indexesLength, index);
127 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
133 reorderTable = inBytes + offset;
146 offset = getIndex(inIndexes, indexesLength, index);
147 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dstore_emem.c79 emem_seek(krb5_storage *sp, off_t offset, int whence) argument
84 if((size_t)offset > s->size)
85 offset = s->size;
86 if(offset < 0)
87 offset = 0;
88 s->ptr = s->base + offset;
89 if((size_t)offset > s->len)
90 s->len = (size_t)offset;
93 sp->seek(sp,s->ptr - s->base + offset, SEEK_SET);
96 sp->seek(sp, s->len + offset, SEEK_SE
106 emem_trunc(krb5_storage *sp, off_t offset) argument
[all...]
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dfseek.c54 fseek(fp, offset, whence)
56 long offset;
66 ret = _fseeko(fp, (off_t)offset, whence, 1);
74 fseeko(fp, offset, whence)
76 off_t offset;
86 ret = _fseeko(fp, offset, whence, 0);
94 * Seek the given file to the given offset.
98 _fseeko(fp, offset, whence, ltest)
100 off_t offset;
126 * In order to seek relative to the current stream offset,
[all...]
/macosx-10.10/eap8021x-198/EAP8021X.fproj/
H A Deapttls_plugin.c374 void * offset; local
390 offset = data;
393 avp = (DiameterAVP *)offset;
398 offset = (void *)(avp + 1);
399 bcopy(plugin->username, offset, plugin->username_length);
401 bzero(offset + plugin->username_length,
404 offset += user_length_r;
407 avp = (DiameterAVP *)offset;
412 offset = (void *)(avp + 1);
413 bcopy(plugin->password, offset, plugi
441 void * offset; local
500 void * offset; local
603 void * offset; local
718 void * offset; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DRecordInput.java37 int offset,
39 super(buffer, offset, length);
47 * Copy contructor where a new offset can be specified.
49 private RecordInput(RecordInput other, int offset) { argument
51 other.priKeyFormatId, other.buf, offset, other.len);
93 /* Save the current offset before reading the format ID. */
106 int offset = (-(formatId + 1));
108 o = visited.getObject(offset);
120 * When reading starts from a non-zero offset, we may have to
124 visitedOffset = offset;
32 RecordInput(Catalog catalog, boolean rawAccess, DatabaseEntry priKeyEntry, int priKeyFormatId, byte[] buffer, int offset, int length) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLLocation.h65 result.u.variable.offset = addend;
69 static Location forIndirect(DWARFRegister dwarfReg, int32_t offset) argument
74 result.u.variable.offset = offset;
103 int32_t offset() const function in class:JSC::FTL::Location
106 return u.variable.offset;
113 return u.variable.offset;
123 bool operator!() const { return kind() == Unprocessed && !u.variable.offset; }
125 bool isHashTableDeletedValue() const { return kind() == Unprocessed && u.variable.offset; }
139 result ^= u.variable.offset;
184 int32_t offset; member in struct:JSC::FTL::Location::__anon2585::__anon2586
[all...]
/macosx-10.10/WebCore-7600.1.25/editing/
H A DInsertIntoTextNodeCommand.h37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text) argument
39 return adoptRef(new InsertIntoTextNodeCommand(node, offset, text));
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DScrollingConstraints.h65 void setAlignmentOffset(const FloatSize& offset) { m_alignmentOffset = offset; } argument
138 void setStickyOffsetAtLastLayout(const FloatSize& offset) { m_stickyOffsetAtLastLayout = offset; } argument
150 void setLeftOffset(float offset) { m_leftOffset = offset; } argument
151 void setRightOffset(float offset) { m_rightOffset = offset; } argument
152 void setTopOffset(float offset) { m_topOffset = offset; } argument
153 setBottomOffset(float offset) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/freetype/
H A DGlyphPageTreeNodeFreeType.cpp42 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) argument
60 setGlyphDataForIndex(offset + i, 0, 0);
62 setGlyphDataForIndex(offset + i, glyph, fontData);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DGlyphPageTreeNodeCairoWin.cpp37 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) argument
57 setGlyphDataForIndex(offset + i, 0, 0);
59 setGlyphDataForIndex(offset + i, glyph, fontData);
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/bmp/
H A DBMPImageReader.h44 // Read a value from |data[offset]|, converting from little to native
46 static inline uint16_t readUint16(SharedBuffer* data, int offset) argument
49 memcpy(&result, &data->data()[offset], 2);
56 static inline uint32_t readUint32(SharedBuffer* data, int offset) argument
59 memcpy(&result, &data->data()[offset], 4);
123 inline uint16_t readUint16(int offset) const
125 return readUint16(m_data.get(), m_decodedOffset + offset);
128 inline uint32_t readUint32(int offset) const
130 return readUint32(m_data.get(), m_decodedOffset + offset);
198 const int offset local
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DStyleReflection.h49 const Length& offset() const { return m_offset; } function in class:WebCore::StyleReflection
53 void setOffset(Length offset) { m_offset = WTF::move(offset); } argument
/macosx-10.10/WebCore-7600.1.25/replay/
H A DReplaySession.cpp69 size_t offset = m_segments.find(segment); local
70 ASSERT_UNUSED(offset, offset == notFound);
/macosx-10.10/bash-94.1.2/bash-3.2/lib/intl/
H A Dgmo.h112 nls_uint32 offset; member in struct:string_desc
123 nls_uint32 offset; member in struct:sysdep_segment
130 nls_uint32 offset; member in struct:sysdep_string
/macosx-10.10/cxxfilt-11/cxxfilt/intl/
H A Dgmo.h112 nls_uint32 offset; member in struct:string_desc
123 nls_uint32 offset; member in struct:sysdep_segment
130 nls_uint32 offset; member in struct:sysdep_string
/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtmweek.c32 static unsigned char offset[7][3] = variable
63 week = (tm->tm_yday + offset[day][type]) / 7;
79 tm->tm_mday = week * 7 - offset[d][type] + ((day || type != 2) ? day : 7);
/macosx-10.10/postfix-255/postfix/src/global/
H A Drcpt_buf.h35 long offset; /* REC_TYPE_RCPT byte */ member in struct:__anon11772
48 (buf)->rcpt.offset = (buf)->offset, \
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclBinary.c593 int offset, size, length, index;
626 offset = 0;
656 offset += count;
658 offset += (count + 7) / 8;
660 offset += (count + 1) / 2;
726 offset += count*size;
738 offset += count;
744 if ((count > offset) || (count == BINARY_ALL)) {
745 count = offset;
747 if (offset > lengt
584 int offset, size, length, index; local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclBinary.c596 int offset, size, length, index;
629 offset = 0;
658 offset += count;
660 offset += (count + 7) / 8;
662 offset += (count + 1) / 2;
723 offset += count*size;
735 offset += count;
742 if ((count > offset) || (count == BINARY_ALL)) {
743 count = offset;
745 if (offset > lengt
587 int offset, size, length, index; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DPutByIdStatus.cpp74 PropertyOffset offset = structure->getConcurrently(*profiledBlock->vm(), uid); local
75 if (!isValidOffset(offset))
78 return PutByIdVariant::replace(structure, offset);
93 PropertyOffset offset = newStructure->getConcurrently(*profiledBlock->vm(), uid); local
94 if (!isValidOffset(offset))
100 offset);
142 PropertyOffset offset = local
145 if (isValidOffset(offset)) {
147 stubInfo->u.putByIdReplace.baseObjectStructure.get(), offset);
155 PropertyOffset offset local
182 PropertyOffset offset = structure->getConcurrently(*profiledBlock->vm(), uid); local
191 PropertyOffset offset = local
268 PropertyOffset offset = structure->getConcurrently(vm, uid, attributes, specificValue); local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DPutPropertySlot.h1 // -*- mode: c++; c-basic-offset: 4 -*-
55 void setExistingProperty(JSObject* base, PropertyOffset offset) argument
59 m_offset = offset;
62 void setNewProperty(JSObject* base, PropertyOffset offset) argument
66 m_offset = offset;
76 void setCacheableSetter(JSObject* base, PropertyOffset offset) argument
80 m_offset = offset;
/macosx-10.10/WebCore-7600.1.25/dom/
H A DCharacterData.h36 String substringData(unsigned offset, unsigned count, ExceptionCode&);
38 void insertData(unsigned offset, const String&, ExceptionCode&);
39 void deleteData(unsigned offset, unsigned count, ExceptionCode&);
40 void replaceData(unsigned offset, unsigned count, const String&, ExceptionCode&);
48 unsigned parserAppendData(const String& string, unsigned offset, unsigned lengthLimit);
72 void checkCharDataOperation(unsigned offset, ExceptionCode&);
/macosx-10.10/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...]

Completed in 227 milliseconds

1234567891011>>