Searched refs:offset (Results 51 - 75 of 3492) sorted by relevance

1234567891011>>

/macosx-10.10/OpenSSH-189/openssh/
H A Dbuffer.c41 buffer->offset = 0;
65 buffer->offset = 0;
86 if (buffer->offset > MIN(buffer->alloc, BUFFER_MAX_CHUNK)) {
87 memmove(buffer->buf, buffer->buf + buffer->offset,
88 buffer->end - buffer->offset);
89 buffer->end -= buffer->offset;
90 buffer->offset = 0;
112 if (buffer->offset == buffer->end) {
113 buffer->offset = 0;
146 if (buffer->offset
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DARMAssembler.cpp265 void ARMAssembler::dataTransfer32(DataTransferTypeA transferType, RegisterID srcDst, RegisterID base, int32_t offset) argument
267 if (offset >= 0) {
268 if (offset <= 0xfff)
269 dtrUp(transferType, srcDst, base, offset);
270 else if (offset <= 0xfffff) {
271 add(ARMRegisters::S0, base, Op2Immediate | (offset >> 12) | (10 << 8));
272 dtrUp(transferType, srcDst, ARMRegisters::S0, (offset & 0xfff));
274 moveImm(offset, ARMRegisters::S0);
278 if (offset >= -0xfff)
279 dtrDown(transferType, srcDst, base, -offset);
290 baseIndexTransfer32(DataTransferTypeA transferType, RegisterID srcDst, RegisterID base, RegisterID index, int scale, int32_t offset) argument
311 dataTransfer16(DataTransferTypeB transferType, RegisterID srcDst, RegisterID base, int32_t offset) argument
336 baseIndexTransfer16(DataTransferTypeB transferType, RegisterID srcDst, RegisterID base, RegisterID index, int scale, int32_t offset) argument
356 dataTransferFloat(DataTransferTypeFloat transferType, FPRegisterID srcDst, RegisterID base, int32_t offset) argument
388 baseIndexTransferFloat(DataTransferTypeFloat transferType, FPRegisterID srcDst, RegisterID base, RegisterID index, int scale, int32_t offset) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DWOFFFileFormat.cpp35 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value) argument
37 ASSERT_ARG(offset, offset <= buffer->size());
38 if (buffer->size() - offset < sizeof(value))
41 value = ntohl(*reinterpret_cast_ptr<const uint32_t*>(buffer->data() + offset));
42 offset += sizeof(value);
47 static bool readUInt16(SharedBuffer* buffer, size_t& offset, uint16_t& value) argument
49 ASSERT_ARG(offset, offset <= buffer->size());
50 if (buffer->size() - offset < sizeo
75 size_t offset = 0; local
85 size_t offset = 0; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DTypedArrayBase.h40 bool set(TypedArrayBase<T>* array, unsigned offset) argument
42 return setImpl(array, offset * sizeof(T));
45 bool setRange(const T* data, size_t dataLength, unsigned offset) argument
47 return setRangeImpl(reinterpret_cast<const char*>(data), dataLength * sizeof(T), offset * sizeof(T));
50 bool zeroRange(unsigned offset, size_t length) argument
52 return zeroRangeImpl(offset * sizeof(T), length * sizeof(T));
76 bool checkInboundData(unsigned offset, unsigned pos) const
78 return (offset <= m_length
79 && offset + pos <= m_length
81 && offset
[all...]
H A DGenericTypedArrayView.h48 bool set(GenericTypedArrayView<Adaptor>* array, unsigned offset) argument
50 return setImpl(array, offset * sizeof(typename Adaptor::Type));
53 bool setRange(const typename Adaptor::Type* data, size_t dataLength, unsigned offset) argument
58 offset * sizeof(typename Adaptor::Type));
61 bool zeroRange(unsigned offset, size_t length) argument
63 return zeroRangeImpl(offset * sizeof(typename Adaptor::Type), length * sizeof(typename Adaptor::Type));
92 bool checkInboundData(unsigned offset, unsigned pos) const argument
95 return (offset <= length
96 && offset + pos <= length
98 && offset
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dalias.c36 int any_failed, offset, pflag, dflags; local
43 while ((offset = internal_getopt (list, "p")) != -1)
45 switch (offset)
69 for (offset = 0; alias_list[offset]; offset++)
70 print_alias (alias_list[offset], dflags);
83 for (offset = 0; name[offset] && name[offset] !
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DLabel.java135 * Returns the offset corresponding to this label. This offset is computed
140 * @return the offset corresponding to this label.
145 throw new IllegalStateException("Label offset position has not been resolved yet");
152 * position of the label is known, the offset is computed and written
153 * directly. Otherwise, a null offset is written and a new forward reference
191 * yet. For backward references, the offset of the reference can be, and
195 * position will be used to compute the offset of this forward
197 * @param referencePosition the position where the offset for this forward
230 * small to store the offset
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFELighting.h67 inline void topLeft(int offset, IntPoint& normalVector);
68 inline void topRow(int offset, IntPoint& normalVector);
69 inline void topRight(int offset, IntPoint& normalVector);
70 inline void leftColumn(int offset, IntPoint& normalVector);
71 inline void interior(int offset, IntPoint& normalVector);
72 inline void rightColumn(int offset, IntPoint& normalVector);
73 inline void bottomLeft(int offset, IntPoint& normalVector);
74 inline void bottomRow(int offset, IntPoint& normalVector);
75 inline void bottomRight(int offset, IntPoint& normalVector);
95 inline void inlineSetPixel(int offset, LightingDat
[all...]
/macosx-10.10/BerkeleyDB-21/db/os_windows/
H A Dos_flock.c18 __os_fdlock(env, fhp, offset, acquire, nowait)
22 off_t offset;
47 "fileops: flock %s %s offset %lu",
48 fhp->name, acquire ? "acquire": "release", (u_long)offset);
54 DB_ASSERT(env, offset < (u_int64_t)INT64_MAX);
55 offset = UINT64_MAX - offset;
56 low = (DWORD)offset;
57 high = (DWORD)(offset >> 32);
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Drep.h44 * offset and a limit offset. The range of characters thus specified
45 * includes the characters at offset start..limit-1. That is, the
46 * start offset is inclusive, and the limit offset is exclusive.
88 * Returns the 16-bit code unit at the given offset into the text.
89 * @param offset an integer between 0 and <code>length()</code>-1
91 * @return 16-bit code unit of text at given offset
94 inline UChar charAt(int32_t offset) const;
97 * Returns the 32-bit code point at the given 16-bit offset int
[all...]
/macosx-10.10/WTF-7600.1.24/icu/unicode/
H A Drep.h44 * offset and a limit offset. The range of characters thus specified
45 * includes the characters at offset start..limit-1. That is, the
46 * start offset is inclusive, and the limit offset is exclusive.
88 * Returns the 16-bit code unit at the given offset into the text.
89 * @param offset an integer between 0 and <code>length()</code>-1
91 * @return 16-bit code unit of text at given offset
94 inline UChar charAt(int32_t offset) const;
97 * Returns the 32-bit code point at the given 16-bit offset int
[all...]
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DCanvasGradient.idl29 [RaisesException] void addColorStop([Default=Undefined] optional float offset,
/macosx-10.10/WebCore-7600.1.25/icu/unicode/
H A Drep.h44 * offset and a limit offset. The range of characters thus specified
45 * includes the characters at offset start..limit-1. That is, the
46 * start offset is inclusive, and the limit offset is exclusive.
88 * Returns the 16-bit code unit at the given offset into the text.
89 * @param offset an integer between 0 and <code>length()</code>-1
91 * @return 16-bit code unit of text at given offset
94 inline UChar charAt(int32_t offset) const;
97 * Returns the 32-bit code point at the given 16-bit offset int
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py6 def scaleShadowOffset(offset):
8 # Adjust the shadow offset if scaling to export as bits. This is
11 offset = CGSizeApplyAffineTransform(offset,
13 return offset
30 # An offset where both components are negative casts a shadow to the
31 # left and down from the object. The coordinate system for the offset
33 offset = CGSize(-7, -7)
34 offset = scaleShadowOffset(offset)
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py6 def scaleShadowOffset(offset):
8 # Adjust the shadow offset if scaling to export as bits. This is
11 offset = CGSizeApplyAffineTransform(offset,
13 return offset
30 # An offset where both components are negative casts a shadow to the
31 # left and down from the object. The coordinate system for the offset
33 offset = CGSize(-7, -7)
34 offset = scaleShadowOffset(offset)
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py6 def scaleShadowOffset(offset):
8 # Adjust the shadow offset if scaling to export as bits. This is
11 offset = CGSizeApplyAffineTransform(offset,
13 return offset
30 # An offset where both components are negative casts a shadow to the
31 # left and down from the object. The coordinate system for the offset
33 offset = CGSize(-7, -7)
34 offset = scaleShadowOffset(offset)
[all...]
/macosx-10.10/BerkeleyDB-21/db/os_brew/
H A Dos_seek.c15 * Seek to a page/byte offset in the file.
25 off_t offset; local
32 offset = (off_t)pgsize * pgno + relative;
38 ret = IFILE_Seek(fhp->ifp, _SEEK_START, offset);
43 fhp->offset = relative;
47 "seek: %lu: (%lu * %lu) + %lu", (u_long)offset,
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLAbstractHeapRepository.cpp44 #define ABSTRACT_FIELD_INITIALIZATION(name, offset) , name(&root, #name, offset)
50 #define INDEXED_ABSTRACT_HEAP_INITIALIZATION(name, offset, size) , name(context, &root, #name, offset, size)
67 RELEASE_ASSERT(!JSCell_freeListNext.offset());
/macosx-10.10/msdosfs-209.1.1/
H A DHexDump.py6 def HexDump(bytes, offset=0, bytesPerLine=32, offsetFormat="%08X: ", verbose=False):
8 if offsetFormat is None or offset is None:
16 offStr = offsetFormat % offset
31 offset += bytesPerLine
33 print offsetFormat % offset
/macosx-10.10/xnu-2782.1.97/osfmk/vm/
H A Dvm_external.h121 vm_object_offset_t offset);
127 vm_object_offset_t offset);
129 #define vm_external_state_get(map, offset) \
131 _vm_external_state_get((map), (offset)) : \
139 vm_object_offset_t offset);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DCharacterData.cpp54 String CharacterData::substringData(unsigned offset, unsigned count, ExceptionCode& ec) argument
56 checkCharDataOperation(offset, ec);
60 return m_data.substring(offset, count);
63 unsigned CharacterData::parserAppendData(const String& string, unsigned offset, unsigned lengthLimit) argument
69 unsigned characterLength = string.length() - offset;
77 NonSharedCharacterBreakIterator it(StringView(string).substring(offset, (characterLengthLimit + 2 > characterLength) ? characterLength : characterLengthLimit + 2));
86 m_data.append(string.characters8() + offset, characterLengthLimit);
88 m_data.append(string.characters16() + offset, characterLengthLimit);
120 void CharacterData::insertData(unsigned offset, const String& data, ExceptionCode& ec) argument
122 checkCharDataOperation(offset, e
134 deleteData(unsigned offset, unsigned count, ExceptionCode& ec) argument
154 replaceData(unsigned offset, unsigned count, const String& data, ExceptionCode& ec) argument
235 checkCharDataOperation(unsigned offset, ExceptionCode& ec) argument
[all...]
/macosx-10.10/apr-32/apr/apr/file_io/os2/
H A Dseek.c56 APR_DECLARE(apr_status_t) apr_file_seek(apr_file_t *thefile, apr_seek_where_t where, apr_off_t *offset)
70 rc = setptr(thefile, *offset);
74 rc = setptr(thefile, thefile->filePtr - thefile->dataRead + thefile->bufpos + *offset);
80 rc = setptr(thefile, finfo.size + *offset);
84 *offset = thefile->filePtr - thefile->dataRead + thefile->bufpos;
101 return APR_FROM_OS_ERROR(DosSetFilePtr(thefile->filedes, *offset, where, (ULONG *)offset));
107 APR_DECLARE(apr_status_t) apr_file_trunc(apr_file_t *fp, apr_off_t offset)
109 int rc = DosSetFileSize(fp->filedes, offset);
116 return setptr(fp, offset);
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Drevlib.c33 * copy the lines starting at offset <start> from in <in> to <out>
41 off_t offset; local
54 if((offset = sfseek(in,(off_t)0,SEEK_END)) <= start)
56 offset = rounddown(offset,BUFSIZE);
60 if(offset < start)
62 n -= (start-offset);
63 offset = start;
65 sfseek(in, offset, SEEK_SET);
101 if(offset <
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DTestSupport.py175 offset = 2
177 offset = 0
179 if not info['arguments'][argno+offset].get('c_array_delimited_by_null'):
184 offset = 2
186 offset = 0
188 if not info['arguments'][argno+offset].get('c_array_of_variable_length'):
198 offset = 2
200 offset = 0
202 if not info['arguments'][argno+offset].get('c_array_length_in_result'):
207 offset
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DDatabaseEntry.java92 By default the specified data (byte array, offset and size) corresponds to
111 /* package */ int offset = 0; field in class:DatabaseEntry
137 Construct a DatabaseEntry with null data. The offset and size are set to
144 Construct a DatabaseEntry with a given byte array. The offset is
160 Constructs a DatabaseEntry with a given byte array, offset and size.
164 @param offset
169 public DatabaseEntry(final byte[] data, final int offset, final int size) { argument
171 this.offset = offset;
234 Sets the byte array, offset an
243 setData(final byte[] data, final int offset, final int size) argument
274 setDataNIO(final ByteBuffer data, final int offset, final int size) argument
326 setOffset(final int offset) argument
[all...]

Completed in 262 milliseconds

1234567891011>>