/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/zoneinfo/ |
D | _zoneinfo.py | 109 return self._find_trans(dt).dstoff 232 dstoff = self._utcoff_to_dstoff(trans_idx, utcoff, isdst) 242 for utcoffset, dstoffset, tzname in zip(utcoff, dstoff, abbr) 329 dstoff = 0 335 dstoff = utcoff - utcoffsets[comp_idx] 337 if not dstoff and idx < (typecnt - 1): 346 dstoff = utcoff - utcoffsets[comp_idx] 348 if dstoff: 350 dstoffs[idx] = dstoff 399 def __init__(self, utcoff, dstoff, tzname): argument [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/zoneinfo/ |
D | _zoneinfo.py | 109 return self._find_trans(dt).dstoff 232 dstoff = self._utcoff_to_dstoff(trans_idx, utcoff, isdst) 242 for utcoffset, dstoffset, tzname in zip(utcoff, dstoff, abbr) 329 dstoff = 0 335 dstoff = utcoff - utcoffsets[comp_idx] 337 if not dstoff and idx < (typecnt - 1): 346 dstoff = utcoff - utcoffsets[comp_idx] 348 if dstoff: 350 dstoffs[idx] = dstoff 399 def __init__(self, utcoff, dstoff, tzname): argument [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/zoneinfo/ |
D | _zoneinfo.py | 109 return self._find_trans(dt).dstoff 232 dstoff = self._utcoff_to_dstoff(trans_idx, utcoff, isdst) 242 for utcoffset, dstoffset, tzname in zip(utcoff, dstoff, abbr) 329 dstoff = 0 335 dstoff = utcoff - utcoffsets[comp_idx] 337 if not dstoff and idx < (typecnt - 1): 346 dstoff = utcoff - utcoffsets[comp_idx] 348 if dstoff: 350 dstoffs[idx] = dstoff 399 def __init__(self, utcoff, dstoff, tzname): argument [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/zoneinfo/ |
D | _zoneinfo.py | 109 return self._find_trans(dt).dstoff 232 dstoff = self._utcoff_to_dstoff(trans_idx, utcoff, isdst) 242 for utcoffset, dstoffset, tzname in zip(utcoff, dstoff, abbr) 329 dstoff = 0 335 dstoff = utcoff - utcoffsets[comp_idx] 337 if not dstoff and idx < (typecnt - 1): 346 dstoff = utcoff - utcoffsets[comp_idx] 348 if dstoff: 350 dstoffs[idx] = dstoff 399 def __init__(self, utcoff, dstoff, tzname): argument [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/zoneinfo/ |
D | _zoneinfo.py | 109 return self._find_trans(dt).dstoff 232 dstoff = self._utcoff_to_dstoff(trans_idx, utcoff, isdst) 242 for utcoffset, dstoffset, tzname in zip(utcoff, dstoff, abbr) 329 dstoff = 0 335 dstoff = utcoff - utcoffsets[comp_idx] 337 if not dstoff and idx < (typecnt - 1): 346 dstoff = utcoff - utcoffsets[comp_idx] 348 if dstoff: 350 dstoffs[idx] = dstoff 399 def __init__(self, utcoff, dstoff, tzname): argument [all …]
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _zoneinfo.c | 25 PyObject *dstoff; member 480 Py_INCREF(tti->dstoff); in zoneinfo_dst() 481 return tti->dstoff; in zoneinfo_dst() 770 out->dstoff = NULL; in build_ttinfo() 779 out->dstoff = load_timedelta(dstoffset); in build_ttinfo() 780 if (out->dstoff == NULL) { in build_ttinfo() 796 Py_XDECREF(ttinfo->dstoff); in xdecref_ttinfo() 811 if ((rv = PyObject_RichCompareBool(tti0->dstoff, tti1->dstoff, Py_EQ)) < in ttinfo_eq() 841 long *dstoff = NULL; in load_data() local 985 dstoff = PyMem_Calloc(self->num_ttinfos, sizeof(long)); in load_data() [all …]
|
/aosp_15_r20/external/python/dateutil/dateutil/tz/ |
D | _common.py | 333 dston, dstoff = transitions 336 dstoff -= self._std_offset 338 utc_transitions = (dston, dstoff) 396 dston, dstoff = transitions 400 if dston < dstoff: 401 isdst = dston <= dt < dstoff 403 isdst = not dstoff <= dt < dston
|
D | win.py | 185 dstoff = picknthweekday(year, self._stdmonth, self._stddayofweek, 190 dstoff -= self._dst_base_offset 192 return dston, dstoff
|
/aosp_15_r20/external/icu/icu4c/source/i18n/ |
H A D | olsontz.cpp | 383 int32_t rawoff, dstoff; in getOffset() local 384 getHistoricalOffset(date, true, kDaylight, kStandard, rawoff, dstoff); in getOffset() 385 return rawoff + dstoff; in getOffset() 392 int32_t& dstoff, UErrorCode& ec) const { in getOffset() argument 397 finalZone->getOffset(date, local, rawoff, dstoff, ec); in getOffset() 399 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff); in getOffset() 405 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const { in getOffsetFromLocal() argument 410 … finalZone->getOffsetFromLocal(date, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff, ec); in getOffsetFromLocal() 412 getHistoricalOffset(date, true, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff); in getOffsetFromLocal() 476 int32_t& rawoff, int32_t& dstoff) const { in getHistoricalOffset() [all …]
|
H A D | olsontz.h | 300 int32_t& rawoff, int32_t& dstoff) const;
|
/aosp_15_r20/external/cronet/third_party/icu/source/i18n/ |
H A D | olsontz.cpp | 383 int32_t rawoff, dstoff; in getOffset() local 384 getHistoricalOffset(date, true, kDaylight, kStandard, rawoff, dstoff); in getOffset() 385 return rawoff + dstoff; in getOffset() 392 int32_t& dstoff, UErrorCode& ec) const { in getOffset() argument 397 finalZone->getOffset(date, local, rawoff, dstoff, ec); in getOffset() 399 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff); in getOffset() 405 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const { in getOffsetFromLocal() argument 410 … finalZone->getOffsetFromLocal(date, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff, ec); in getOffsetFromLocal() 412 getHistoricalOffset(date, true, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff); in getOffsetFromLocal() 476 int32_t& rawoff, int32_t& dstoff) const { in getHistoricalOffset() [all …]
|
H A D | olsontz.h | 300 int32_t& rawoff, int32_t& dstoff) const;
|
/aosp_15_r20/prebuilts/go/linux-x86/src/os/ |
D | readfrom_linux_test.go | 386 dstoff, err := dst.Seek(0, io.SeekCurrent) 390 if dstoff != int64(len(data)) { 391 t.Errorf("dstoff = %d, want %d", dstoff, len(data)) 522 dstoff, err := dst.Seek(0, io.SeekCurrent) 530 if dstoff != srcoff { 531 t.Errorf("offsets differ: dstoff = %d, srcoff = %d", dstoff, srcoff) 533 if dstoff != int64(len(data)) { 534 t.Errorf("dstoff = %d, want %d", dstoff, len(data))
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_transfer.c | 282 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, in nvc0_m2mf_copy_linear() argument 298 PUSH_DATAh(push, dst->offset + dstoff); in nvc0_m2mf_copy_linear() 299 PUSH_DATA (push, dst->offset + dstoff); in nvc0_m2mf_copy_linear() 311 dstoff += bytes; in nvc0_m2mf_copy_linear() 320 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, in nve4_m2mf_copy_linear() argument 335 PUSH_DATAh(push, dst->offset + dstoff); in nve4_m2mf_copy_linear() 336 PUSH_DATA (push, dst->offset + dstoff); in nve4_m2mf_copy_linear()
|
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/common_os/include/external/icu/icu4c/source/i18n/ |
H A D | olsontz.h | 191 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const; 298 int32_t& rawoff, int32_t& dstoff) const;
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_transfer.c | 339 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, in nv50_m2mf_copy_linear() argument 361 PUSH_DATAh(push, dst->offset + dstoff); in nv50_m2mf_copy_linear() 364 PUSH_DATA (push, dst->offset + dstoff); in nv50_m2mf_copy_linear() 372 dstoff += bytes; in nv50_m2mf_copy_linear()
|
H A D | nv50_context.h | 347 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom,
|
/aosp_15_r20/external/cronet/third_party/icu/source/tools/tzcode/ |
H A D | zic.c | 144 static int addtype(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, 2022 stringrule(char *result, const struct rule *const rp, const zic_t dstoff, in stringrule() argument 2074 tod += dstoff; in stringrule() 2708 addtype(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, char *const abbr, const int isd… in addtype() argument 2730 if (isdst != (dstoff != 0)) { in addtype() 2734 if (gmtoff != (rawoff + dstoff)) { in addtype() 2746 rawoff == rawoffs[i] && dstoff == dstoffs[i] && in addtype() 2768 dstoffs[i] = dstoff; in addtype()
|
/aosp_15_r20/external/icu/icu4c/source/tools/tzcode/ |
H A D | zic.c | 144 static int addtype(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, 2022 stringrule(char *result, const struct rule *const rp, const zic_t dstoff, in stringrule() argument 2074 tod += dstoff; in stringrule() 2708 addtype(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, char *const abbr, const int isd… in addtype() argument 2730 if (isdst != (dstoff != 0)) { in addtype() 2734 if (gmtoff != (rawoff + dstoff)) { in addtype() 2746 rawoff == rawoffs[i] && dstoff == dstoffs[i] && in addtype() 2768 dstoffs[i] = dstoff; in addtype()
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_datetime.py | 3123 dstoff = datetime(2002, 10, 27, 1) variable in TestTimezoneConversions 3128 def checkinside(self, dt, tz, utc, dston, dstoff): argument 3169 if dt.date() == dstoff.date() and dt.hour == 0: 3198 dstoff = self.dstoff.replace(tzinfo=tz) 3205 self.checkinside(dston, tz, utc, dston, dstoff) 3206 for during in dston + delta, dstoff - delta: 3207 self.checkinside(during, tz, utc, dston, dstoff) 3209 self.checkoutside(dstoff, tz, utc) 3210 for outside in dston - delta, dstoff + delta: 3270 first_std_hour = self.dstoff - timedelta(hours=2) # 23:MM [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_transfer.h | 36 struct nouveau_bo *, unsigned dstoff, unsigned dstdom,
|
/aosp_15_r20/external/libdav1d/src/arm/64/ |
H A D | msac.S | 113 .macro str_n idx0, idx1, dstreg, dstoff, n 114 str \idx0, [\dstreg, \dstoff] 116 str \idx1, [\dstreg, \dstoff + 16]
|
/aosp_15_r20/external/icu/libicu/cts_headers/ |
H A D | olsontz.h | 300 int32_t& rawoff, int32_t& dstoff) const;
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | datetimetester.py | 5106 dstoff = datetime(2002, 10, 27, 1) variable in TestTimezoneConversions 5111 def checkinside(self, dt, tz, utc, dston, dstoff): argument 5152 if dt.date() == dstoff.date() and dt.hour == 0: 5181 dstoff = self.dstoff.replace(tzinfo=tz) 5188 self.checkinside(dston, tz, utc, dston, dstoff) 5189 for during in dston + delta, dstoff - delta: 5190 self.checkinside(during, tz, utc, dston, dstoff) 5192 self.checkoutside(dstoff, tz, utc) 5193 for outside in dston - delta, dstoff + delta: 5253 first_std_hour = self.dstoff - timedelta(hours=2) # 23:MM [all …]
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | datetime.rst | 1125 ... self.dstoff = d - timedelta(days=d.weekday() + 1) 1126 ... if self.dston <= dt.replace(tzinfo=None) < self.dstoff: 1140 ... self.dstoff = d - timedelta(days=d.weekday() + 1) 1141 ... if self.dston <= dt.replace(tzinfo=None) < self.dstoff: 1438 # Code to set dston and dstoff to the time zone's DST 1442 if dston <= dt.replace(tzinfo=None) < dstoff:
|