/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_transfer.h | 36 struct nouveau_bo *, unsigned dstoff, unsigned dstdom,
|
/external/icu/icu4c/source/i18n/ |
H A D | olsontz.cpp | 383 int32_t rawoff, dstoff; local 384 getHistoricalOffset(date, TRUE, kDaylight, kStandard, rawoff, dstoff); 385 return rawoff + dstoff; 392 int32_t& dstoff, UErrorCode& ec) const { 397 finalZone->getOffset(date, local, rawoff, dstoff, ec); 399 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff); 405 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const { 410 finalZone->getOffsetFromLocal(date, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff, ec); 412 getHistoricalOffset(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff); 477 int32_t& rawoff, int32_t& dstoff) cons 391 getOffset(UDate date, UBool local, int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const argument 404 getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const argument [all...] |
H A D | olsontz.h | 191 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const; 298 int32_t& rawoff, int32_t& dstoff) const;
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_transfer.c | 258 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, 274 PUSH_DATAh(push, dst->offset + dstoff); 275 PUSH_DATA (push, dst->offset + dstoff); 287 dstoff += bytes; 296 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, 311 PUSH_DATAh(push, dst->offset + dstoff); 312 PUSH_DATA (push, dst->offset + dstoff); 257 nvc0_m2mf_copy_linear(struct nouveau_context *nv, struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, struct nouveau_bo *src, unsigned srcoff, unsigned srcdom, unsigned size) argument 295 nve4_m2mf_copy_linear(struct nouveau_context *nv, struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, struct nouveau_bo *src, unsigned srcoff, unsigned srcdom, unsigned size) argument
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_transfer.c | 204 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, 226 PUSH_DATAh(push, dst->offset + dstoff); 229 PUSH_DATA (push, dst->offset + dstoff); 237 dstoff += bytes; 203 nv50_m2mf_copy_linear(struct nouveau_context *nv, struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, struct nouveau_bo *src, unsigned srcoff, unsigned srcdom, unsigned size) argument
|
H A D | nv50_context.h | 284 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom,
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
H A D | disasm-a3xx.c | 485 int src1off = 0, dstoff = 0; local 594 dstoff = cat6->c.off; 617 if (dstoff) 618 printf("%+d", dstoff);
|
/external/icu/icu4c/source/tools/tzcode/ |
H A D | zic.c | 143 static int addtype(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, 2021 stringrule(char *result, const struct rule *const rp, const zic_t dstoff, argument 2073 tod += dstoff; 2707 addtype(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, char *const abbr, const int isdst, argument 2729 if (isdst != (dstoff != 0)) { 2730 error(_("internal error - addtype called with bad isdst/dstoff")); 2733 if (gmtoff != (rawoff + dstoff)) { 2734 error(_("internal error - addtype called with bad gmt/raw/dstoff")); 2745 rawoff == rawoffs[i] && dstoff == dstoffs[i] && 2767 dstoffs[i] = dstoff; [all...] |
/external/python/cpython2/Lib/test/ |
H A D | test_datetime.py | 3083 dstoff = datetime(2002, 10, 27, 1) variable in class:TestTimezoneConversions 3088 def checkinside(self, dt, tz, utc, dston, dstoff): 3129 if dt.date() == dstoff.date() and dt.hour == 0: 3158 dstoff = self.dstoff.replace(tzinfo=tz) 3165 self.checkinside(dston, tz, utc, dston, dstoff) 3166 for during in dston + delta, dstoff - delta: 3167 self.checkinside(during, tz, utc, dston, dstoff) 3169 self.checkoutside(dstoff, tz, utc) 3170 for outside in dston - delta, dstoff [all...] |
/external/python/cpython3/Lib/test/ |
H A D | datetimetester.py | 3733 dstoff = datetime(2002, 10, 27, 1) variable in class:TestTimezoneConversions 3738 def checkinside(self, dt, tz, utc, dston, dstoff): 3779 if dt.date() == dstoff.date() and dt.hour == 0: 3808 dstoff = self.dstoff.replace(tzinfo=tz) 3815 self.checkinside(dston, tz, utc, dston, dstoff) 3816 for during in dston + delta, dstoff - delta: 3817 self.checkinside(during, tz, utc, dston, dstoff) 3819 self.checkoutside(dstoff, tz, utc) 3820 for outside in dston - delta, dstoff [all...] |