Home
last modified time | relevance | path

Searched refs:v_ (Results 1 - 25 of 31) sorted by relevance

12

/third_party/mesa3d/src/amd/vulkan/radix_sort/common/
H A Dmacros.h65 #define ROUND_DOWN_MACRO(v_,q_) (((v_) / (q_)) * (q_))
66 #define ROUND_UP_MACRO(v_,q_) ((((v_) + (q_) - 1) / (q_)) * (q_))
72 #define ROUND_DOWN_POW2_MACRO(v_,q_) ((v_) & ~((q_) - 1))
73 #define ROUND_UP_POW2_MACRO(v_,q_) ROUND_DOWN_POW2_MACRO((v_) + (q_) - 1, q_)
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dzipf_distribution.h69 double v() const { return v_; } in v()
72 return a.k_ == b.k_ && a.q_ == b.q_ && a.v_ == b.v_; in operator ==()
89 double v_; member in absl::zipf_distribution::param_type
151 : k_(k), q_(q), v_(v), one_minus_q_(1 - q) { in param_type()
174 const double elogv_q = (v_ == 1.0) ? 1 : pow_negative_q(v_); in param_type()
185 // std::exp(one_minus_q_ * std::log(v_ + x)) * one_minus_q_inv_; in h()
186 x += v_; in h()
194 // std::exp(one_minus_q_inv_ * std::log(one_minus_q_ * x)) - v_; in hinv()
[all...]
H A Dzipf_distribution_test.cc112 ZipfModel(size_t k, double q, double v) : k_(k), q_(q), v_(v) {} in ZipfModel()
177 const double x = v_ + i; in Init()
203 const double v_; member in __anon19317::ZipfModel
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-atomic.hh149 void set_relaxed (int v_) { hb_atomic_int_impl_set_relaxed (&v, v_); } in set_relaxed()
150 void set (int v_) { hb_atomic_int_impl_set (&v, v_); } in set()
167 void init (T* v_ = nullptr) { set_relaxed (v_); } in init()
168 void set_relaxed (T* v_) { hb_atomic_ptr_impl_set_relaxed (&v, v_); } in set_relaxed()
H A Dhb-null.hh181 hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {} in hb_nonnull_ptr_t()
182 T * operator = (T *v_) { return v = v_; } in operator =()
/third_party/node/deps/v8/src/execution/
H A Dstack-guard.cc257 explicit ShouldBeZeroOnReturnScope(int* v) : v_(v) {}
258 ~ShouldBeZeroOnReturnScope() { DCHECK_EQ(*v_, 0); }
261 int* v_;
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DPixelPipeline.cpp1648 v_ = Float4(0.0f);
1651 dst = sampleTexture(stage, u_, v_, w_, w_);
1707 Float4 v_ = v + dv;
1709 dst = sampleTexture(stage, u_, v_, s, s);
1728 Float4 v_ = v + dv;
1730 dst = sampleTexture(stage, u_, v_, s, s);
1778 u_ *= Rcp_pp(v_); // FIXME: Set result to 1.0 when division by zero
1794 dst = sampleTexture(stage, u_, v_, w_, w_);
1802 dst.y = RoundShort4(v_ * Float4(0x1000));
1825 case 1: v_
[all...]
H A DPixelPipeline.hpp51 Float4 v_; // FIXME member in sw::PixelPipeline
/third_party/skia/third_party/externals/spirv-cross/tests-other/
H A Dsmall_vector.cpp34 RAIIInt(int v_) : v(v_) { allocations++; } in RAIIInt()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Dbind.h203 explicit StreamedWrapper(const T& v) : v_(v) { } in StreamedWrapper()
210 const T& v_; member in absl::str_format_internal::StreamedWrapper
H A Darg.h250 oss << v.v_; in FormatConvertImpl()
/third_party/ffmpeg/libpostproc/
H A Dpostprocess_altivec_template.c629 v_##op = vec_##op(s_11h, s_11l); \ in dering_altivec()
845 const vector unsigned char v_##src##A1##i = vec_ld(j##src##i, src); \ in tempNoiseReducer_altivec()
846 const vector unsigned char v_##src##A2##i = vec_ld(j##src##i + 16, src); \ in tempNoiseReducer_altivec()
847 const vector unsigned char v_##src##A##i = \ in tempNoiseReducer_altivec()
848 vec_perm(v_##src##A1##i, v_##src##A2##i, perm##src##i); \ in tempNoiseReducer_altivec()
849 vector signed short v_##src##Ass##i = \ in tempNoiseReducer_altivec()
851 (vector signed char)v_##src##A##i) in tempNoiseReducer_altivec()
987 const vector unsigned char vg = vec_perm(vf, v_##src##A##i, permHH); \ in tempNoiseReducer_altivec()
991 const vector unsigned char svA = vec_sel(v_##sr in tempNoiseReducer_altivec()
[all...]
/third_party/littlefs/scripts/
H A Dbench.py93 for v_ in v:
94 yield from parse_define(v_)
100 for v_ in csplit(v):
105 v_)
117 v_[:m.start()], x, v_[m.end():]))
119 yield v_
H A Dtest.py96 for v_ in v:
97 yield from parse_define(v_)
103 for v_ in csplit(v):
108 v_)
120 v_[:m.start()], x, v_[m.end():]))
122 yield v_
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fComputeShaderBuiltinVarTests.cpp196 LogComps (const UVec3& v_, int numComps_) : v(v_), numComps(numComps_) {} in LogComps()
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h805 explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {} in ValueArray()
815 return std::vector<T>{static_cast<T>(v_.template Get<I>())...}; in MakeVector()
818 FlatTuple<Ts...> v_; member in testing::internal::ValueArray
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h734 ValueArray(Ts... v) : v_{std::move(v)...} {} in ValueArray()
744 return std::vector<T>{static_cast<T>(v_.template Get<I>())...}; in MakeVector()
747 FlatTuple<Ts...> v_; member in testing::internal::ValueArray
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-param-util.h804 explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {} in ValueArray()
814 return std::vector<T>{static_cast<T>(v_.template Get<I>())...}; in MakeVector()
817 FlatTuple<Ts...> v_; member in testing::internal::ValueArray
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc3585 v_.push_back(field); in GenerateSerializeWithCachedSizesBody()
3590 if (!v_.empty()) { in GenerateSerializeWithCachedSizesBody()
3591 mg_->GenerateSerializeOneofFields(format_.printer(), v_); in GenerateSerializeWithCachedSizesBody()
3592 v_.clear(); in GenerateSerializeWithCachedSizesBody()
3597 // If we have multiple fields in v_ then they all must be from the same in GenerateSerializeWithCachedSizesBody()
3598 // oneof. Would adding field to v_ break that invariant? in GenerateSerializeWithCachedSizesBody()
3600 return !v_.empty() && in GenerateSerializeWithCachedSizesBody()
3601 v_[0]->containing_oneof() != field->containing_oneof(); in GenerateSerializeWithCachedSizesBody()
3607 std::vector<const FieldDescriptor*> v_; in GenerateSerializeWithCachedSizesBody() member in google::protobuf::compiler::cpp::LazySerializerEmitter
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeShaderBuiltinVarTests.cpp100 LogComps (const UVec3 &v_, int numComps_) : v(v_), numComps(numComps_) {} in LogComps()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeShaderBuiltinVarTests.cpp98 LogComps (const UVec3 &v_, int numComps_) : v(v_), numComps(numComps_) {} in LogComps()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderDerivateTests.cpp333 LogVecComps (const tcu::Vec4& v_, int numComps_) in LogVecComps()
334 : v (v_) in LogVecComps()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderDerivateTests.cpp377 LogVecComps (const tcu::Vec4& v_, int numComps_) in LogVecComps()
378 : v (v_) in LogVecComps()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderDerivateTests.cpp315 LogVecComps (const tcu::Vec4& v_, int numComps_) in LogVecComps()
316 : v (v_) in LogVecComps()
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
H A Dint128.h461 __int128 v_; member in absl::int128

Completed in 36 milliseconds

12