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

1234567891011>>

/macosx-10.10.1/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.1/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.1/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.1/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.1/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...]
H A DArabicLayoutEngine.cpp69 le_int32 ArabicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, argument
77 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
97 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage);
102 ArabicShaping::shape(chars, offset, count, max, rightToLeft, glyphStorage);
107 void ArabicOpenTypeLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, argument
114 if (chars == NULL || offset < 0 || count < 0) {
120 OpenTypeLayoutEngine::adjustGlyphPositions(chars, offset, count, reverse, glyphStorage, success);
128 adjustMarkGlyphs(&chars[offset], coun
176 mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool , LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
201 adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
[all...]
H A DHanLayoutEngine.cpp54 le_int32 HanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, argument
61 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
/macosx-10.10.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dkpc_common.c173 int r, enabled, offset = 0; local
186 kpc_get_fixed_counters( &buf[offset] );
188 offset += kpc_get_counter_count(KPC_CLASS_FIXED_MASK);
193 r = kpc_get_configurable_counters( &buf[offset] );
195 offset += kpc_get_counter_count(KPC_CLASS_CONFIGURABLE_MASK);
200 return offset;
207 int enabled, count, offset = 0; local
220 memcpy( &buf[offset], &FIXED_SHADOW(0), count*sizeof(uint64_t) );
222 offset += count;
229 memcpy( &buf[offset],
399 uint32_t i, count, offset = 0; local
428 uint32_t count, offset = 0; local
455 uint32_t count, offset = 0; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/examples_c/csv/
H A Dcsv.h53 * The length of any item can be calculated from the two offset fields.
55 * An offset that's illegal, used to detect unavailable fields.
57 #define OFFSET_LEN(offset, indx) \
58 (((offset)[(indx) + 1] - (offset)[(indx)]) - 1)
84 size_t offset; /* DbRecord field offset */ member in struct:__anon330
/macosx-10.10.1/BerkeleyDB-21/db/os_windows/
H A Dos_truncate.c33 off_t offset; local
37 offset = (off_t)pgsize * pgno;
43 "fileops: truncate %s to %lu", fhp->name, (u_long)offset);
60 if (offset > stat_offset)
81 * offset, so if we need to retry, we have to reset the offset each
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dnultrans.h52 virtual void handleTransliterate(Replaceable& text, UTransPosition& offset,
H A Dremtrans.h54 * @param offset the start and limit of the text, the position
59 virtual void handleTransliterate(Replaceable& text, UTransPosition& offset,
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DGetByIdVariant.cpp48 inContext(specificValue(), context), ", ", offset(), ">");
H A DVirtualRegister.h66 int offset() const { return m_virtualRegister; } function in class:JSC::VirtualRegister
91 inline VirtualRegister virtualRegisterForArgument(int argument, int offset = 0)
93 return VirtualRegister(VirtualRegister::argumentToOperand(argument) + offset);
102 out.print(value.offset());
/macosx-10.10.1/Security-57031.1.35/Security/include/security_smime/
H A Dsecoidt.h52 SECOidTag offset; member in struct:SECOidDataStr
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dsecoidt.h52 SECOidTag offset; member in struct:SECOidDataStr

Completed in 421 milliseconds

1234567891011>>