Searched refs:dstOffset (Results 1 - 25 of 28) sorted by relevance

12

/external/okhttp/src/main/java/libcore/io/
H A DBufferIterator.java38 * {@code dstOffset}, and advances the current position {@code byteCount} bytes.
40 public abstract void readByteArray(byte[] dst, int dstOffset, int byteCount); argument
54 * {@code dstOffset}, and advances the current position {@code 4 * intCount} bytes.
56 public abstract void readIntArray(int[] dst, int dstOffset, int intCount); argument
/external/icu4c/test/intltest/
H A Dtzoffloc.cpp79 // int32_t& dstOffset, UErrorCode& ec) with local=TRUE
81 // int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with
100 // int32_t duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with
120 int32_t rawOffset, dstOffset; local
220 // int32_t& dstOffset, UErrorCode& ec) with local = TRUE
224 TESTZONES[i]->getOffset(MILLIS[m], TRUE, rawOffset, dstOffset, status);
226 errln((UnicodeString)"getOffset(date,local,rawOfset,dstOffset,ec) failed for TESTZONES[" + i + "]");
227 } else if (rawOffset != OFFSETS2[m][0] || dstOffset != OFFSETS2[m][1]) {
232 + rawOffset + "/" + dstOffset
239 // int32_t& rawOffset, int32_t& dstOffset, UErroCod
[all...]
H A Ddtfmttst.cpp154 UnicodeString dstOffset = (UnicodeString)"" + sign + (hours < 10 ? "0" : "") + local
157 dstOffset = dstOffset + ":" + (seconds < 10 ? "0" : "") + seconds;
180 UBool ok = fmtDstOffset == 0 || *fmtDstOffset == dstOffset;
183 logln(UnicodeString() + i + " " + *id + " " + dstOffset +
189 errln(UnicodeString() + i + " " + *id + " " + dstOffset +
/external/icu4c/tools/tzcode/
H A Dicuzdump.cpp131 int32_t rawOffset, dstOffset; local
136 timezone->getOffset(t, FALSE, rawOffset, dstOffset, status);
143 UBool bSameOffset = (rawOffset + dstOffset) == (newRawOffset + newDstOffset);
144 UBool bSameDst = ((dstOffset != 0) && (newDstOffset != 0)) || ((dstOffset == 0) && (newDstOffset == 0));
159 bSameOffset = (rawOffset + dstOffset) == (medRawOffset + medDstOffset);
160 bSameDst = ((dstOffset != 0) && (medDstOffset != 0)) || ((dstOffset == 0) && (medDstOffset == 0));
170 formatter->format(lot, rawOffset + dstOffset, (dstOffset
[all...]
/external/webkit/Source/WebCore/html/
H A DTimeInputType.cpp63 double dstOffset = calculateDSTOffset(current, utcOffset); local
64 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
H A DMonthInputType.cpp83 double dstOffset = calculateDSTOffset(current, utcOffset); local
84 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
H A DBaseDateAndTimeInputType.cpp106 double dstOffset = calculateDSTOffset(ms, utcOffset); local
107 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
/external/icu4c/i18n/unicode/
H A Drbtz.h177 * dstOffset. All computations are performed in the proleptic
188 * @param dstOffset output parameter to receive the DST offset,
197 int32_t& dstOffset, UErrorCode& ec) const;
304 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) /*const*/;
319 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& ec) const;
H A Dbasictz.h160 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) /*const*/;
H A Dsimpletz.h617 int32_t& dstOffset, UErrorCode& ec) const;
624 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) /*const*/;
H A Dtimezone.h402 * dstOffset. All computations are performed in the proleptic
413 * @param dstOffset output parameter to receive the DST offset,
423 int32_t& dstOffset, UErrorCode& ec) const;
H A Dvtzone.h241 * dstOffset. All computations are performed in the proleptic
252 * @param dstOffset output parameter to receive the DST offset,
261 int32_t& dstOffset, UErrorCode& ec) const;
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.cpp855 unsigned dstOffset = 0; local
859 memcpy(data + dstOffset, m_data + srcSegmentStart, srcSegmentLength * sizeof(UChar));
860 dstOffset += srcSegmentLength;
861 memcpy(data + dstOffset, replacement->m_data, repStrLength * sizeof(UChar));
862 dstOffset += repStrLength;
867 memcpy(data + dstOffset, m_data + srcSegmentStart, srcSegmentLength * sizeof(UChar));
869 ASSERT(dstOffset + srcSegmentLength == newImpl->length());
913 unsigned dstOffset = 0; local
917 memcpy(data + dstOffset, m_data + srcSegmentStart, srcSegmentLength * sizeof(UChar));
918 dstOffset
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCustomPlatformData.cpp137 size_t dstOffset = max<int>(m_overlayDst - m_offset, 0); local
139 size_t bytesToCopy = min(bytesFromData - dstOffset, m_overlayLength - srcOffset);
140 memcpy(reinterpret_cast<char*>(buffer) + dstOffset, m_fontData->data() + m_overlaySrc + srcOffset, bytesToCopy);
/external/icu4c/i18n/
H A Drbtz.cpp373 int32_t rawOffset, dstOffset; local
375 getOffsetInternal(time, TRUE, kDaylight, kStandard, rawOffset, dstOffset, status);
379 return (rawOffset + dstOffset);
384 int32_t& dstOffset, UErrorCode& status) const {
385 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status);
390 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) /*const*/ {
391 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status);
401 int32_t& rawOffset, int32_t& dstOffset,
404 dstOffset = 0;
450 dstOffset
383 getOffset(UDate date, UBool local, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument
389 getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) argument
399 getOffsetInternal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument
[all...]
H A Dvzone.cpp131 int32_t& dstOffset, UErrorCode& ec) {
132 return ((VTimeZone*)zone)->VTimeZone::getOffset(date, local, rawOffset, dstOffset, ec);
130 vzone_getOffset3(VZone* zone, UDate date, UBool local, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& ec) argument
H A Dolsontz.h182 int32_t& dstOffset, UErrorCode& ec) const;
H A Dvzone.h218 * dstOffset. All computations are performed in the proleptic
230 * @param dstOffset output parameter to receive the DST offset,
239 int32_t& dstOffset, UErrorCode& ec);
H A Dtimezone.cpp590 int32_t& dstOffset, UErrorCode& ec) const {
619 dstOffset = getOffset(GregorianCalendar::AD, year, month, dom,
624 // Recompute if local==TRUE, dstOffset!=0.
625 if (pass!=0 || !local || dstOffset == 0) {
629 date -= dstOffset;
1264 int32_t dstOffset; local
1265 this->getOffset(d, FALSE, rawOffset, dstOffset, status);
1270 if ((daylight && dstOffset != 0) ||
1271 (!daylight && dstOffset == 0) ||
589 getOffset(UDate date, UBool local, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& ec) const argument
H A Dcalendar.cpp1242 int32_t rawOffset, dstOffset; local
1243 getTimeZone().getOffset(localMillis, FALSE, rawOffset, dstOffset, ec);
1244 localMillis += (rawOffset + dstOffset);
1311 fFields[UCAL_DST_OFFSET] = dstOffset;
2664 int32_t rawOffset, dstOffset; local
2665 getTimeZone().getOffset(millis+millisInDay, TRUE, rawOffset, dstOffset, ec);
2666 return rawOffset + dstOffset;
/external/webkit/Source/JavaScriptCore/wtf/
H A DDateMath.cpp1017 double dstOffset = calculateDSTOffset(ms, utcOffset); local
1018 offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
1163 double dstOffset = getDSTOffset(exec, ms, utcOffset); local
1164 offset = static_cast<int>((utcOffset + dstOffset) / WTF::msPerMinute);
/external/skia/src/core/
H A DSkBlitMask_D32.cpp9 size_t dstOffset = dstRB - (width << 2); local
21 device = (uint32_t*)((char*)device + dstOffset);
/external/skia/src/opts/
H A DSkBlitRow_opts_SSE2.cpp421 size_t dstOffset = dstRB - (width << 2); local
510 dst = (SkPMColor *)((char*)dst + dstOffset);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGLUtils.cpp643 int dstOffset = i * destRowSize; local
644 memcpy(dstPixels + dstOffset, srcPixels + srcOffset, destRowSize);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3Client.java1271 int dstOffset; field in class:SFTPv3Client.OutstandingReadRequest
1372 req.dstOffset = dstoff;
1442 tr.readBytes(req.buffer, req.dstOffset, readLen);

Completed in 598 milliseconds

12