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

1234567891011>>

/macosx-10.10/ICU-531.30/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.10/ICU-531.30/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.10/WebCore-7600.1.25/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,
H A DPosition.h77 explicit LegacyEditingOffset(int offset) : m_offset(offset) { } argument
79 friend Position createLegacyEditingPosition(PassRefPtr<Node>, int offset);
87 Position(PassRefPtr<Text> textNode, unsigned offset);
89 // For creating offset positions:
91 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
140 void moveToPosition(PassRefPtr<Node> anchorNode, int offset);
141 void moveToOffset(int offset);
217 static AnchorType anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset);
220 // m_offset can be the offset insid
228 createLegacyEditingPosition(PassRefPtr<Node> node, int offset) argument
318 minOffsetForNode(Node* anchorNode, int offset) argument
330 offsetIsBeforeLastNodeOffset(int offset, Node* anchorNode) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/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(constrainingRect); local
98 return m_layerPositionAtLastLayout + offset - m_stickyOffsetAtLastLayout;
/macosx-10.10/WebCore-7600.1.25/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.10/WebCore-7600.1.25/platform/text/icu/
H A DUTextProvider.h79 int64_t offset = nativeIndex - text->chunkNativeStart; local
80 // Ensure chunk offset is well formed if computed offset exceeds int32_t range.
81 ASSERT(offset < std::numeric_limits<int32_t>::max());
82 text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : 0;
93 int64_t offset = nativeIndex - text->chunkNativeStart;
94 // Ensure chunk offset is well formed if computed offset exceeds int32_t range.
95 ASSERT(offset < st
[all...]
/macosx-10.10/WebKit-7600.1.25/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.10/dtrace-147/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.10/dtrace-147/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.10/tcl-105/tcl84/tcl/generic/
H A DtclIndexObj.c53 int offset; /* Offset between table entries */ member in struct:__anon12808
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.10/ICU-531.30/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.10/OpenSSL098-52/src/crypto/bn/asm/
H A Dpa-risc2.s756 STW %r2,-20(%r30) ;offset 0x8ec
757 STW,MA %r3,192(%r30) ;offset 0x8f0
758 STW %r4,-188(%r30) ;offset 0x8f4
759 DEPD %r5,31,32,%r6 ;offset 0x8f8
760 STD %r6,-184(%r30) ;offset 0x8fc
761 DEPD %r7,31,32,%r8 ;offset 0x900
762 STD %r8,-176(%r30) ;offset 0x904
763 STW %r9,-168(%r30) ;offset 0x908
764 LDD -248(%r30),%r3 ;offset 0x90c
765 COPY %r26,%r4 ;offset
[all...]
/macosx-10.10/tcl-105/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.10/libarchive-30/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.10/ICU-531.30/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.10/JavaScriptCore-7600.1.17/runtime/
H A DArrayBufferView.h114 unsigned* offset, unsigned* length);
116 // Input offset is in number of elements from this array's view;
117 // output offset is in number of bytes from the underlying buffer's view.
122 unsigned *offset,
126 if (*offset > maxOffset) {
127 *offset = buffer->byteLength();
131 *offset = arrayByteOffset + *offset * sizeof(T);
132 *offset = std::min(buffer->byteLength(), *offset);
119 clampOffsetAndNumElements( PassRefPtr<ArrayBuffer> buffer, unsigned arrayByteOffset, unsigned *offset, unsigned *numElements) argument
190 calculateOffsetAndLength( int start, int end, unsigned arraySize, unsigned* offset, unsigned* length) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/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...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
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...]
/macosx-10.10/WebKit-7600.1.25/win/
H A DAccessibleTextImpl.h39 virtual HRESULT STDMETHODCALLTYPE get_attributes(long offset, long* startOffset, long* endOffset, BSTR* textAttributes);
40 virtual HRESULT STDMETHODCALLTYPE get_caretOffset(long* offset);
41 virtual HRESULT STDMETHODCALLTYPE get_characterExtents(long offset, enum IA2CoordinateType coordType, long* x, long* y, long* width, long* height);
43 virtual HRESULT STDMETHODCALLTYPE get_offsetAtPoint(long x, long y, enum IA2CoordinateType coordType, long* offset);
46 virtual HRESULT STDMETHODCALLTYPE get_textBeforeOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text);
47 virtual HRESULT STDMETHODCALLTYPE get_textAfterOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text);
48 virtual HRESULT STDMETHODCALLTYPE get_textAtOffset(long offset, enum IA2TextBoundaryType boundaryType, long* startOffset, long* endOffset, BSTR* text);
50 virtual HRESULT STDMETHODCALLTYPE setCaretOffset(long offset);
59 virtual HRESULT STDMETHODCALLTYPE get_attributeRange(long offset, BSTR filter, long* startOffset, long* endOffset, BSTR* attributeValues);
64 virtual HRESULT STDMETHODCALLTYPE insertText(long offset, BST
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/base/
H A DtkimgPPB.c65 int alphaOffset = blockPtr->offset[3];
67 alphaOffset = blockPtr->offset[0];
68 if (alphaOffset < blockPtr->offset[1]) {
69 alphaOffset = blockPtr->offset[1];
71 if (alphaOffset < blockPtr->offset[2]) {
72 alphaOffset = blockPtr->offset[2];
75 alphaOffset = blockPtr->offset[0];
78 if ((alphaOffset == blockPtr->offset[1]) ||
79 (alphaOffset == blockPtr->offset[2])) {
80 alphaOffset = blockPtr->offset[
[all...]
/macosx-10.10/top-100.1.2/
H A Doptions.c73 /* The caller of this is expected to have initialized the *offset value to a valid argv array offset. */
74 bool top_option_get(int argc, char *argv[], struct top_option *opts, int *offset, int *optvalue, char **argresult) { argument
77 assert(*offset < argc);
87 if(!strcmp(argv[*offset], opts[opti].option_string)) {
88 if((*offset + 1) >= argc) {
92 *argresult = argv[*offset + 1];
94 *offset += 2;
96 } else if(2 == strlen(opts[opti].option_string) && strlen(argv[*offset]) >= 2
97 && opts[opti].option_string[0] == argv[*offset][
214 int offset = 1; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dbytestriebuilder.cpp41 int32_t offset=stringOffset; local
43 if(offset>=0) {
44 length=(uint8_t)strings[offset++];
46 offset=~offset;
47 length=((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1];
48 offset+=2;
50 return StringPiece(strings.data()+offset, length);
53 int32_t offset local
70 int32_t offset=stringOffset; local
100 int32_t offset=strings.length(); local
461 int32_t offset=write(node); local
[all...]
H A Ducol_swp.cpp446 int32_t offset; // byte offset for the index part local
450 offset = indexes[index];
451 length = indexes[index + 1] - offset;
453 ds->swapArray32(ds, inBytes + offset, length, outBytes + offset, &errorCode);
459 offset = indexes[index];
460 length = indexes[index + 1] - offset;
462 utrie2_swap(ds, inBytes + offset, length, outBytes + offset,
[all...]
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-802_11.c655 parse_elements(struct mgmt_body_t *pbody, const u_char *p, int offset, argument
677 if (!TTEST2(*(p + offset), 1))
681 switch (*(p + offset)) {
683 if (!TTEST2(*(p + offset), 2))
687 memcpy(&ssid, p + offset, 2);
688 offset += 2;
693 if (!TTEST2(*(p + offset), ssid.length))
697 memcpy(&ssid.ssid, p + offset, ssid.length);
698 offset += ssid.length;
715 if (!TTEST2(*(p + offset),
900 int offset = 0; local
936 int offset = 0; local
963 int offset = 0; local
999 int offset = 0; local
1039 int offset = 0; local
1056 int offset = 0; local
1118 int offset = 0; local
1171 int offset = 0; local
[all...]

Completed in 356 milliseconds

1234567891011>>