Home
last modified time | relevance | path

Searched refs:v_ (Results 1 – 25 of 146) sorted by relevance

123456

/external/webrtc/webrtc/system_wrappers/include/
Dscoped_vector.h49 std::swap(v_, other.v_); // The arguments are std::vectors, so std::swap
66 reference operator[](size_t index) { return v_[index]; }
67 const_reference operator[](size_t index) const { return v_[index]; }
69 bool empty() const { return v_.empty(); } in empty()
70 size_t size() const { return v_.size(); } in size()
72 reverse_iterator rbegin() { return v_.rbegin(); } in rbegin()
73 const_reverse_iterator rbegin() const { return v_.rbegin(); } in rbegin()
74 reverse_iterator rend() { return v_.rend(); } in rend()
75 const_reverse_iterator rend() const { return v_.rend(); } in rend()
77 iterator begin() { return v_.begin(); } in begin()
[all …]
/external/libchrome/base/memory/
Dscoped_vector.h47 reference operator[](size_t index) { return v_[index]; }
48 const_reference operator[](size_t index) const { return v_[index]; }
50 bool empty() const { return v_.empty(); } in empty()
51 size_t size() const { return v_.size(); } in size()
53 reverse_iterator rbegin() { return v_.rbegin(); } in rbegin()
54 const_reverse_iterator rbegin() const { return v_.rbegin(); } in rbegin()
55 reverse_iterator rend() { return v_.rend(); } in rend()
56 const_reverse_iterator rend() const { return v_.rend(); } in rend()
58 iterator begin() { return v_.begin(); } in begin()
59 const_iterator begin() const { return v_.begin(); } in begin()
[all …]
/external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
Dheap.h48 *key = v_[0].key; in ExtractMin()
49 *data = v_[0].data; in ExtractMin()
51 v_[0] = v_[num_elements_]; in ExtractMin()
62 if (v_.size() == static_cast<size_t>(num_elements_)) { in InsertUnsorted()
63 v_.push_back(Item(key, data)); in InsertUnsorted()
65 v_[num_elements_].key = key; in InsertUnsorted()
66 v_[num_elements_].data = data; in InsertUnsorted()
72 if (v_.size() == static_cast<size_t>(num_elements_)) { in Insert()
73 v_.push_back(Item(key, data)); in Insert()
75 v_[num_elements_].key = key; in Insert()
[all …]
/external/libcxx/test/support/
Dnasty_containers.hpp38 nasty_vector() : v_() {} in nasty_vector()
39 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector()
40 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector()
41 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector()
43 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector()
48 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } in assign()
49 void assign(size_type n, const value_type& u) { v_.assign(n, u); } in assign()
51 void assign(std::initializer_list<value_type> il) { v_.assign(il); } in assign()
54 iterator begin() TEST_NOEXCEPT { return v_.begin(); } in begin()
55 const_iterator begin() const TEST_NOEXCEPT { return v_.begin(); } in begin()
[all …]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
Dmove.fail.cpp24 constexpr S() : v_(0) {} in S()
25 S(int v) : v_(v) {} in S()
26 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S()
27 constexpr S(const S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S()
28 int v_; member
Dcopy.fail.cpp24 constexpr S() : v_(0) {} in S()
25 S(int v) : v_(v) {} in S()
26 S(const S &rhs) : v_(rhs.v_) {} // make it not trivially copyable in S()
27 int v_; member
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
Derase_iter.pass.cpp23 Throws() : v_(0) {} in Throws()
24 Throws(int v) : v_(v) {} in Throws()
25 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws()
26 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws()
27 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; } in operator =()
28 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this; } in operator =()
29 int v_; member
Derase_iter_iter.pass.cpp23 Throws() : v_(0) {} in Throws()
24 Throws(int v) : v_(v) {} in Throws()
25 Throws(const Throws &rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws()
26 Throws( Throws &&rhs) : v_(rhs.v_) { if (sThrows) throw 1; } in Throws()
27 Throws& operator=(const Throws &rhs) { v_ = rhs.v_; return *this; } in operator =()
28 Throws& operator=( Throws &&rhs) { v_ = rhs.v_; return *this; } in operator =()
29 int v_; member
/external/swiftshader/third_party/LLVM/include/llvm/Object/
DError.h31 _ v_; member
33 object_error(_ v) : v_(v) {} in object_error()
34 explicit object_error(int v) : v_(_(v)) {} in object_error()
35 operator int() const {return v_;}
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DFileSystem.h59 file_type(_ v) : v_(v) {} in file_type()
60 explicit file_type(int v) : v_(_(v)) {} in file_type()
61 operator int() const {return v_;}
64 int v_;
75 copy_option(_ v) : v_(v) {} in copy_option()
76 explicit copy_option(int v) : v_(_(v)) {} in copy_option()
77 operator int() const {return v_;}
80 int v_;
Dsystem_error.h619 _ v_; member
621 errc(_ v) : v_(v) {} in errc()
622 operator int() const {return v_;}
892 _ v_;
894 windows_error(_ v) : v_(v) {}
895 explicit windows_error(int v) : v_(_(v)) {}
896 operator int() const {return v_;}
/external/compiler-rt/test/asan/TestCases/Windows/
Ddemangled_names.cc30 A(T v) { v_ = v; } in A()
32 char *v_; member
38 baz<char*, true>(v_); in ~A()
/external/clang/test/SemaCXX/
Daccess.cpp53 int v_; member
55 … U() : v_(A::x) { } // expected-error {{'x' is a private member of 'PR15209::alias_templates::A'}} in U()
60 int v_; member
61 … U() : v_(A::y) { } // expected-error {{'y' is a private member of 'PR15209::alias_templates::A'}} in U()
Dtypo-correction.cpp9 int v_; member
10 operator int() const {return v_;} in operator int()
/external/clang/test/Analysis/
Dcxx11-crashes.cpp43 T & v_; member
44 inline addr_impl_ref( T & v ): v_( v ) { in addr_impl_ref()
46 inline operator T& () const {return v_;} in operator T&()
/external/pdfium/third_party/agg23/
Dagg_color_gray.h46 gray8(unsigned v_, unsigned a_ = base_mask) :
47 v(int8u(v_)), a(int8u(a_)) {} in v()
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
Dp3-0x.cpp95 T v_; member in PR15290::A
96 friend int add_to_v(A &t) noexcept(noexcept(v_ + 42)) in add_to_v()
98 return t.v_ + 42; in add_to_v()
/external/ImageMagick/Magick++/lib/
DColor.cpp856 Magick::ColorYUV::ColorYUV(const double y_,const double u_,const double v_) in ColorYUV() argument
859 convert(y_, u_, v_); in ColorYUV()
883 void Magick::ColorYUV::v(const double v_) in v() argument
885 convert(y(), u(), v_); in v()
905 void Magick::ColorYUV::convert(const double y_,const double u_,const double v_) in convert() argument
907 quantumRed(scaleDoubleToQuantum(y_ + 1.13980 * v_)); in convert()
908 quantumGreen(scaleDoubleToQuantum(y_ - (0.39380 * u_) - (0.58050 * v_))); in convert()
/external/ImageMagick/Magick++/lib/Magick++/
DColor.h408 ColorYUV(const double y_,const double u_,const double v_);
421 void v(const double v_);
435 void convert(const double y_,const double u_,const double v_);
/external/harfbuzz_ng/src/
Dhb-atomic-private.hh178 inline void set_unsafe (int v_) { v = v_; } in set_unsafe()
/external/swiftshader/src/Shader/
DPixelPipeline.cpp1648 v_ = Float4(0.0f); in TEXDP3TEX()
1651 dst = sampleTexture(stage, u_, v_, w_, w_); in TEXDP3TEX()
1707 Float4 v_ = v + dv; in TEXBEM() local
1709 dst = sampleTexture(stage, u_, v_, s, s); in TEXBEM()
1728 Float4 v_ = v + dv; in TEXBEML() local
1730 dst = sampleTexture(stage, u_, v_, s, s); in TEXBEML()
1778 u_ *= Rcp_pp(v_); // FIXME: Set result to 1.0 when division by zero in TEXM3X2DEPTH()
1794 dst = sampleTexture(stage, u_, v_, w_, w_); in TEXM3X2TEX()
1802 dst.y = RoundShort4(v_ * Float4(0x1000)); in TEXM3X3()
1825 case 1: v_ = x; break; in TEXM3X3PAD()
[all …]
/external/syslinux/com32/lua/src/
Dlobject.h306 #define v_(o) ((o)->u.i.v__) macro
317 #define v_(o) ((o)->u.i.v__) macro
328 #define val_(o) v_(o)
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_ResourceApplyAdam.pbtxt81 v_t <- beta2 * v_{t-1} + (1 - beta2) * g_t * g_t
Dapi_def_ApplyAdam.pbtxt87 v_t <- beta2 * v_{t-1} + (1 - beta2) * g_t * g_t
/external/ImageMagick/PerlMagick/t/
Dinput_70x46.gray1 …~�~���Z\\[\^_^^\YLGNX]orc_dgedfaO\^ejkmmeXW\jonmmmlhXSPJLjfjx�Z,657=s������v_```_cb`aaaYHACFMswb^d…

123456