/external/chromium_org/third_party/icu/source/test/intltest/ |
H A D | tzoffloc.cpp | 79 // 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...] |
/external/icu/icu4c/source/test/intltest/ |
H A D | tzoffloc.cpp | 79 // 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...] |
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
H A D | icuzdump.cpp | 131 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/icu/icu4c/source/tools/tzcode/ |
H A D | icuzdump.cpp | 131 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/deqp/modules/gles3/functional/ |
H A D | es3fBufferCopyTests.cpp | 183 int dstOffset; member in struct:deqp::gles3::Functional::SingleBufferCopyCase::__anon19991 196 int dstOffset = copyRanges[ndx].dstOffset; local 207 deMemcpy(ref.getPtr()+dstOffset, ref.getPtr()+srcOffset, copySize); 210 glCopyBufferSubData(m_srcTarget, m_dstTarget, srcOffset, dstOffset, copySize); 288 int dstOffset; member in struct:deqp::gles3::Functional::__anon19992 312 cases[ndx].srcOffset, cases[ndx].dstOffset, cases[ndx].copySize,
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
H A D | 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;
|
H A D | basictz.h | 162 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const;
|
H A D | simpletz.h | 617 int32_t& dstOffset, UErrorCode& ec) const; 624 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const;
|
/external/icu/icu4c/source/i18n/unicode/ |
H A D | 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;
|
H A D | basictz.h | 162 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const;
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
H A D | StringImpl.cpp | 1667 unsigned dstOffset = 0; 1675 memcpy(data + dstOffset, characters8() + srcSegmentStart, srcSegmentLength * sizeof(LChar)); 1676 dstOffset += srcSegmentLength; 1677 memcpy(data + dstOffset, replacement, repStrLength * sizeof(LChar)); 1678 dstOffset += repStrLength; 1683 memcpy(data + dstOffset, characters8() + srcSegmentStart, srcSegmentLength * sizeof(LChar)); 1685 ASSERT(dstOffset + srcSegmentLength == newImpl->length()); 1695 memcpy(data + dstOffset, characters16() + srcSegmentStart, srcSegmentLength * sizeof(UChar)); 1697 dstOffset += srcSegmentLength; 1699 data[i + dstOffset] 1826 unsigned dstOffset = 0; local [all...] |
/external/chromium_org/chrome/browser/chromeos/timezone/ |
H A D | timezone_request.h | 41 double dstOffset; member in struct:chromeos::TimeZoneResponseData
|
H A D | timezone_request.cc | 39 const char kDstOffsetString[] = "dstOffset"; 225 &timezone->dstOffset) && 227 PrintTimeZoneError(server_url, "Missing dstOffset attribute.", timezone); 297 : dstOffset(0), rawOffset(0), status(ZERO_RESULTS) { 420 "dstOffset=%f, rawOffset=%f, timeZoneId='%s', timeZoneName='%s', " 422 dstOffset,
|
/external/chromium_org/third_party/icu/source/i18n/ |
H A D | rbtz.cpp | 389 int32_t rawOffset, dstOffset; local 391 getOffsetInternal(time, TRUE, kDaylight, kStandard, rawOffset, dstOffset, status); 395 return (rawOffset + dstOffset); 400 int32_t& dstOffset, UErrorCode& status) const { 401 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); 406 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const { 407 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); 417 int32_t& rawOffset, int32_t& dstOffset, 420 dstOffset = 0; 468 dstOffset 399 getOffset(UDate date, UBool local, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument 405 getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument 415 getOffsetInternal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument [all...] |
H A D | chnsecal.cpp | 481 int32_t rawOffset, dstOffset; local 483 fZoneAstroCalc->getOffset(millis, FALSE, rawOffset, dstOffset, status); 485 return millis - (double)(rawOffset + dstOffset); 498 int32_t rawOffset, dstOffset; local 500 fZoneAstroCalc->getOffset(millis, FALSE, rawOffset, dstOffset, status); 502 return ClockMath::floorDivide(millis + (double)(rawOffset + dstOffset), kOneDay);
|
H A D | vzone.cpp | 131 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 D | olsontz.h | 183 int32_t& dstOffset, UErrorCode& ec) const;
|
H A D | vzone.h | 218 * dstOffset. All computations are performed in the proleptic 230 * @param dstOffset output parameter to receive the DST offset, 239 int32_t& dstOffset, UErrorCode& ec);
|
/external/icu/icu4c/source/i18n/ |
H A D | rbtz.cpp | 389 int32_t rawOffset, dstOffset; local 391 getOffsetInternal(time, TRUE, kDaylight, kStandard, rawOffset, dstOffset, status); 395 return (rawOffset + dstOffset); 400 int32_t& dstOffset, UErrorCode& status) const { 401 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status); 406 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const { 407 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status); 417 int32_t& rawOffset, int32_t& dstOffset, 420 dstOffset = 0; 468 dstOffset 399 getOffset(UDate date, UBool local, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument 405 getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument 415 getOffsetInternal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const argument [all...] |
H A D | chnsecal.cpp | 481 int32_t rawOffset, dstOffset; local 483 fZoneAstroCalc->getOffset(millis, FALSE, rawOffset, dstOffset, status); 485 return millis - (double)(rawOffset + dstOffset); 498 int32_t rawOffset, dstOffset; local 500 fZoneAstroCalc->getOffset(millis, FALSE, rawOffset, dstOffset, status); 502 return ClockMath::floorDivide(millis + (double)(rawOffset + dstOffset), kOneDay);
|
H A D | vzone.cpp | 131 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 D | olsontz.h | 183 int32_t& dstOffset, UErrorCode& ec) const;
|
H A D | vzone.h | 218 * dstOffset. All computations are performed in the proleptic 230 * @param dstOffset output parameter to receive the DST offset, 239 int32_t& dstOffset, UErrorCode& ec);
|
/external/deqp/framework/common/ |
H A D | tcuCompressedTexture.cpp | 459 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8; local 465 dst[dstOffset+0] = (deUint8)deClamp32((int)baseR[subBlock] + modifier, 0, 255); 466 dst[dstOffset+1] = (deUint8)deClamp32((int)baseG[subBlock] + modifier, 0, 255); 467 dst[dstOffset+2] = (deUint8)deClamp32((int)baseB[subBlock] + modifier, 0, 255); 554 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8; local 563 dst[dstOffset+0] = 0; 564 dst[dstOffset+1] = 0; 565 dst[dstOffset+2] = 0; 578 dst[dstOffset+0] = (deUint8)deClamp32((int)baseR[subBlock] + modifier, 0, 255); 579 dst[dstOffset 670 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8; local 717 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8; local 764 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_A8; local 811 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11; local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
H A D | DateMath.cpp | 797 double dstOffset = calculateDSTOffset(ms, utcOffset); local 798 offset = (utcOffset + dstOffset) / msPerMinute; 834 double dstOffset = calculateDSTOffset(ms, utcOffset); local 835 return (ms + utcOffset + dstOffset);
|