/libcore/luni/src/main/java/java/nio/ |
ByteBufferAsDoubleBuffer.java | 101 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { 105 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, doubleCount); 107 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, doubleCount);
|
ByteBufferAsFloatBuffer.java | 100 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { 104 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, floatCount); 106 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, floatCount);
|
ByteBufferAsIntBuffer.java | 101 public IntBuffer get(int[] dst, int dstOffset, int intCount) { 105 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, intCount); 107 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, intCount);
|
ByteBufferAsLongBuffer.java | 101 public LongBuffer get(long[] dst, int dstOffset, int longCount) { 105 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, longCount); 107 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, longCount);
|
ByteBufferAsShortBuffer.java | 100 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { 104 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, shortCount); 106 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, shortCount);
|
DoubleBuffer.java | 255 * @param dstOffset 260 * not greater than {@code dst.length - dstOffset}. 263 * if either {@code dstOffset} or {@code doubleCount} is invalid. 267 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { 268 Arrays.checkOffsetAndCount(dst.length, dstOffset, doubleCount); 272 for (int i = dstOffset; i < dstOffset + doubleCount; ++i) {
|
FloatBuffer.java | 256 * @param dstOffset 261 * greater than {@code dst.length - dstOffset}. 264 * if either {@code dstOffset} or {@code floatCount} is invalid. 268 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { 269 Arrays.checkOffsetAndCount(dst.length, dstOffset, floatCount); 273 for (int i = dstOffset; i < dstOffset + floatCount; ++i) {
|
IntBuffer.java | 242 * @param dstOffset 247 * greater than {@code dst.length - dstOffset}. 250 * if either {@code dstOffset} or {@code intCount} is invalid. 254 public IntBuffer get(int[] dst, int dstOffset, int intCount) { 255 Arrays.checkOffsetAndCount(dst.length, dstOffset, intCount); 259 for (int i = dstOffset; i < dstOffset + intCount; ++i) {
|
LongBuffer.java | 244 * @param dstOffset 249 * greater than {@code dst.length - dstOffset}. 252 * if either {@code dstOffset} or {@code longCount} is invalid. 256 public LongBuffer get(long[] dst, int dstOffset, int longCount) { 257 Arrays.checkOffsetAndCount(dst.length, dstOffset, longCount); 261 for (int i = dstOffset; i < dstOffset + longCount; ++i) {
|
ShortBuffer.java | 245 * @param dstOffset 250 * not greater than {@code dst.length - dstOffset}. 253 * if either {@code dstOffset} or {@code shortCount} is invalid. 257 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { 258 Arrays.checkOffsetAndCount(dst.length, dstOffset, shortCount); 262 for (int i = dstOffset; i < dstOffset + shortCount; ++i) {
|
ByteBuffer.java | 382 * @param dstOffset 387 * greater than {@code dst.length - dstOffset} 389 * @exception IndexOutOfBoundsException if {@code dstOffset < 0 || byteCount < 0} 392 public ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { 393 Arrays.checkOffsetAndCount(dst.length, dstOffset, byteCount); 397 for (int i = dstOffset; i < dstOffset + byteCount; ++i) { 764 int dstOffset = dst.position(); 766 dstOffset += NioUtils.unsafeArrayOffset(dst); 769 Memory.memmove(dstObject, dstOffset, srcObject, srcOffset, srcByteCount) [all...] |
CharBuffer.java | 310 * @param dstOffset 315 * greater than {@code dst.length - dstOffset}. 318 * if either {@code dstOffset} or {@code charCount} is invalid. 322 public CharBuffer get(char[] dst, int dstOffset, int charCount) { 323 Arrays.checkOffsetAndCount(dst.length, dstOffset, charCount); 327 for (int i = dstOffset; i < dstOffset + charCount; ++i) {
|
/external/chromium_org/third_party/icu/source/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);
|
/external/icu4c/i18n/ |
rbtz.cpp | 393 int32_t rawOffset, dstOffset; 395 getOffsetInternal(time, TRUE, kDaylight, kStandard, rawOffset, dstOffset, status); 399 return (rawOffset + dstOffset); 404 int32_t& dstOffset, UErrorCode& status) const { 405 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); 410 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const { 411 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); 421 int32_t& rawOffset, int32_t& dstOffset, 424 dstOffset = 0; 472 dstOffset = rule->getDSTSavings() [all...] |
vzone.cpp | 131 int32_t& dstOffset, UErrorCode& ec) { 132 return ((VTimeZone*)zone)->VTimeZone::getOffset(date, local, rawOffset, dstOffset, ec);
|
/cts/libs/commonutil/src/com/android/cts/util/ |
ReportLog.java | 174 public static void copyArray(double[] src, double[] dst, int dstOffset) { 176 dst[dstOffset + i] = src[i];
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
BaseDateAndTimeInputType.cpp | 96 double dstOffset = calculateDSTOffset(ms, utcOffset); 97 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
|
MonthInputType.cpp | 91 double dstOffset = calculateDSTOffset(current, utcOffset); 92 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
|
TimeInputType.cpp | 78 double dstOffset = calculateDSTOffset(current, utcOffset); 79 int offset = static_cast<int>((utcOffset + dstOffset) / msPerMinute);
|
/external/chromium_org/third_party/icu/source/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/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/chromium_org/third_party/icu/source/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...] |
/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...] |
/external/libvpx/libvpx/vp8/encoder/ |
picklpf.c | 60 int srcoffset, dstoffset; local 73 dstoffset = dest->y_stride * ((dest->y_height >> 5) * 16); 76 dst += dstoffset;
|