/third_party/mesa3d/src/amd/vulkan/radix_sort/common/ |
H A D | macros.h | 65 #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 D | zipf_distribution.h | 69 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 D | zipf_distribution_test.cc | 112 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 D | hb-atomic.hh | 149 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 D | hb-null.hh | 181 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 D | stack-guard.cc | 257 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 D | PixelPipeline.cpp | 1648 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 D | PixelPipeline.hpp | 51 Float4 v_; // FIXME member in sw::PixelPipeline
|
/third_party/skia/third_party/externals/spirv-cross/tests-other/ |
H A D | small_vector.cpp | 34 RAIIInt(int v_) : v(v_) { allocations++; } in RAIIInt()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | bind.h | 203 explicit StreamedWrapper(const T& v) : v_(v) { } in StreamedWrapper() 210 const T& v_; member in absl::str_format_internal::StreamedWrapper
|
H A D | arg.h | 250 oss << v.v_; in FormatConvertImpl()
|
/third_party/ffmpeg/libpostproc/ |
H A D | postprocess_altivec_template.c | 629 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 D | bench.py | 93 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 D | test.py | 96 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 D | es31fComputeShaderBuiltinVarTests.cpp | 196 LogComps (const UVec3& v_, int numComps_) : v(v_), numComps(numComps_) {} in LogComps()
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-param-util.h | 805 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 D | gtest-param-util.h | 734 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 D | gtest-param-util.h | 804 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 D | cpp_message.cc | 3585 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 D | vktComputeShaderBuiltinVarTests.cpp | 100 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 D | vktComputeShaderBuiltinVarTests.cpp | 98 LogComps (const UVec3 &v_, int numComps_) : v(v_), numComps(numComps_) {} in LogComps()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderDerivateTests.cpp | 333 LogVecComps (const tcu::Vec4& v_, int numComps_) in LogVecComps() 334 : v (v_) in LogVecComps()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderDerivateTests.cpp | 377 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 D | vktShaderRenderDerivateTests.cpp | 315 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 D | int128.h | 461 __int128 v_; member in absl::int128
|