Searched refs:x_ (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium/testing/gtest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int an_x) { x_ = an_x; }
52 int x_; member in class:PrivateCode
H A Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
/external/gtest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dgtest_prod_test.cc45 EXPECT_EQ(0, a.x_);
48 EXPECT_EQ(1, a.x_);
57 EXPECT_EQ(0, a.x_);
60 EXPECT_EQ(2, a.x_);
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int x) { x_ = x; }
52 int x_; member in class:PrivateCode
/external/protobuf/gtest/test/
H A Dproduction.cc36 PrivateCode::PrivateCode() : x_(0) {}
H A Dgtest_prod_test.cc41 EXPECT_EQ(0, a.x_);
44 EXPECT_EQ(1, a.x_);
53 EXPECT_EQ(0, a.x_);
56 EXPECT_EQ(2, a.x_);
H A Dproduction.h49 int x() const { return x_; }
51 void set_x(int x) { x_ = x; }
52 int x_; member in class:PrivateCode
/external/v8/test/mjsunit/
H A Dglobal-accessors.js30 var x_ = 0; variable
32 __defineSetter__('x', function(x) { x_ = x; });
33 __defineGetter__('x', function() { return x_; });
H A Ddebug-references.js109 function Point(x, y) { this.x_ = x; this.y_ = y;}
H A Dmirror-object.js157 this.x_ = x;
/external/stlport/test/unit/
H A Dunary.h20 double operator()(double x_) const
21 { return ::sqrt(x_); }
H A Dfunc_test.cpp27 static bool bigger_than(int x_, int y_);
39 bool FuncTest::bigger_than(int x_, int y_) argument
41 return x_ > y_;
H A Dptr2_test.cpp35 static int sum(int x_, int y_) argument
37 return x_ + y_;
/external/clang/test/CodeGenCXX/
H A Dincomplete-types.cpp6 int x_; member in struct:Bar
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_gtk.cc84 x_(absolute_x),
92 ui_controls::SendMouseMoveNotifyWhenDone(x_, y_, next_task_);
100 int x_; member in class:MouseMoveTask
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h250 x_ = x;
256 x_ = reinterpret_cast<int32_t>(ext.address());
262 x_ = reinterpret_cast<int32_t>(internal_offset);
272 x_ = reinterpret_cast<intptr_t>(handle.location());
276 x_ = reinterpret_cast<intptr_t>(obj);
283 x_ = reinterpret_cast<intptr_t>(value);
289 x_ = reinterpret_cast<int32_t>(addr);
322 Label* label = reinterpret_cast<Label*>(x.x_);
327 emit(x.x_);
344 uint16_t value = static_cast<uint16_t>(x.x_);
[all...]
H A Dassembler-ia32.h284 bool is_zero() const { return x_ == 0 && rmode_ == RelocInfo::NONE; }
286 return -128 <= x_ && x_ < 128 && rmode_ == RelocInfo::NONE;
289 return -32768 <= x_ && x_ < 32768 && rmode_ == RelocInfo::NONE;
295 int x_; member in class:v8::internal::BASE_EMBEDDED
/external/webp/src/enc/
H A Diterator.c43 it->x_ = 0;
77 const int x = it->x_, y = it->y_;
131 const int x = it->x_, y = it->y_;
235 const int x = it->x_, y = it->y_;
261 it->x_++;
262 if (it->x_ == enc->mb_w_) {
263 it->x_ = 0;
361 it->i4_boundary_[17 + i] = enc->y_top_[it->x_ * 16 + i];
364 if (it->x_ < enc->mb_w_ - 1) {
366 it->i4_boundary_[17 + i] = enc->y_top_[it->x_ * 1
[all...]
H A Dquant.c303 const uint8_t* left = it->x_ ? enc->y_left_ : NULL;
304 const uint8_t* top = it->y_ ? enc->y_top_ + it->x_ * 16 : NULL;
310 const uint8_t* left = it->x_ ? enc->u_left_ : NULL;
311 const uint8_t* top = it->y_ ? enc->uv_top_ + it->x_ * 16 : NULL;
/external/mksh/src/
H A Demacsfn.h3 #define FN(cname,sname,flags) static int x_##cname(int);
8 #define FN(cname,sname,flags) { x_##cname, sname, flags },
/external/libvpx/vp8/encoder/
H A Dssim.c107 int y_, x_; local
118 for (x_ = 0; x_ < KERNEL_SIZE; ++x_)
120 const int Wxy = Wy * K[x_];
122 const int org_x = org[x_];
123 const int rec_x = rec[x_];
/external/openssl/crypto/bn/
H A Dbn_exp.c563 #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/
H A Decp_smpl.c638 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;
637 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument

Completed in 883 milliseconds

12