HomeSort by relevance Sort by last modified time
    Searched refs:x_ (Results 1 - 25 of 32) sorted by null

1 2

  /external/gtest/test/
production.cc 36 PrivateCode::PrivateCode() : x_(0) {}
production.h 49 int x() const { return x_; }
51 void set_x(int x) { x_ = x; }
52 int x_; member in class:PrivateCode
gtest_prod_test.cc 45 EXPECT_EQ(0, a.x_);
48 EXPECT_EQ(1, a.x_);
57 EXPECT_EQ(0, a.x_);
60 EXPECT_EQ(2, a.x_);
  /external/protobuf/gtest/test/
production.cc 36 PrivateCode::PrivateCode() : x_(0) {}
production.h 49 int x() const { return x_; }
51 void set_x(int x) { x_ = x; }
52 int x_; member in class:PrivateCode
gtest_prod_test.cc 41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
  /external/chromium/base/gfx/
point.cc 15 Point::Point() : x_(0), y_(0) {
18 Point::Point(int x, int y) : x_(x), y_(y) {
24 x_ = points.x;
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y) {
32 x_ = point.x;
39 p.x = x_;
44 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) {
48 return CGPointMake(x_, y_);
point.h 41 int x() const { return x_; }
45 x_ = x;
49 void set_x(int x) { x_ = x; }
53 x_ += delta_x;
58 return x_ == rhs.x_ && y_ == rhs.y_;
72 int x_; member in class:gfx::Point
  /external/stlport/test/unit/
unary.h 20 double operator()(double x_) const
21 { return ::sqrt(x_); }
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /ndk/tests/device/test-gnustl-full/unit/
unary.h 20 double operator()(double x_) const
21 { return ::sqrt(x_); }
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /ndk/tests/device/test-stlport/unit/
unary.h 20 double operator()(double x_) const
21 { return ::sqrt(x_); }
func_test.cpp 27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_)
41 return x_ > y_;
ptr2_test.cpp 35 static int sum(int x_, int y_)
37 return x_ + y_;
  /external/v8/src/ia32/
assembler-ia32-inl.h 152 x_ = x;
158 x_ = reinterpret_cast<int32_t>(ext.address());
163 x_ = reinterpret_cast<int32_t>(s);
169 x_ = reinterpret_cast<int32_t>(internal_offset);
179 x_ = reinterpret_cast<intptr_t>(handle.location());
183 x_ = reinterpret_cast<intptr_t>(obj);
190 x_ = reinterpret_cast<intptr_t>(value);
223 Label* label = reinterpret_cast<Label*>(x.x_);
228 emit(x.x_);
245 uint16_t value = static_cast<uint16_t>(x.x_);
    [all...]
assembler-ia32.h 206 bool is_zero() const { return x_ == 0 && rmode_ == RelocInfo::NONE; }
208 return -128 <= x_ && x_ < 128 && rmode_ == RelocInfo::NONE;
211 return -32768 <= x_ && x_ < 32768 && rmode_ == RelocInfo::NONE;
217 int x_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/test/mjsunit/
debug-referenced-by.js 85 h = closure_eval(null, "var x_");
88 h("x_ = a");
92 h("x_ = null");
  /external/libvpx/vp8/encoder/
ssim.c 392 int y_, x_; local
403 for (x_ = 0; x_ < KERNEL_SIZE; ++x_)
405 const int Wxy = Wy * K[x_];
407 const int org_x = org[x_];
408 const int rec_x = rec[x_];
  /frameworks/base/core/jni/android/graphics/
Path.cpp 88 SkScalar x_ = SkFloatToScalar(x); local
90 obj->moveTo(x_, y_);
100 SkScalar x_ = SkFloatToScalar(x); local
102 obj->lineTo(x_, y_);
180 SkScalar x_ = SkFloatToScalar(x); local
183 obj->addCircle(x_, y_, radius_, dir);
  /system/media/opensles/tools/permute/
permute.c 69 const Segment *x_ = (Segment *) x; local
71 return x_->mFrameStart - y_->mFrameStart;
  /external/openssl/crypto/bn/
bn_exp.c 563 #define MOD_EXP_CTIME_ALIGN(x_) \
564 ((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((BN_ULONG)(x_)) & (MOD_EXP_CTIME_MIN_CACHE_LINE_MASK))))
  /external/openssl/crypto/ec/
ecp_smpl.c 638 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
669 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err;
673 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) goto err;
674 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err;
678 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx)) goto err;
679 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) goto err;
    [all...]

Completed in 355 milliseconds

1 2