Searched defs:x_ (Results 26 - 50 of 66) sorted by relevance

123

/external/libchrome/crypto/
H A Dp224_spake.h112 // x_ is the secret Diffie-Hellman exponent (see paper referenced in .cc
114 uint8_t x_[p224::kScalarBytes]; member in class:crypto::P224EncryptedKeyExchange
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Drect_chromium.h19 : x_(other.x_),
24 x_(x), y_(y), width_(width), height_(height) {
31 x_ = other.x_;
38 int x() const { return x_; }
39 void set_x(int x) { x_ = x; }
59 int x_ = 0; member in class:mojo::test::RectChromium
/external/pdfium/third_party/agg23/
H A Dagg_vertex_sequence.h78 vertex_dist(FX_FLOAT x_, FX_FLOAT y_) : argument
79 x(x_),
93 vertex_dist_cmd(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) : argument
94 vertex_dist(x_, y_),
H A Dagg_rendering_buffer.h41 span_data(int x_, unsigned len_, int8u* ptr_) : argument
42 x(x_), len(len_), ptr(ptr_) {}
H A Dagg_basics.h267 point_type(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} argument
275 point_type_flag(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {} argument
281 vertex_type(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) : argument
282 x(x_), y(y_), cmd(cmd_) {}
/external/webrtc/webrtc/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc33 std::memset(x_, 0, sizeof(x_));
39 int16_t* x = x_;
84 int16_t x_[2]; member in class:webrtc::HighPassFilterImpl::BiquadFilter
/external/ImageMagick/Magick++/lib/
H A DPixels.cpp37 Magick::Quantum* Magick::Pixels::get(const ssize_t x_,const ssize_t y_, argument
40 _x=x_;
46 Quantum* pixels=GetCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_,
53 const Magick::Quantum* Magick::Pixels::getConst(const ssize_t x_, argument
56 _x=x_;
62 const Quantum* pixels=GetCacheViewVirtualPixels(_view,x_,y_,columns_,rows_,
76 Magick::Quantum* Magick::Pixels::set(const ssize_t x_,const ssize_t y_, argument
79 _x=x_;
85 Quantum* pixels=QueueCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_,
118 Magick::PixelData::PixelData(Magick::Image &image_,const ::ssize_t x_, argument
145 init(Magick::Image &image_,const ::ssize_t x_, const ::ssize_t y_,const size_t width_,const size_t height_, std::string map_,const StorageType type_) argument
[all...]
H A DGeometry.cpp513 Magick::Offset::Offset(ssize_t x_,ssize_t y_) argument
514 : _x(x_),
613 Magick::Point::Point(double x_,double y_) argument
614 : _x(x_),
H A DSTL.cpp402 Magick::floodFillAlphaImage::floodFillAlphaImage(const ssize_t x_, argument
407 _x(x_),
418 Magick::floodFillColorImage::floodFillColorImage(const ssize_t x_, argument
420 : _x(x_),
439 Magick::floodFillColorImage::floodFillColorImage(const ssize_t x_, argument
442 : _x(x_),
467 Magick::floodFillTextureImage::floodFillTextureImage(const ssize_t x_, argument
469 : _x(x_),
488 Magick::floodFillTextureImage::floodFillTextureImage(const ssize_t x_, argument
491 : _x(x_),
953 shadowImage( const double percent_opacity_, const double sigma_, const ssize_t x_, const ssize_t y_ ) argument
1208 chromaBluePrimaryImage(const double x_, const double y_,const double z_) argument
1221 chromaGreenPrimaryImage(const double x_, const double y_,const double z_) argument
1234 chromaRedPrimaryImage(const double x_, const double y_,const double z_) argument
1247 chromaWhitePointImage(const double x_, const double y_,const double z_) argument
1435 pixelColorImage( const ssize_t x_, const ssize_t y_, const Color &color_) argument
[all...]
/external/clang/test/Analysis/
H A Duninit-const.cpp120 int x_=5; local
121 doStuff_uninit(&x_); // no warning
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h22 DesktopVector() : x_(0), y_(0) {}
23 DesktopVector(int32_t x, int32_t y) : x_(x), y_(y) {}
25 int32_t x() const { return x_; }
27 bool is_zero() const { return x_ == 0 && y_ == 0; }
30 return x_ == other.x_ && y_ == other.y_;
34 x_ = x;
46 int32_t x_; member in class:webrtc::DesktopVector
/external/freetype/src/base/
H A Dftcalc.c766 FT_Int32 x_ = vector->x; local
773 FT_MOVE_SIGN( x_, sx );
776 x = (FT_UInt32)x_;
822 x_ = (FT_Int32)x;
828 u = (FT_UInt32)( x_ + ( x_ * b >> 16 ) );
/external/gemmlowp/internal/
H A Dpack_neon.h60 x_ = vld1q_u8(a);
65 uint8x16_t result = vsubq_u8(x_, vdupq_n_u8(1));
67 x_ = veorq_u8(x_, vshlq_n_u8(x_, 7));
68 x_ = veorq_u8(x_, vshrq_n_u8(x_, 5));
69 x_ = veorq_u8(x_, vshlq_n_u
75 uint8x16_t x_; member in class:gemmlowp::NEONRoundingOffsetGenerator
112 uint8x16_t x_; member in class:gemmlowp::NEONRoundingOffsetGenerator
[all...]
H A Dpack.h216 ScalarRoundingOffsetGenerator() { x_ = 128; }
219 std::uint8_t result = x_ - 1;
221 x_ ^= x_ << 7;
222 x_ ^= x_ >> 5;
223 x_ ^= x_ << 3;
229 std::uint8_t x_; member in class:gemmlowp::ScalarRoundingOffsetGenerator
244 ScalarRoundingOffsetGenerator() { x_
256 std::uint8_t x_; member in class:gemmlowp::ScalarRoundingOffsetGenerator
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock_stress_test.cc70 explicit Base(int a_x) : x_(a_x) {}
72 int x() const { return x_; }
74 int x_; member in class:testing::__anon6911::Base
/external/googletest/googlemock/test/
H A Dgmock_stress_test.cc70 explicit Base(int a_x) : x_(a_x) {}
72 int x() const { return x_; }
74 int x_; member in class:testing::__anon7001::Base
/external/pdfium/third_party/freetype/src/base/
H A Dftcalc.c766 FT_Int32 x_ = vector->x; local
773 FT_MOVE_SIGN( x_, sx );
776 x = (FT_UInt32)x_;
822 x_ = (FT_Int32)x;
828 u = (FT_UInt32)( x_ + ( x_ * b >> 16 ) );
/external/v8/testing/gmock/test/
H A Dgmock_stress_test.cc70 explicit Base(int a_x) : x_(a_x) {}
72 int x() const { return x_; }
74 int x_; member in class:testing::__anon21896::Base
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp117 struct DDD { int x_;}; member in struct:DDD
/external/deqp/framework/common/
H A DtcuVector.hpp107 Vector (T x_, T y_);
108 Vector (T x_, T y_, T z_);
109 Vector (T x_, T y_, T z_, T w_);
187 inline Vector<T, Size>::Vector (T x_, T y_) argument
190 m_data[0] = x_;
195 inline Vector<T, Size>::Vector (T x_, T y_, T z_) argument
198 m_data[0] = x_;
204 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_) argument
207 m_data[0] = x_;
/external/deqp/modules/egl/
H A DteglColorClearCase.cpp60 ClearOp (int x_, int y_, int width_, int height_, const tcu::RGBA& color_) argument
61 : x (x_)
/external/deqp/modules/glshared/
H A DglsLifetimeTests.hpp385 Rectangle (GLint x_, GLint y_, GLint width_, GLint height_) argument
386 : x (x_)
/external/flatbuffers/samples/
H A Dmonster_generated.h108 float x_; variable
120 : x_(flatbuffers::EndianScalar(_x)),
125 return flatbuffers::EndianScalar(x_);
128 flatbuffers::WriteScalar(&x_, _x);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h94 x_ = tid << kTidShift;
95 x_ |= epoch;
102 : x_(x) {
106 return x_;
110 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
115 u64 res = x_ >> kTidShift;
120 u64 res = x_ & ((1ull << kClkBits) - 1);
126 x_ += 1;
131 void SetIgnoreBit() { x_ |= kIgnoreBit; }
132 void ClearIgnoreBit() { x_
165 u64 x_; member in class:__tsan::FastState
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fVertexTextureTests.cpp119 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} argument

Completed in 578 milliseconds

123