Home
last modified time | relevance | path

Searched refs:vec (Results 526 - 550 of 1595) sorted by relevance

1...<<21222324252627282930>>...64

/kernel/linux/linux-5.10/drivers/dma/idxd/
H A Dsubmit.c71 int vec = desc->hw->int_handle; in idxd_submit_desc() local
92 &idxd->irq_entries[vec].pending_llist); in idxd_submit_desc()
/kernel/linux/linux-5.10/net/dccp/
H A Dackvec.h120 * @vec: start of vector (offset into skb)
121 * @len: length of @vec
122 * @nonce: whether @vec had an ECN nonce of 0 or 1
128 u8 *vec, member
134 int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce);
/kernel/linux/linux-6.6/net/dccp/
H A Dackvec.h120 * @vec: start of vector (offset into skb)
121 * @len: length of @vec
122 * @nonce: whether @vec had an ECN nonce of 0 or 1
128 u8 *vec, member
134 int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce);
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/
H A DPopulationData.java59 int vec[] = territoryF.getIntVector(); in getTerritoryEntries()
65 entries.add(new TerritoryEntry(territory.getDisplayCountry(ULocale.forLocale(loc)), SupplementalUtilities.ldml2d(vec[2]))); in getTerritoryEntries()
/third_party/icu/icu4c/source/i18n/
H A Dfphdlimp.h69 UVector32* vec; member in FieldPositionIteratorHandler
86 FieldPositionIteratorHandler(UVector32* vec, UErrorCode& status);
/third_party/json/docs/examples/
H A Dsax_parse__binary.cpp98 std::vector<std::uint8_t> vec = {{0x44, 0xcA, 0xfe, 0xba, 0xbe}}; in main() local
104 bool result = json::sax_parse(vec, &sec, json::input_format_t::cbor); in main()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_image.c58 nir_ssa_def *vec = nir_vec_scalars(b, comps, intrin->dest.ssa.num_components); in lower_cube_size() local
59 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, vec); in lower_cube_size()
/third_party/nghttp2/src/
H A Dh2load_http3_session.h64 ssize_t write_stream(int64_t &stream_id, int &fin, nghttp3_vec *vec,
72 void read_data(nghttp3_vec *vec, size_t veccnt, uint32_t *pflags);
/third_party/node/deps/icu-small/source/i18n/
H A Dfphdlimp.h69 UVector32* vec; member in FieldPositionIteratorHandler
86 FieldPositionIteratorHandler(UVector32* vec, UErrorCode& status);
/third_party/rust/crates/codespan/codespan-reporting/examples/
H A Dpeg_calculator.rs59 .with_labels(vec![ in main()
62 .with_notes(vec![format!("expected: {}", error.expected)]); in main()
/third_party/skia/src/gpu/
H A DGrColor.h84 SkFloatToHalf_finite_ftz(Sk4f::Load(color.vec())).store(&halfColor); in SkPMColor4f_toFP16()
104 memcpy(fColor, color.vec(), sizeof(fColor)); in set()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dfphdlimp.h69 UVector32* vec; member in FieldPositionIteratorHandler
86 FieldPositionIteratorHandler(UVector32* vec, UErrorCode& status);
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DObjectContentHasher.h58 static constexpr void Call(ObjectContentHasher* recorder, const std::vector<T>& vec) { in Call()
59 recorder->RecordIterable<std::vector<T>>(vec); in Call()
/third_party/pulseaudio/speex/libspeexdsp/
H A Dos_support.h158 static inline void print_vec(float *vec, int len, char *name) in print_vec() argument
163 printf (" %f", vec[i]); in print_vec()
/third_party/rust/crates/nom/src/
H A Dlib.rs242 //! assert_eq!(multi(a), Ok(("ef", vec!["abcd"])));
243 //! assert_eq!(multi(b), Ok(("ef", vec!["abcd", "abcd"])));
405 pub use alloc::{borrow, boxed, string, vec};
424 slice, str, string, vec,
/third_party/rust/crates/strsim-rs/benches/
H A Dbenches.rs52 strsim::generic_levenshtein(&vec![0u8; 30], &vec![7u8; 31]); in bench_levenshtein_on_u8()
/foundation/distributedhardware/distributed_input/utils/src/
H A Ddinput_utils_tool.cpp439 std::string GetString(const std::vector<std::string> &vec) in GetString() argument
442 if (vec.size() < 1) { in GetString()
443 DHLOGE("vec size error."); in GetString()
446 for (uint32_t i = 0; i < vec.size(); i++) { in GetString()
447 if (i != (vec.size() - 1)) { in GetString()
448 retStr += vec[i] + ", "; in GetString()
450 retStr += vec[i]; in GetString()
/kernel/linux/linux-6.6/arch/powerpc/kvm/
H A Dbook3s_hv_builtin.c519 static void inject_interrupt(struct kvm_vcpu *vcpu, int vec, u64 srr1_flags) in inject_interrupt() argument
526 new_pc = vec; in inject_interrupt()
541 if (vec != BOOK3S_INTERRUPT_SYSTEM_RESET && in inject_interrupt()
542 vec != BOOK3S_INTERRUPT_MACHINE_CHECK && in inject_interrupt()
555 void kvmppc_inject_interrupt_hv(struct kvm_vcpu *vcpu, int vec, u64 srr1_flags) in kvmppc_inject_interrupt_hv() argument
557 inject_interrupt(vcpu, vec, srr1_flags); in kvmppc_inject_interrupt_hv()
/kernel/linux/linux-5.10/fs/nfsd/
H A Dnfscache.c40 static int nfsd_cache_append(struct svc_rqst *rqstp, struct kvec *vec);
568 struct kvec *vec = &rqstp->rq_res.head[0]; in nfsd_cache_append() local
570 if (vec->iov_len + data->iov_len > PAGE_SIZE) { in nfsd_cache_append()
575 memcpy((char*)vec->iov_base + vec->iov_len, data->iov_base, data->iov_len); in nfsd_cache_append()
576 vec->iov_len += data->iov_len; in nfsd_cache_append()
/kernel/linux/linux-5.10/fs/ocfs2/dlm/
H A Ddlmunlock.c320 struct kvec vec[2]; in dlm_send_remote_unlock_request() local
342 vec[0].iov_len = sizeof(struct dlm_unlock_lock); in dlm_send_remote_unlock_request()
343 vec[0].iov_base = &unlock; in dlm_send_remote_unlock_request()
347 vec[1].iov_len = DLM_LVB_LEN; in dlm_send_remote_unlock_request()
348 vec[1].iov_base = lock->lksb->lvb; in dlm_send_remote_unlock_request()
353 vec, veclen, owner, &status); in dlm_send_remote_unlock_request()
H A Ddlmast.c439 struct kvec vec[2]; in dlm_send_proxy_ast_msg() local
455 vec[0].iov_len = sizeof(struct dlm_proxy_ast); in dlm_send_proxy_ast_msg()
456 vec[0].iov_base = &past; in dlm_send_proxy_ast_msg()
459 vec[1].iov_len = DLM_LVB_LEN; in dlm_send_proxy_ast_msg()
460 vec[1].iov_base = lock->lksb->lvb; in dlm_send_proxy_ast_msg()
464 ret = o2net_send_message_vec(DLM_PROXY_AST_MSG, dlm->key, vec, veclen, in dlm_send_proxy_ast_msg()
H A Ddlmconvert.c363 struct kvec vec[2]; in dlm_send_remote_convert_request() local
376 vec[0].iov_len = sizeof(struct dlm_convert_lock); in dlm_send_remote_convert_request()
377 vec[0].iov_base = &convert; in dlm_send_remote_convert_request()
381 vec[1].iov_len = DLM_LVB_LEN; in dlm_send_remote_convert_request()
382 vec[1].iov_base = lock->lksb->lvb; in dlm_send_remote_convert_request()
387 vec, veclen, res->owner, &status); in dlm_send_remote_convert_request()
/kernel/linux/linux-6.6/fs/ocfs2/dlm/
H A Ddlmconvert.c361 struct kvec vec[2]; in dlm_send_remote_convert_request() local
374 vec[0].iov_len = sizeof(struct dlm_convert_lock); in dlm_send_remote_convert_request()
375 vec[0].iov_base = &convert; in dlm_send_remote_convert_request()
379 vec[1].iov_len = DLM_LVB_LEN; in dlm_send_remote_convert_request()
380 vec[1].iov_base = lock->lksb->lvb; in dlm_send_remote_convert_request()
385 vec, veclen, res->owner, &status); in dlm_send_remote_convert_request()
H A Ddlmast.c427 struct kvec vec[2]; in dlm_send_proxy_ast_msg() local
443 vec[0].iov_len = sizeof(struct dlm_proxy_ast); in dlm_send_proxy_ast_msg()
444 vec[0].iov_base = &past; in dlm_send_proxy_ast_msg()
447 vec[1].iov_len = DLM_LVB_LEN; in dlm_send_proxy_ast_msg()
448 vec[1].iov_base = lock->lksb->lvb; in dlm_send_proxy_ast_msg()
452 ret = o2net_send_message_vec(DLM_PROXY_AST_MSG, dlm->key, vec, veclen, in dlm_send_proxy_ast_msg()
H A Ddlmunlock.c318 struct kvec vec[2]; in dlm_send_remote_unlock_request() local
340 vec[0].iov_len = sizeof(struct dlm_unlock_lock); in dlm_send_remote_unlock_request()
341 vec[0].iov_base = &unlock; in dlm_send_remote_unlock_request()
345 vec[1].iov_len = DLM_LVB_LEN; in dlm_send_remote_unlock_request()
346 vec[1].iov_base = lock->lksb->lvb; in dlm_send_remote_unlock_request()
351 vec, veclen, owner, &status); in dlm_send_remote_unlock_request()

Completed in 12 milliseconds

1...<<21222324252627282930>>...64