Home
last modified time | relevance | path

Searched refs:vec (Results 676 - 700 of 1601) sorted by relevance

1...<<21222324252627282930>>...65

/kernel/linux/linux-6.6/drivers/usb/mon/
H A Dmon_bin.c897 * Fetch at most max event offsets into the buffer and put them into vec.
902 u32 __user *vec, unsigned int max) in mon_bin_fetch()
931 if (put_user(cur_out, &vec[nevents])) { in mon_bin_fetch()
1024 struct mon_pgmap *vec; in mon_bin_ioctl() local
1030 vec = kcalloc(size / CHUNK_SIZE, sizeof(struct mon_pgmap), in mon_bin_ioctl()
1032 if (vec == NULL) { in mon_bin_ioctl()
1037 ret = mon_alloc_buff(vec, size/CHUNK_SIZE); in mon_bin_ioctl()
1039 kfree(vec); in mon_bin_ioctl()
1046 mon_free_buff(vec, size/CHUNK_SIZE); in mon_bin_ioctl()
1047 kfree(vec); in mon_bin_ioctl()
901 mon_bin_fetch(struct file *file, struct mon_reader_bin *rp, u32 __user *vec, unsigned int max) mon_bin_fetch() argument
[all...]
/third_party/alsa-utils/topology/nhlt/intel/dmic/
H A Ddmic-process.c63 /* This function searches from vec[] (of length vec_length) integer values of n. The indices to
69 static int find_equal_int16(int16_t idx[], int16_t vec[], int n, int vec_length, in find_equal_int16() argument
76 if (vec[i] == n) { in find_equal_int16()
89 static int32_t find_max_abs_int32(int32_t vec[], int vec_length) in find_max_abs_int32() argument
92 int64_t amax = (vec[0] > 0) ? vec[0] : -vec[0]; in find_max_abs_int32()
95 amax = (vec[i] > amax) ? vec[i] : amax; in find_max_abs_int32()
96 amax = (-vec[ in find_max_abs_int32()
[all...]
/third_party/skia/third_party/externals/freetype/src/autofit/
H A Dafhints.c971 FT_Vector* vec = outline->points; in FT_LOCAL_DEF() local
979 for ( point = points; point < point_limit; point++, vec++, tag++ ) in FT_LOCAL_DEF()
987 point->fx = (FT_Short)vec->x; in FT_LOCAL_DEF()
988 point->fy = (FT_Short)vec->y; in FT_LOCAL_DEF()
989 point->ox = point->x = FT_MulFix( vec->x, x_scale ) + x_delta; in FT_LOCAL_DEF()
990 point->oy = point->y = FT_MulFix( vec->y, y_scale ) + y_delta; in FT_LOCAL_DEF()
1284 FT_Vector* vec = outline->points; in af_glyph_hints_save() local
1288 for ( ; point < limit; point++, vec++, tag++ ) in af_glyph_hints_save()
1290 vec->x = point->x; in af_glyph_hints_save()
1291 vec in af_glyph_hints_save()
[all...]
/third_party/rust/crates/clap/src/parser/
H A Dparser.rs819 vec![], in parse_long_arg()
1035 let arg_values = vec![v.to_os_str().into_owned()]; in parse_opt_value()
1191 vec![arg.to_string()], in react()
1223 vec![OsString::from("true")] in react()
1234 vec![arg.to_string()], in react()
1244 vec![OsString::from("false")] in react()
1255 vec![arg.to_string()], in react()
1269 vec![OsString::from(next_value.to_string())] in react()
1395 let arg_values = vec![val.to_owned()]; in add_env()
1440 let arg_values = vec![defaul in add_default_value()
[all...]
/third_party/rust/crates/serde/test_suite/tests/
H A Dtest_macros.rs994 &InternallyTagged::Bytes { bytes: vec![0] }, in test_internally_tagged_bytes()
1009 &InternallyTagged::Bytes { bytes: vec![0] }, in test_internally_tagged_bytes()
1024 &InternallyTagged::Bytes { bytes: vec![0] }, in test_internally_tagged_bytes()
1039 &InternallyTagged::Bytes { bytes: vec![0] }, in test_internally_tagged_bytes()
1054 &InternallyTagged::Bytes { bytes: vec![0] }, in test_internally_tagged_bytes()
1906 &Untagged::Bytes { bytes: vec![0] }, in test_untagged_bytes()
1919 &Untagged::Bytes { bytes: vec![0] }, in test_untagged_bytes()
1932 &Untagged::Bytes { bytes: vec![0] }, in test_untagged_bytes()
1945 &Untagged::Bytes { bytes: vec![0] }, in test_untagged_bytes()
1958 &Untagged::Bytes { bytes: vec![ in test_untagged_bytes()
[all...]
/kernel/linux/linux-5.10/include/media/
H A Dvideobuf2-memops.h38 void vb2_destroy_framevec(struct frame_vector *vec);
/kernel/linux/linux-6.6/include/media/
H A Dvideobuf2-memops.h39 void vb2_destroy_framevec(struct frame_vector *vec);
/third_party/googletest/googletest/include/gtest/hwext/
H A Dgtest-utils.h16 bool IsElementInVector(vector<int> vec, int element);
/third_party/skia/docs/examples/
H A DRGBA4f_vec_2.cpp9 float* array = color.vec(); in REG_FIDDLE()
H A DRGBA4f_vec.cpp9 const float* array = color.vec(); in REG_FIDDLE()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/
H A Dfew_ones.rs16 let mut pow = vec![]; in main()
/kernel/linux/linux-6.6/fs/xfs/
H A Dxfs_log.c111 struct xfs_log_iovec *vec = *vecp; in xlog_prepare_iovec() local
116 if (vec) { in xlog_prepare_iovec()
117 ASSERT(vec - lv->lv_iovecp < lv->lv_niovecs); in xlog_prepare_iovec()
118 vec++; in xlog_prepare_iovec()
120 vec = &lv->lv_iovecp[0]; in xlog_prepare_iovec()
129 vec->i_type = type; in xlog_prepare_iovec()
130 vec->i_addr = lv->lv_buf + lv->lv_buf_len; in xlog_prepare_iovec()
132 oph = vec->i_addr; in xlog_prepare_iovec()
137 buf = vec->i_addr + sizeof(struct xlog_op_header); in xlog_prepare_iovec()
140 *vecp = vec; in xlog_prepare_iovec()
930 struct xfs_log_vec vec = { xlog_write_unmount_record() local
2183 struct xfs_log_iovec *vec; xlog_print_trans() local
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/
H A Danimation_controller.cpp182 BASE_NS::vector<IAnimation::WeakPtr> vec = BASE_NS::move(animations_); in Finalize() local
183 for (auto&& anim : vec) { in Finalize()
/foundation/communication/netstack/frameworks/js/napi/http/cache/cache_strategy/src/
H A Dhttp_cache_response.cpp24 auto vec = CommonUtils::Split(cacheControl, SPLIT); in ParseCacheControl() local
26 for (const auto &str : vec) { in ParseCacheControl()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/
H A Dhfp_ag_system_interface.h506 const std::vector<OHOS::sptr<OHOS::Telephony::SignalInformation>> &vec) override;
511 const std::vector<OHOS::sptr<OHOS::Telephony::CellInformation>> &vec) override
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Dtraps.h95 #define VECOFF(vec) ((vec)<<2)
/kernel/linux/linux-5.10/arch/sh/kernel/
H A Dtraps.c140 if (notify_die(DIE_TRAP, "debug trap", regs, 0, vec & 0xff, in BUILD_TRAP_HANDLER()
191 switch (notify_die(DIE_NMI, "NMI", regs, 0, vec & 0xff, SIGINT)) { in BUILD_TRAP_HANDLER()
/kernel/linux/linux-6.6/arch/m68k/include/asm/
H A Dtraps.h95 #define VECOFF(vec) ((vec)<<2)
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/
H A Dtm-unavailable.c298 void test_fp_vec(int fp, int vec, pthread_attr_t *attr) in test_fp_vec() argument
305 flags.touch_vec = vec; in test_fp_vec()
/kernel/linux/linux-6.6/arch/sh/kernel/
H A Dtraps.c140 if (notify_die(DIE_TRAP, "debug trap", regs, 0, vec & 0xff, in BUILD_TRAP_HANDLER()
190 switch (notify_die(DIE_NMI, "NMI", regs, 0, vec & 0xff, SIGINT)) { in BUILD_TRAP_HANDLER()
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/tm/
H A Dtm-unavailable.c298 void test_fp_vec(int fp, int vec, pthread_attr_t *attr) in test_fp_vec() argument
305 flags.touch_vec = vec; in test_fp_vec()
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp97 static void AddFt(CRecordVector<UInt64> &vec, const FILETIME &ft) in AddFt() argument
99 vec.AddInReserved(FILETIME_To_UInt64(ft)); in AddFt()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_copy_propagate.c60 rewrite_to_vec(nir_function_impl *impl, nir_alu_instr *mov, nir_alu_instr *vec) in rewrite_to_vec() argument
72 new_vec->src[i] = vec->src[mov->src[0].swizzle[i]]; in rewrite_to_vec()
H A Dnir_lower_array_deref_of_vec.c40 nir_ssa_def *vec = nir_vec(b, comps, num_components); in build_write_masked_store() local
41 nir_store_deref(b, vec_deref, vec, (1u << component)); in build_write_masked_store()
/third_party/rust/crates/aho-corasick/src/packed/
H A Dpattern.rs62 by_id: vec![], in new()
63 order: vec![], in new()
251 let mut nybs = vec![]; in fmt()

Completed in 16 milliseconds

1...<<21222324252627282930>>...65