Home
last modified time | relevance | path

Searched refs:vec (Results 301 - 325 of 1300) sorted by relevance

1...<<11121314151617181920>>...52

/third_party/skia/src/core/
H A DSkColor.cpp112 swizzle_rb(Sk4f_fromL32(bgra)).store(rgba.vec()); in FromColor()
118 return Sk4f_toL32(swizzle_rb(Sk4f::Load(this->vec()))); in toSkColor()
123 return Sk4f_toL32(Sk4f::Load(this->vec())); in toBytes_RGBA()
142 return Sk4f_toL32(Sk4f::Load(this->vec())); in toBytes_RGBA()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dblock_merge_util.cpp173 auto& vec = terminator->dbg_line_insts(); in MergeWithSuccessor() local
174 if (vec.size() > 0) { in MergeWithSuccessor()
177 new_vec.insert(new_vec.end(), vec.begin(), vec.end()); in MergeWithSuccessor()
H A Dloop_fission.cpp321 DistanceVector vec{loop_depth}; in CanPerformSplit()
329 if (!analysis.GetDependence(store, inst, &vec)) { in CanPerformSplit()
330 for (DistanceEntry& entry : vec.GetEntries()) { in CanPerformSplit()
339 DistanceVector vec{loop_depth}; in CanPerformSplit()
347 if (!analysis.GetDependence(inst, load, &vec)) { in CanPerformSplit()
348 for (DistanceEntry& entry : vec.GetEntries()) { in CanPerformSplit()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dblock_merge_util.cpp173 auto& vec = terminator->dbg_line_insts(); in MergeWithSuccessor() local
174 if (vec.size() > 0) { in MergeWithSuccessor()
177 new_vec.insert(new_vec.end(), vec.begin(), vec.end()); in MergeWithSuccessor()
H A Dloop_fission.cpp321 DistanceVector vec{loop_depth}; in CanPerformSplit()
329 if (!analysis.GetDependence(store, inst, &vec)) { in CanPerformSplit()
330 for (DistanceEntry& entry : vec.GetEntries()) { in CanPerformSplit()
339 DistanceVector vec{loop_depth}; in CanPerformSplit()
347 if (!analysis.GetDependence(inst, load, &vec)) { in CanPerformSplit()
348 for (DistanceEntry& entry : vec.GetEntries()) { in CanPerformSplit()
/third_party/rust/crates/clap/clap_complete/src/shells/
H A Dzsh.rs96 let mut ret = vec![]; in subcommand_details()
152 let mut segments = vec![]; in subcommands_of()
228 let mut all_subcommands = vec![]; in get_subcommands_of()
235 let mut segments = vec![format!("({name})")]; in get_subcommands_of()
322 let mut segments = vec![String::from("_arguments \"${_arguments_options[@]}\" \\")]; in get_args_of()
444 let mut ret = vec![]; in write_opts_of()
516 let mut res = vec![]; in arg_conflicts()
544 let mut ret = vec![]; in write_flags_of()
619 let mut ret = vec![]; in write_positionals_of()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dbtree_test.h152 std::vector<V> vec; in GenerateValuesWithSeed() local
154 vec.reserve(n); in GenerateValuesWithSeed()
156 vec.push_back(gen(nums[i])); in GenerateValuesWithSeed()
159 return vec; in GenerateValuesWithSeed()
/third_party/skia/include/core/
H A DSkPoint3.h141 SkScalar dot(const SkPoint3& vec) const { in dot()
142 return DotProduct(*this, vec); in dot()
156 SkPoint3 cross(const SkPoint3& vec) const { in cross()
157 return CrossProduct(*this, vec); in cross()
/third_party/ffmpeg/libavcodec/
H A Daacenc_quantization.h87 const float *vec; in quantize_and_encode_band_cost_template() local
97 vec = &ff_aac_codebook_vectors[cb-1][curidx*dim]; in quantize_and_encode_band_cost_template()
102 if (BT_ESC && vec[j] == 64.0f) { //FIXME: slow in quantize_and_encode_band_cost_template()
112 quantized = vec[j]*IQ; in quantize_and_encode_band_cost_template()
117 if (vec[j] != 0.0f) in quantize_and_encode_band_cost_template()
124 quantized = vec[j]*IQ; in quantize_and_encode_band_cost_template()
/third_party/libuv/test/
H A Drunner-unix.c195 process_info_t* vec; member
210 p = &args->vec[i]; in dowait()
233 /* Wait for all `n` processes in `vec` to terminate. Time out after `timeout`
236 int process_wait(process_info_t* vec, int n, int timeout) { in process_wait() argument
249 args.vec = vec; in process_wait()
263 * we'd need to lock vec. in process_wait()
336 p = &vec[i]; in process_wait()
/third_party/libwebsockets/win32port/zlib/
H A Dcrc32.c69 unsigned long vec));
342 local unsigned long gf2_matrix_times(mat, vec) in gf2_matrix_times()
344 unsigned long vec;
349 while (vec) {
350 if (vec & 1)
352 vec >>= 1;
/third_party/node/deps/v8/third_party/zlib/
H A Dcrc32.c55 unsigned long vec));
398 local unsigned long gf2_matrix_times(mat, vec) in gf2_matrix_times()
400 unsigned long vec;
405 while (vec) {
406 if (vec & 1)
408 vec >>= 1;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.hpp267 inline std::size_t sizeInBytes (const std::vector<T>& vec) in sizeInBytes() argument
269 return vec.size() * sizeof(vec[0]); in sizeInBytes()
273 inline const T* getDataOrNullptr (const std::vector<T>& vec, const std::size_t index = 0u) in getDataOrNullptr() argument
275 return (index < vec.size() ? &vec[index] : DE_NULL); in getDataOrNullptr()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DCommon.h136 TSpan(const TVector<S> &vec) : mData(vec.data()), mSize(vec.size()) in TSpan() argument
139 TSpan &operator=(const TVector<S> &vec) in operator =() argument
141 mData = vec.data(); in operator =()
142 mSize = vec.size(); in operator =()
/third_party/skia/third_party/externals/zlib/
H A Dcrc32.c55 unsigned long vec));
398 local unsigned long gf2_matrix_times(mat, vec) in gf2_matrix_times()
400 unsigned long vec;
405 while (vec) {
406 if (vec & 1)
408 vec >>= 1;
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.hpp267 inline std::size_t sizeInBytes (const std::vector<T>& vec) in sizeInBytes() argument
269 return vec.size() * sizeof(vec[0]); in sizeInBytes()
273 inline const T* getDataOrNullptr (const std::vector<T>& vec, const std::size_t index = 0u) in getDataOrNullptr() argument
275 return (index < vec.size() ? &vec[index] : DE_NULL); in getDataOrNullptr()
/third_party/skia/third_party/externals/tint/src/utils/
H A Dreverse_test.cc26 std::vector<int> vec{1, 3, 5, 7, 9}; in TEST()
28 for (auto v : Reverse(vec)) { in TEST()
/third_party/rust/crates/cxx/tests/ffi/
H A Dtests.cc124 auto vec = std::unique_ptr<std::vector<uint8_t>>(new std::vector<uint8_t>()); in c_return_unique_ptr_vector_u8() local
125 vec->push_back(86); in c_return_unique_ptr_vector_u8()
126 vec->push_back(75); in c_return_unique_ptr_vector_u8()
127 vec->push_back(30); in c_return_unique_ptr_vector_u8()
128 vec->push_back(9); in c_return_unique_ptr_vector_u8()
129 return vec; in c_return_unique_ptr_vector_u8()
133 auto vec = std::unique_ptr<std::vector<double>>(new std::vector<double>()); in c_return_unique_ptr_vector_f64() local
134 vec->push_back(86.0); in c_return_unique_ptr_vector_f64()
135 vec->push_back(75.0); in c_return_unique_ptr_vector_f64()
136 vec in c_return_unique_ptr_vector_f64()
147 auto vec = std::unique_ptr<std::vector<Shared>>(new std::vector<Shared>()); c_return_unique_ptr_vector_shared() local
[all...]
/third_party/skia/include/private/
H A DSkNx_neon.h33 AI SkNx(float32x2_t vec) : fVec(vec) {} in SkNx() argument
156 AI SkNx(float32x4_t vec) : fVec(vec) {} in SkNx() argument
299 AI SkNx(const uint16x4_t& vec) : fVec(vec) {} in SkNx() argument
360 AI SkNx(const uint16x8_t& vec) : fVec(vec) {} in SkNx() argument
409 AI SkNx(const uint8x8_t& vec) : fVec(vec) {} in SkNx() argument
435 SkNx(const uint8x8_t& vec) SkNx() argument
459 SkNx(const uint8x16_t& vec) SkNx() argument
498 SkNx(const int32x4_t& vec) SkNx() argument
556 SkNx(const uint32x4_t& vec) SkNx() argument
[all...]
/third_party/skia/third_party/externals/freetype/src/smooth/
H A Dftgrays.c1158 struct { __m128i a, b; } vec; in gray_render_conic() member
1165 __m128i vec; in gray_render_conic() member
1179 a = _mm_load_si128( &u.vec.a ); in gray_render_conic()
1180 b = _mm_load_si128( &u.vec.b ); in gray_render_conic()
1193 p = _mm_load_si128( &v.vec ); in gray_render_conic()
1200 _mm_store_si128( &v.vec, p ); in gray_render_conic()
1753 FT_Vector vec; in FT_Outline_Decompose() local
1756 vec.x = SCALED( point->x ); in FT_Outline_Decompose()
1757 vec.y = SCALED( point->y ); in FT_Outline_Decompose()
1760 vec in FT_Outline_Decompose()
1774 FT_Vector vec; FT_Outline_Decompose() local
1842 FT_Vector vec; FT_Outline_Decompose() local
[all...]
/kernel/linux/linux-5.10/drivers/media/common/videobuf2/
H A Dvideobuf2-dma-sg.c38 struct frame_vector *vec; member
222 struct frame_vector *vec; in vb2_dma_sg_get_userptr() local
237 vec = vb2_create_framevec(vaddr, size); in vb2_dma_sg_get_userptr()
238 if (IS_ERR(vec)) in vb2_dma_sg_get_userptr()
240 buf->vec = vec; in vb2_dma_sg_get_userptr()
242 buf->pages = frame_vector_pages(vec); in vb2_dma_sg_get_userptr()
245 buf->num_pages = frame_vector_count(vec); in vb2_dma_sg_get_userptr()
265 vb2_destroy_framevec(vec); in vb2_dma_sg_get_userptr()
291 vb2_destroy_framevec(buf->vec); in vb2_dma_sg_put_userptr()
[all...]
/kernel/linux/linux-6.6/drivers/media/common/videobuf2/
H A Dvideobuf2-dma-sg.c38 struct frame_vector *vec; member
228 struct frame_vector *vec; in vb2_dma_sg_get_userptr() local
244 vec = vb2_create_framevec(vaddr, size, in vb2_dma_sg_get_userptr()
247 if (IS_ERR(vec)) in vb2_dma_sg_get_userptr()
249 buf->vec = vec; in vb2_dma_sg_get_userptr()
251 buf->pages = frame_vector_pages(vec); in vb2_dma_sg_get_userptr()
254 buf->num_pages = frame_vector_count(vec); in vb2_dma_sg_get_userptr()
274 vb2_destroy_framevec(vec); in vb2_dma_sg_get_userptr()
300 vb2_destroy_framevec(buf->vec); in vb2_dma_sg_put_userptr()
[all...]
/kernel/linux/linux-5.10/include/linux/sunrpc/
H A Dsvc.h348 struct kvec *vec = &rqstp->rq_arg.head[0]; in xdr_argsize_check() local
349 return cp >= (char*)vec->iov_base in xdr_argsize_check()
350 && cp <= (char*)vec->iov_base + vec->iov_len; in xdr_argsize_check()
356 struct kvec *vec = &rqstp->rq_res.head[0]; in xdr_ressize_check() local
359 vec->iov_len = cp - (char*)vec->iov_base; in xdr_ressize_check()
361 return vec->iov_len <= PAGE_SIZE; in xdr_ressize_check()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_builtin_builder.h41 nir_ssa_def* nir_fast_length(nir_builder *b, nir_ssa_def *vec);
43 nir_ssa_def* nir_normalize(nir_builder *b, nir_ssa_def *vec);
63 nir_fmax_abs_vec_comp(nir_builder *b, nir_ssa_def *vec) in nir_fmax_abs_vec_comp() argument
65 nir_ssa_def *abs = nir_fabs(b, vec); in nir_fmax_abs_vec_comp()
67 for (unsigned i = 1; i < vec->num_components; ++i) in nir_fmax_abs_vec_comp()
165 nir_fast_normalize(nir_builder *b, nir_ssa_def *vec) in nir_fast_normalize() argument
167 return nir_fdiv(b, vec, nir_fast_length(b, vec)); in nir_fast_normalize()
/third_party/mesa3d/src/compiler/nir/tests/
H A Dvars_tests.cpp1081 nir_variable *vec = create_ivec2(nir_var_mem_global, "vec"); in TEST_F() local
1084 nir_store_var(b, vec, nir_load_var(b, in0), 1 << 0); in TEST_F()
1085 nir_store_var(b, vec, nir_load_var(b, in1), 1 << 1); in TEST_F()
1087 /* This load will be dropped, as vec.y (or vec[1]) is already known. */ in TEST_F()
1089 nir_build_deref_array_imm(b, nir_build_deref_var(b, vec), 1); in TEST_F()
1109 /* NOTE: The ALU instruction is how we get the vec.y. */ in TEST_F()
1116 nir_variable *vec = create_ivec2(nir_var_mem_global, "vec"); in TEST_F() local
1140 nir_variable *vec = create_ivec2(nir_var_mem_global, "vec"); TEST_F() local
1173 nir_variable *vec = create_ivec2(nir_var_mem_global, "vec"); TEST_F() local
1218 nir_variable *vec = create_ivec2(nir_var_mem_global, "vec"); TEST_F() local
1255 nir_variable *vec = create_ivec2(nir_var_mem_global, "vec"); TEST_F() local
1856 nir_alu_instr *vec = nir_src_as_alu_instr(combined->src[1]); TEST_F() local
1895 nir_alu_instr *vec = nir_src_as_alu_instr(combined->src[1]); TEST_F() local
1961 nir_alu_instr *vec = nir_src_as_alu_instr(combined->src[1]); TEST_F() local
[all...]

Completed in 21 milliseconds

1...<<11121314151617181920>>...52