/libcore/luni/src/main/java/java/nio/ |
LongToByteBufferAdapter.java | 101 public LongBuffer get(long[] dst, int dstOffset, int longCount) { 105 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, longCount); 107 ((HeapByteBuffer) byteBuffer).get(dst, dstOffset, longCount);
|
ShortToByteBufferAdapter.java | 100 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { 104 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, shortCount); 106 ((HeapByteBuffer) byteBuffer).get(dst, dstOffset, shortCount);
|
DoubleBuffer.java | 257 * @param dstOffset 262 * not greater than {@code dst.length - dstOffset}. 265 * if either {@code dstOffset} or {@code doubleCount} is invalid. 269 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { 270 Arrays.checkOffsetAndCount(dst.length, dstOffset, doubleCount); 274 for (int i = dstOffset; i < dstOffset + doubleCount; ++i) {
|
FloatBuffer.java | 258 * @param dstOffset 263 * greater than {@code dst.length - dstOffset}. 266 * if either {@code dstOffset} or {@code floatCount} is invalid. 270 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { 271 Arrays.checkOffsetAndCount(dst.length, dstOffset, floatCount); 275 for (int i = dstOffset; i < dstOffset + floatCount; ++i) {
|
IntBuffer.java | 244 * @param dstOffset 249 * greater than {@code dst.length - dstOffset}. 252 * if either {@code dstOffset} or {@code intCount} is invalid. 256 public IntBuffer get(int[] dst, int dstOffset, int intCount) { 257 Arrays.checkOffsetAndCount(dst.length, dstOffset, intCount); 261 for (int i = dstOffset; i < dstOffset + intCount; ++i) {
|
LongBuffer.java | 246 * @param dstOffset 251 * greater than {@code dst.length - dstOffset}. 254 * if either {@code dstOffset} or {@code longCount} is invalid. 258 public LongBuffer get(long[] dst, int dstOffset, int longCount) { 259 Arrays.checkOffsetAndCount(dst.length, dstOffset, longCount); 263 for (int i = dstOffset; i < dstOffset + longCount; ++i) {
|
ShortBuffer.java | 247 * @param dstOffset 252 * not greater than {@code dst.length - dstOffset}. 255 * if either {@code dstOffset} or {@code shortCount} is invalid. 259 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { 260 Arrays.checkOffsetAndCount(dst.length, dstOffset, shortCount); 264 for (int i = dstOffset; i < dstOffset + shortCount; ++i) {
|
ByteBuffer.java | 394 * @param dstOffset 399 * greater than {@code dst.length - dstOffset} 401 * @exception IndexOutOfBoundsException if {@code dstOffset < 0 || byteCount < 0} 404 public ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { 405 Arrays.checkOffsetAndCount(dst.length, dstOffset, byteCount); 409 for (int i = dstOffset; i < dstOffset + byteCount; ++i) { 780 int dstOffset = dst.position(); 782 dstOffset += NioUtils.unsafeArrayOffset(dst); 785 Memory.memmove(dstObject, dstOffset, srcObject, srcOffset, srcByteCount) [all...] |
CharBuffer.java | 312 * @param dstOffset 317 * greater than {@code dst.length - dstOffset}. 320 * if either {@code dstOffset} or {@code charCount} is invalid. 324 public CharBuffer get(char[] dst, int dstOffset, int charCount) { 325 Arrays.checkOffsetAndCount(dst.length, dstOffset, charCount); 329 for (int i = dstOffset; i < dstOffset + charCount; ++i) {
|
MappedByteBufferAdapter.java | 143 public ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { 144 ByteBuffer result = wrapped.get(dst, dstOffset, byteCount);
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
StringImpl.cpp | 855 unsigned dstOffset = 0; 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; 917 memcpy(data + dstOffset, m_data + srcSegmentStart, srcSegmentLength * sizeof(UChar)); 918 dstOffset += srcSegmentLength [all...] |
/external/icu4c/i18n/ |
rbtz.cpp | 373 int32_t rawOffset, dstOffset; 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 = rule->getDSTSavings() [all...] |
vzone.cpp | 131 int32_t& dstOffset, UErrorCode& ec) { 132 return ((VTimeZone*)zone)->VTimeZone::getOffset(date, local, rawOffset, dstOffset, ec);
|
timezone.cpp | 609 int32_t& dstOffset, UErrorCode& ec) const { 638 dstOffset = getOffset(GregorianCalendar::AD, year, month, dom, 643 // Recompute if local==TRUE, dstOffset!=0. 644 if (pass!=0 || !local || dstOffset == 0) { 648 date -= dstOffset; [all...] |
vzone.h | 233 * dstOffset. All computations are performed in the proleptic 245 * @param dstOffset output parameter to receive the DST offset, 255 int32_t& dstOffset, UErrorCode& ec);
|
/libcore/luni/src/main/java/java/util/ |
GregorianCalendar.java | 514 int dstOffset = fields[YEAR] <= 0 ? 0 : getTimeZone().getOffset(AD, 517 dstOffset -= zoneOffset; 519 fields[DST_OFFSET] = dstOffset; 520 if (dstOffset != 0) { 522 millis += dstOffset; 532 + dstOffset); 534 if(fields[YEAR] == changeYear && gregorianCutover <= timeVal - zoneOffset + dstOffset){ 589 int dstOffset = fields[DST_OFFSET]; 594 || (dstOffset == 0 && (newTimeMillisAdjusted >= nextMidnightMillis)) 595 || (dstOffset != 0 && (newTimeMillisAdjusted <= lastMidnightMillis))) [all...] |
/frameworks/base/media/libstagefright/matroska/ |
MatroskaExtractor.cpp | 449 size_t dstOffset = 0; 466 memcpy(&dstPtr[dstOffset], "\x00\x00\x00\x01", 4); 468 memcpy(&dstPtr[dstOffset + 4], 473 dstOffset += 4; // 0x00 00 00 01 474 dstOffset += NALsize; 490 dstSize = dstOffset;
|
/external/skia/src/core/ |
SkBlitRow_D32.cpp | 177 size_t dstOffset = dstRB - (width << 2); 187 device = (uint32_t*)((char*)device + dstOffset);
|
/external/webkit/Source/WebCore/html/ |
BaseDateAndTimeInputType.cpp | 106 double dstOffset = calculateDSTOffset(ms, utcOffset); 107 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
|
/external/icu4c/i18n/unicode/ |
rbtz.h | 177 * 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;
|
/external/icu4c/tools/tzcode/ |
tz2icu.cpp | 137 int64_t dstoffset; // dst seconds offset from GMT member in struct:ZoneType 148 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {} 153 dstoffset == other.dstoffset; 404 type.dstoffset = readcoded(file); 411 if (type.isdst != (type.dstoffset != 0)) { 412 throw invalid_argument("isdst does not reflect dstoffset"); 427 if (info.types.at(0).dstoffset != 0) { 434 && info.types.at(i).dstoffset == 0) { 1207 int64_t dstoffset; member in struct:SimplifiedZoneType [all...] |
/frameworks/base/media/libstagefright/mpeg2ts/ |
ESQueue.cpp | 393 size_t dstOffset = 0; 397 memcpy(accessUnit->data() + dstOffset, 401 dstOffset += frameSizes.itemAt(i); 508 size_t dstOffset = 0; 523 memcpy(accessUnit->data() + dstOffset, "\x00\x00\x00\x01", 4); 525 memcpy(accessUnit->data() + dstOffset + 4, 529 dstOffset += pos.nalSize + 4;
|
/frameworks/base/media/libstagefright/rtsp/ |
ARTPWriter.cpp | 797 size_t dstOffset = 13; 808 data[dstOffset++] = toc; 818 memcpy(&data[dstOffset], &mediaData[srcOffset], frameSize - 1); 820 dstOffset += frameSize - 1; 823 buffer->setRange(0, dstOffset);
|
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/ |
FusionDictionary.java | 313 * I repeat: this method starts the comparison at 1 <> dstOffset + 1. 319 * @param dstOffset the offset in the right-hand side string. 323 private static int compareArrays(final int[] src, final int[] dst, int dstOffset) { 327 if (dstOffset + i >= dst.length) return i; 328 if (src[i] != dst[dstOffset + i]) return i;
|
/external/libvpx/vp8/encoder/ |
picklpf.c | 72 int srcoffset, dstoffset; local 86 dstoffset = dest->y_stride * (dest->y_height >> 5) * 16; 89 dst += dstoffset;
|