Home
last modified time | relevance | path

Searched full:completion (Results 1 – 25 of 1545) sorted by relevance

12345678910>>...62

/freebsd/contrib/ofed/libibverbs/man/
H A Dibv_create_cq_ex.36 ibv_create_cq_ex \- create a completion queue (CQ)
16 creates a completion queue (CQ) for RDMA device context
26 void *cq_context; /* Consumer-supplied context returned for completion eve…
27 …omp_channel *channel; /* Completion channel where completion events will be queued. May b…
28 int comp_vector; /* Completion vector used to signal completion events. M…
43 IBV_WC_EX_WITH_COMPLETION_TIMESTAMP = 1 << 7, /* Require completion timestamp in WC /*
60 .B Completion iterator functions
69 in a valid state. On success, querying the completion's attribute could be done using the query
74 This function is called in order to get the next work completion. It has to be called after
80 in a valid state. On success, querying the completion's attribute could be done using the query
[all …]
H A Dibv_get_cq_event.36 ibv_get_cq_event, ibv_ack_cq_events \- get and acknowledge completion queue (CQ) events
20 waits for the next completion event in the completion event channel
41 All completion events that
45 To avoid races, destroying a CQ will wait for all completion events to
54 acking several completion events in one call to
58 completion events. It performs the following steps:
64 2. Requests for notification upon a new (first) completion event
66 Stage II: Completion Handling Routine
68 3. Wait for the completion event and ack it
70 4. Request for notification upon the next completion event
[all …]
H A Dibv_create_comp_channel.37 destroy a completion event channel
19 creates a completion event channel for the RDMA device context
23 destroys the completion event channel
27 returns a pointer to the created completion event channel, or NULL if the request fails.
32 A "completion channel" is an abstraction introduced by libibverbs that
34 RDMA Protocol Verbs Specification. A completion channel is
35 essentially file descriptor that is used to deliver completion
36 notifications to a userspace process. When a completion event is
37 generated for a completion queue (CQ), the event is delivered via the
38 completion channel attached to that CQ. This may be useful to steer
[all …]
H A Dibv_req_notify_cq.36 ibv_req_notify_cq \- request completion notification on a completion queue (CQ)
14 requests a completion notification on the completion queue (CQ)
19 a completion event will be added to the completion channel associated
23 is zero, a completion event is generated for any new CQE. If
27 completion for a message with the Solicited Event header bit set, or
29 completions, or any successful send completion is unsolicited.
35 The request for notification is "one shot." Only one completion event
H A Dibv_create_cq.36 ibv_create_cq, ibv_destroy_cq \- create or destroy a completion queue (CQ)
20 creates a completion queue (CQ) with at least
28 is optional; if not NULL, the completion channel
30 will be used to return completion events. The CQ will use the
31 completion vector
33 for signaling completion events; it must be at least zero and less than
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h26 /// a completion, but that the token is still incomplete. Examples
28 /// the file path token is still incomplete after the completion. Clients
29 /// should not indicate to the user that this is a full completion (e.g. by
30 /// not inserting the usual trailing space after a successful completion).
33 /// The full line has been rewritten by the completion.
40 /// A single completion and all associated data.
41 class Completion {
48 /// completion text.
53 Completion(llvm::StringRef completion, llv argument
197 for (const std::string &completion : completions) AddCompletions() local
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h1 //===- CodeCompleteConsumer.h - Code Completion Interface -------*- C++ -*-===//
51 /// Default priority values for code-completion results based
62 /// Priority for a send-to-super completion.
102 /// Priority value deltas that are added to code-completion results
134 /// priority of a code-completion result.
136 /// Divide by this factor when a code-completion result's type exactly
140 /// Divide by this factor when a code-completion result's type is
147 /// "similar" types for code completion.
167 /// Determine the priority to be given to a macro code completion result
184 /// The context in which code completion occurred, so that the
[all …]
H A DSemaCodeCompletion.h1 //===----- SemaCodeCompletion.h ------ Code completion support ------------===//
9 /// This file declares facilities that support code completion.
44 /// Code-completion consumer.
47 /// Describes the context in which code completion occurs.
49 /// Code completion occurs at top-level or namespace context.
51 /// Code completion occurs within a class, struct, or union.
53 /// Code completion occurs within an Objective-C interface, protocol,
56 /// Code completion occurs within an Objective-C implementation or
59 /// Code completion occurs within the list of instance variables
62 /// Code completion occurs following one or more template
[all …]
H A DCodeCompleteOptions.h1 //===---- CodeCompleteOptions.h - Code Completion Options -------*- C++ -*-===//
16 /// Options controlling the behavior of code completion.
19 /// Show macros in code completion results.
23 /// Show code patterns in code completion results.
27 /// Show top-level decls in code completion results.
32 /// completion results. If this is 0, `IncludeGlobals` will be ignored.
36 /// FIXME: consider supporting more completion cases with this option.
40 /// Show brief documentation comments in code completion results.
/freebsd/lib/libpmc/pmu-events/arch/powerpc/power8/
H A Dpipeline.json23 "BriefDescription": "Completion stall",
29 "BriefDescription": "Completion stall due to a Branch Unit",
35 "BriefDescription": "Completion stall by Dcache miss",
41 …"BriefDescription": "Completion stall by Dcache miss which resolved on chip ( excluding local L2/L…
47 "BriefDescription": "Completion stall by Dcache miss which resolved in L2/L3",
53 …"BriefDescription": "Completion stall due to cache miss that resolves in the L2 or L3 with a confl…
54 …"PublicDescription": "Completion stall due to cache miss resolving in core's L2/L3 with a conflict"
59 "BriefDescription": "Completion stall due to cache miss resolving missed the L3",
65 "BriefDescription": "Completion stall due to cache miss that resolves in local memory",
66 "PublicDescription": "Completion stall due to cache miss resolving in core's Local Memory"
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp37 // Let's add an empty fake argument to the end to make sure the completion in CompletionRequest()
44 std::string CompletionResult::Completion::GetUniqueKey() const { in GetUniqueKey()
46 // We build a unique key for this pair of completion:description. We in GetUniqueKey()
47 // prefix the key with the length of the completion string. This prevents in GetUniqueKey()
61 void CompletionResult::AddResult(llvm::StringRef completion, in AddResult() argument
64 Completion r(completion, description, mode); in AddResult()
66 // Add the completion if we haven't seen the same value before. in AddResult()
73 for (const Completion &completion in GetMatches() local
79 for (const Completion &completion : m_results) GetDescriptions() local
[all...]
/freebsd/contrib/tcsh/
H A Dcsh-mode.el59 ;; -------------------------------------------> Variables controlling completion
61 (defvar csh-completion-list '())
62 (make-variable-buffer-local 'csh-completion-list)
63 (set-default 'csh-completion-list '())
69 (defvar csh-completion-type-misc 0)
70 (defvar csh-completion-regexp-var "\\([A-Za-z_0-9]+\\)=")
71 (defvar csh-completion-type-var 1)
72 (defvar csh-completion-match-var 1)
73 (defvar csh-completion-regexp-var2 "\\$\\({\\|{#\\)?\\([A-Za-z_0-9]+\\)[#%:}]?")
74 (defvar csh-completion-match-var2 2)
[all …]
/freebsd/sys/dev/isci/scil/
H A Dscu_completion_codes.h61 * completion codes.
72 * This macro constructs an SCU completion type
78 * These macros contain the SCU completion types
92 * an SCU completion code.
105 * This macro returns the SCU completion type.
111 * This macro returns the SCU completion status.
117 * This macro returns the transport layer completion status.
123 * This macro takes a completion code and performs the shift and mask
124 * operations to turn it into a completion code that can be compared to a
141 * This macro returns the SDMA completion status.
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/LineEditor/
H A DLineEditor.h47 /// The action to perform upon a completion request.
65 /// A possible completion at a given cursor position.
66 struct Completion { struct
67 Completion() = default;
68 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion() function
72 /// completion, this should only include the rest of the text.
75 /// A description of this completion. This may be the completion itself, or
91 /// position in the StringRef) and returns a std::vector<Completion>. argument
97 /// completion request. If the current completer is a list completer, this
98 /// will return an AK_Insert CompletionAction if each completion has a common
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DCodeCompletionHandler.h1 //===--- CodeCompletionHandler.h - Preprocessor code completion -*- C++ -*-===//
10 // code-completion callbacks for the preprocessor.
24 /// completion within the preprocessor.
29 /// Callback invoked when performing code completion for a preprocessor
33 /// start of a line, followed by the code-completion token.
39 /// Callback invoked when performing code completion within a block of
43 /// Callback invoked when performing code completion in a context
50 /// Callback invoked when performing code completion in a preprocessor
54 /// Callback invoked when performing code completion inside a
64 /// Callback invoked when performing code completion inside the filename
[all …]
/freebsd/sys/crypto/ccp/
H A Dccp_hardware.h264 uint32_t hoc:1; /* Halt on completion */
265 uint32_t ioc:1; /* Intr. on completion */
278 uint32_t hoc:1; /* Halt on completion */
279 uint32_t ioc:1; /* Intr. on completion */
292 uint32_t hoc:1; /* Halt on completion */
293 uint32_t ioc:1; /* Intr. on completion */
306 uint32_t hoc:1; /* Halt on completion */
307 uint32_t ioc:1; /* Intr. on completion */
319 uint32_t hoc:1; /* Halt on completion */
320 uint32_t ioc:1; /* Intr. on completion */
[all …]
/freebsd/sys/contrib/alpine-hal/
H A Dal_hal_udma.h135 /** UDMA completion descriptor */
137 /* TX completion */
141 /* RX completion */
148 /* TX/RX common completion desc ctrl_meta feilds */
197 * completion rings must have same size
209 uint8_t *cdesc_base; /**< completion descriptors pointer, NULL */
210 /* means no completion update */
211 al_phys_addr_t cdesc_phy_base; /**< completion descriptors ring
218 uint32_t cdesc_size; /**< size (in bytes) of a single dma completion
261 uint8_t *cdesc_base_ptr;/**< completion descriptors pointer, NULL */
[all …]
H A Dal_hal_udma_config.h95 uint8_t min_axi_beats; /* Minimum burst for writing completion desc. */
108 uint8_t min_axi_beats; /* Minimum burst for writing completion desc. */
197 /** S2M Completion configuration */
199 uint8_t desc_size; /* Size of completion descriptor
202 al_bool cnt_words; /* Completion fifo in use counter:
207 /* in the completion write scheduler */
212 uint8_t q_free_min; /* minimum number of free completion
217 uint16_t comp_fifo_depth; /* Size of completion fifo in words */
292 /** M2S UDMA completion and application timeouts */
304 /** S2M UDMA per queue completion configuration */
[all …]
H A Dal_hal_udma_regs_s2m.h67 /* [0x10] Completion write master configuration */
69 /* [0x14] Completion write master configuration */
75 /* [0x20] Completion descriptors write master configuration */
143 * [0x40] S2M completion FIFO status.
176 /* [0x0] Completion controller configuration */
178 /* [0x4] Completion controller configuration */
181 /* [0xc] Completion controller application acknowledge configuration */
202 /* [0x14] Number of packets written into the completion ring */
204 /* [0x18] Number of descriptors written into the completion ring */
262 /* [0x44] Rx Completion Ring Base Pointer [31:4] */
[all …]
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp1 //===------ CodeCompletion.cpp - Code Completion for ClangRepl -------===//
9 // This file implements the classes which performs code completion at the REPL.
32 const std::string CodeCompletionFileName = "input_line_[Completion]";
51 // The entry of handling code completion. When the function is called, we
53 // completion result.
70 /// which handles one type of completion result.
87 /// Converts a Declaration completion result to a completion string, and then
118 /// Converts a Keyword completion result to a completion string, and then
122 // Add keyword to the completion results only if we are in a type-aware in handleKeyword()
130 /// Converts a Pattern completion result to a completion string, and then
[all …]
/freebsd/sys/contrib/dev/iwlwifi/
H A Diwl-context-info-gen3.h48 * @IWL_PRPH_SCRATCH_MTR_MODE: format used for completion - 0: for
49 * completion descriptor, 1 for responses (legacy)
226 * @cr_head_idx_arr_base_addr: the completion ring head index array
230 * @cr_tail_idx_arr_base_addr: the completion ring tail index array
234 * @cr_idx_arr_size: number of entries in the completion ring index array
237 * @mcr_base_addr: the message completion ring start address
239 * @mcr_size: number of entries which the message completion ring can hold
243 * completion ring
247 * completing a completion descriptor in the message completion rin
[all...]
/freebsd/lib/libpmc/pmu-events/arch/x86/tigerlake/
H A Dmemory.json25 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
35 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
41 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
51 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
57 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
67 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
73 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
83 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
89 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
99 …Counts randomly selected loads when the latency from first dispatch to completion is greater than …
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/tremontx/
H A Duncore-other.json1046 "BriefDescription": "PCIe Completion Buffer Inserts of completions with data: Part 0-7",
1054 "PublicDescription": "PCIe Completion Buffer Inserts of completions with data : Part 0-7",
1059 "BriefDescription": "PCIe Completion Buffer Inserts of completions with data: Part 0",
1067 …"PublicDescription": "PCIe Completion Buffer Inserts of completions with data : Part 0 : x16 card …
1072 "BriefDescription": "PCIe Completion Buffer Inserts of completions with data: Part 1",
1080 …"PublicDescription": "PCIe Completion Buffer Inserts of completions with data : Part 1 : x16 card …
1085 "BriefDescription": "PCIe Completion Buffer Inserts of completions with data: Part 2",
1093 …"PublicDescription": "PCIe Completion Buffer Inserts of completions with data : Part 2 : x16 card …
1098 "BriefDescription": "PCIe Completion Buffer Inserts of completions with data: Part 3",
1106 …"PublicDescription": "PCIe Completion Buffer Inserts of completions with data : Part 2 : x16 card …
[all …]
/freebsd/sys/contrib/device-tree/Bindings/scsi/
H A Dhisilicon-sas.txt19 - queue-count : number of delivery and completion queues in the controller
21 - interrupts : For v1 hw: Interrupts for phys, completion queues, and fatal
24 - Completion queue interrupts
32 Completion queue interrupts : each completion queue has 1
38 For v2 hw: Interrupts for phys, Sata, and completion queues;
42 - Completion queue interrupts
49 Completion queue interrupts : each completion queue has 1
/freebsd/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.c132 * Completion API
135 init_completion(struct completion *c) in init_completion()
137 cv_init(&c->cv, "VCHI completion cv"); in init_completion()
138 mtx_init(&c->lock, "VCHI completion lock", "condvar", MTX_DEF); in init_completion()
143 destroy_completion(struct completion *c) in destroy_completion()
150 complete(struct completion *c) in complete()
166 complete_all(struct completion *c) in complete_all()
182 INIT_COMPLETION_locked(struct completion *c) in INIT_COMPLETION_locked()
192 _completion_claim(struct completion *c) in _completion_claim()
197 KASSERT(c->done != 0, ("_completion_claim on non-waited completion")); in _completion_claim()
[all …]

12345678910>>...62