HomeSort by relevance Sort by last modified time
    Searched refs:x_ (Results 51 - 75 of 154) sorted by null

1 23 4 5 6 7

  /frameworks/base/media/mca/filterfw/native/core/
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
33 float x() const { return x_; }
48 float x_, y_; member in class:android::filterfw::Point
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
33 float x() const { return x_; }
48 float x_, y_; member in class:android::filterfw::Point
  /external/libchrome/crypto/
p224_spake.cc 104 memset(&x_, 0, sizeof(x_));
107 // x_ is a random scalar.
108 RandBytes(x_, sizeof(x_));
118 // X = g**x_
120 p224::ScalarBaseMult(x_, &X);
189 // K = Y**x_
190 p224::ScalarMult(Y, x_, &k);
263 memset(&x_, 0, sizeof(x_))
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 31 Quantum *get(const ::ssize_t x_,const ::ssize_t y_,
36 const Quantum *getConst(const ::ssize_t x_,const ::ssize_t y_,
48 Quantum *set(const ::ssize_t x_,const ::ssize_t y_,const size_t columns_,
89 PixelData(Magick::Image &image_,const ::ssize_t x_,const ::ssize_t y_,
111 void init(Magick::Image &image_,const ::ssize_t x_,const ::ssize_t y_,
Drawable.h 54 Coordinate(double x_,double y_)
55 : _x(x_),
60 void x(double x_) { _x=x_; }
320 DrawableAlpha(double x_, double y_,PaintMethod paintMethod_)
321 : _x(x_),
335 void x(double x_)
337 _x=x_;
686 DrawableColor ( double x_, double y_,
688 : _x(x_),
    [all...]
Image.h 695 void chromaBluePrimary(const double x_,const double y_,const double z_);
696 void chromaBluePrimary(double *x_,double *y_,double *z_) const;
699 void chromaGreenPrimary(const double x_,const double y_,const double z_);
700 void chromaGreenPrimary(double *x_,double *y_,double *z_) const;
703 void chromaRedPrimary(const double x_,const double y_,const double z_);
704 void chromaRedPrimary(double *x_,double *y_,double *z_) const;
707 void chromaWhitePoint(const double x_,const double y_,const double z_);
708 void chromaWhitePoint(double *x_,double *y_,double *z_) const;
    [all...]
  /art/compiler/optimizing/
induction_var_range_test.cc 70 x_ = new (&allocator_) HParameterValue(graph_->GetDexFile(),
74 entry_block_->AddInstruction(x_);
81 SetHint(x_);
319 HInstruction* x_; member in class:art::InductionVarRangeTest
350 EXPECT_FALSE(IsExact(CreateFetch(x_), &value));
351 EXPECT_FALSE(IsAtMost(CreateFetch(x_), &value));
352 EXPECT_FALSE(IsAtLeast(CreateFetch(x_), &value));
385 ExpectEqual(Value(x_, 1, -20),
386 GetMin(CreateInvariant('+', CreateFetch(x_), CreateRange(-20, -10)), nullptr));
387 ExpectEqual(Value(x_, 1, -10)
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
traceimpl_error.h 24 // Empty; should get complaints from the plugin for untraced x_.
28 Member<X> x_; member in class:blink::TraceImplInlinedWithUntracedMember
40 Member<X> x_; member in class:blink::TraceImplExternWithUntracedMember
register_weak_members_template.h 38 WeakMember<X> x_; member in class:blink::HasUntracedWeakMembers
  /external/v8/tools/clang/blink_gc_plugin/tests/
traceimpl_error.h 24 // Empty; should get complaints from the plugin for untraced x_.
28 Member<X> x_; member in class:blink::TraceImplInlinedWithUntracedMember
40 Member<X> x_; member in class:blink::TraceImplExternWithUntracedMember
register_weak_members_template.h 38 WeakMember<X> x_; member in class:blink::HasUntracedWeakMembers
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 22 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/clang/test/CodeGenCXX/
incomplete-types.cpp 7 int x_; member in struct:Bar
ms-property.cpp 11 int x_; member in class:Test1
15 Test1(int x) : x_(x) {}
17 int get_x() const { return x_; }
  /external/clang/test/Index/
index-file.cpp 28 mutable int x_; member in class:B
49 // CHECK: [indexDeclaration]: kind: field | name: x_ | USR: c:@S@B@FI@x_ | lang: C++ | cursor: FieldDecl=x_:28:15 (Definition) (mutable) | loc: 28:15 | semantic-container: [B:27:7] | lexical-container: [B:27:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0
  /external/pdfium/third_party/agg23/
agg_vertex_sequence.h 78 vertex_dist(FX_FLOAT x_, FX_FLOAT y_) :
79 x(x_),
93 vertex_dist_cmd(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) :
94 vertex_dist(x_, y_),
  /external/webrtc/talk/media/devices/
carbonvideorenderer.h 66 int x_; member in class:cricket::CarbonVideoRenderer
  /external/clang/test/SemaCXX/
ms-property.cpp 11 int x_; member in class:Test1
14 Test1(int x) : x_(x) {}
16 int get_x() const { return x_; }
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 94 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_ &= ~kIgnoreBit;
165 u64 x_; member in class:__tsan::FastState
    [all...]
  /external/drm_hwcomposer/
drmcrtc.h 56 uint32_t x_; member in class:android::DrmCrtc
  /external/webrtc/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 33 std::memset(x_, 0, sizeof(x_));
39 int16_t* x = x_;
84 int16_t x_[2]; member in class:webrtc::HighPassFilterImpl::BiquadFilter
  /external/clang/test/Analysis/
uninit-const.cpp 120 int x_=5; local
121 doStuff_uninit(&x_); // no warning
  /prebuilts/ndk/r11/sources/android/ndk_helper/
vecmath.cpp 30 x_ = vec.x_;
41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3];
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7];
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11];
44 out.w_ = x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15];
108 ret.x_ = rhs.x_ * f_[0] + rhs.y_ * f_[4] + rhs.z_ * f_[8] + rhs.w_ * f_[12];
109 ret.y_ = rhs.x_ * f_[1] + rhs.y_ * f_[5] + rhs.z_ * f_[9] + rhs.w_ * f_[13]
    [all...]
  /prebuilts/ndk/r13/sources/android/ndk_helper/
vecmath.cpp 30 x_ = vec.x_;
41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3];
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7];
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11];
44 out.w_ = x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15];
108 ret.x_ = rhs.x_ * f_[0] + rhs.y_ * f_[4] + rhs.z_ * f_[8] + rhs.w_ * f_[12];
109 ret.y_ = rhs.x_ * f_[1] + rhs.y_ * f_[5] + rhs.z_ * f_[9] + rhs.w_ * f_[13]
    [all...]
  /external/compiler-rt/lib/builtins/
int_math.h 54 __typeof((x)) x_ = (x); \
55 !crt_isinf(x_) && !crt_isnan(x_); \

Completed in 3895 milliseconds

1 23 4 5 6 7