Home
last modified time | relevance | path

Searched refs:dst_ (Results 1 – 10 of 10) sorted by relevance

/external/libvpx/libvpx/test/
Dsixtap_predict_test.cc39 dst_ = reinterpret_cast<uint8_t*>(vpx_memalign(kDataAlignment, kDstSize)); in SetUpTestCase()
46 vpx_free(dst_); in TearDownTestCase()
47 dst_ = NULL; in TearDownTestCase()
70 memset(dst_, 0, kDstSize); in SetUp()
81 static uint8_t* dst_; member in __anon853e22680111::SixtapPredictTest
86 uint8_t* SixtapPredictTest::dst_ = NULL; member in __anon853e22680111::SixtapPredictTest
146 2, 2, dst_, kDstStride)); in TEST_P()
150 ASSERT_EQ(expected_dst[i * kDstStride + j], dst_[i * kDstStride + j]) in TEST_P()
173 xoffset, yoffset, dst_, kDstStride)); in TEST_P()
177 ASSERT_EQ(dst_c_[i * kDstStride + j], dst_[i * kDstStride + j]) in TEST_P()
/external/chromium_org/v8/src/
Ddate.cc59 ClearSegment(&dst_[i]); in ResetDateCache()
62 before_ = &dst_[0]; in ResetDateCache()
63 after_ = &dst_[1]; in ResetDateCache()
233 ClearSegment(&dst_[i]); in DaylightSavingsOffsetInMs()
338 if (dst_[i].start_sec <= time_sec) { in ProbeDST()
339 if (before == NULL || before->start_sec < dst_[i].start_sec) { in ProbeDST()
340 before = &dst_[i]; in ProbeDST()
342 } else if (time_sec < dst_[i].end_sec) { in ProbeDST()
343 if (after == NULL || after->end_sec > dst_[i].end_sec) { in ProbeDST()
344 after = &dst_[i]; in ProbeDST()
[all …]
Ddate.h243 DST dst_[kDSTSize]; variable
/external/v8/src/
Ddate.cc59 ClearSegment(&dst_[i]); in ResetDateCache()
62 before_ = &dst_[0]; in ResetDateCache()
63 after_ = &dst_[1]; in ResetDateCache()
233 ClearSegment(&dst_[i]); in DaylightSavingsOffsetInMs()
338 if (dst_[i].start_sec <= time_sec) { in ProbeDST()
339 if (before == NULL || before->start_sec < dst_[i].start_sec) { in ProbeDST()
340 before = &dst_[i]; in ProbeDST()
342 } else if (time_sec < dst_[i].end_sec) { in ProbeDST()
343 if (after == NULL || after->end_sec > dst_[i].end_sec) { in ProbeDST()
344 after = &dst_[i]; in ProbeDST()
[all …]
Ddate.h243 DST dst_[kDSTSize]; variable
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dturnserver.cc602 dst_(socket->GetRemoteAddress()), in Connection()
608 return src_ == c.src_ && dst_ == c.dst_ && proto_ == c.proto_; in operator ==()
612 return src_ < c.src_ || dst_ < c.dst_ || proto_ < c.proto_; in operator <()
620 ost << src_.ToString() << "-" << dst_.ToString() << ":"<< kProtos[proto_]; in ToString()
Dturnserver.h116 talk_base::SocketAddress dst_; variable
Dport_unittest.cc217 : ice_mode_(ICEMODE_FULL), src_(p1), dst_(p2), complete_count_(0), in TestChannel()
233 conn_ = src_->CreateConnection(GetCandidate(dst_), Port::ORIGIN_MESSAGE); in CreateConnection()
249 Candidate c = GetCandidate(dst_); in AcceptConnection()
313 Port* dst_; member in TestChannel
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
Dbilin_scaler.c63 void bilinear_scale_line_w8(unsigned char* src, unsigned char* dst_, unsigned int dst_width, vector…
64 void bilinear_scale_line_w16(unsigned char* src, unsigned char* dst_, unsigned int dst_width, vecto…
1325 void bilinear_scale_line_w8( unsigned char* src, unsigned char* dst_, unsigned int dst_width, vecto… in bilinear_scale_line_w8() argument
1327 unsigned char* dst = dst_; in bilinear_scale_line_w8()
1608 void bilinear_scale_line_w16( unsigned char* src, unsigned char* dst_, unsigned int dst_width, vect… in bilinear_scale_line_w16() argument
1610 unsigned char* dst = dst_; in bilinear_scale_line_w16()
/external/libvpx/libwebm/
Dmkvparser.cpp4713 int Track::Info::CopyStr(char* Info::*str, Info& dst_) const in CopyStr()
4718 char*& dst = dst_.*str; in CopyStr()