Searched +full:tcb +full:- +full:capture (Results 1 – 10 of 10) sorted by relevance
/freebsd/sys/contrib/device-tree/Bindings/soc/microchip/ |
H A D | atmel,at91rm9200-tcb.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/soc/microchip/atmel,at91rm9200-tcb.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Alexandre Belloni <alexandre.belloni@bootlin.com> 19 - enum: 20 - atmel,at91rm9200-tcb 21 - atmel,at91sam9x5-tcb 22 - atmel,sama5d2-tcb 23 - const: simple-mfd [all …]
|
/freebsd/sys/netinet/ |
H A D | tcp_log_buf.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2016-2020 Netflix, Inc. 36 * Because the (struct tcp_log_buffer) includes 8-byte uint64_t's, it requires 37 * 8-byte alignment to work properly on all platforms. Therefore, we will 38 * enforce 8-byte alignment for all the structures that may appear by 47 uint32_t tls_sb_acc; /* available chars (sb->sb_acc) */ 48 uint32_t tls_sb_ccc; /* claimed chars (sb->sb_ccc) */ 133 struct tcp_log_uint64 u64_raw; /* just u64's - used by process info */ 151 #define TLB_FLAG_STACKINFO 0x0010 /* Includes stack-specific info */ [all …]
|
H A D | tcp_log_buf.c | 2 /*- 3 * SPDX-License-Identifier: BSD-2-Clause 5 * Copyright (c) 2016-2018 Netflix, Inc. 147 "Logging mode for auto-selected sessions (default is TCP_LOG_STATE_TAIL)"); 151 "Auto-select from all sessions (rather than just those with IDs)"); 260 #define TCPID_BUCKET_LOCK_INIT(tlb) mtx_init(&((tlb)->tlb_mtx), "tcp log id bucket", NULL, MTX_DEF) 261 #define TCPID_BUCKET_LOCK_DESTROY(tlb) mtx_destroy(&((tlb)->tlb_mtx)) 262 #define TCPID_BUCKET_LOCK(tlb) mtx_lock(&((tlb)->tlb_mtx)) 263 #define TCPID_BUCKET_UNLOCK(tlb) mtx_unlock(&((tlb)->tlb_mtx)) 264 #define TCPID_BUCKET_LOCK_ASSERT(tlb) mtx_assert(&((tlb)->tlb_mtx), MA_OWNED) [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticSemaKinds.td | 1 //==--- DiagnosticSemaKinds.td - libsema diagnostics ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 33 "been assigned">, InGroup<DiagGroup<"duplicate-enum">>, DefaultIgnore; 85 "%select{case value|enumerator value|non-type template argument|" 89 "%select{case value|enumerator value|non-type template argument|" 108 "represented in a %1-bit %select{signed|unsigned}2 integer type">; 114 InGroup<DiagGroup<"predefined-identifier-outside-function">>; [all …]
|
H A D | AttrDocs.td | 1 //==--- AttrDocs.td - Attribute documentation ----------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===---------------------------------------------------------------------===// 9 // To test that the documentation builds cleanly, you must run clang-tblgen to 15 // To run clang-tblgen to generate the .rst file: 16 // clang-tblgen -gen-attr-docs -I <root>/llvm/tools/clang/include 17 // <root>/llvm/tools/clang/include/clang/Basic/Attr.td -o 20 // To run sphinx to generate the .html files (note that sphinx-build must be 24 // Non-Windows (from within the clang\docs directory): 25 // sphinx-build -b html _build/html [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 235 class Capture; variable 268 /// placing fix-its. 284 /// A single-element cache based on the file ID. 292 // Check the single-element cache. 296 // It's not in the single-element cache; flush the cache if we have one. 329 /// The callback should also emit signature help as a side-effect, but only [all …]
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack.c | 1 /*- 2 * Copyright (c) 2016-2020 Netflix, Inc. 162 * - Matt Mathis's Rate Halving which slowly drops 165 * - Yuchung Cheng's RACK TCP (for which its named) that 168 * - Reorder Detection of RFC4737 and the Tail-Loss probe draft 186 * TCP output is also over-written with a new version since it 191 static int32_t rack_tlp_limit = 2; /* No more than 2 TLPs w-out new data */ 194 static int32_t rack_reorder_fade = 60000000; /* 0 - never fade, def 60,000,000 195 * - 60 seconds */ 199 static uint8_t rack_ssthresh_rest_rto_rec = 0; /* Do we restore ssthresh when we have rec -> rto ->… [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 1 //===- Type.h - C Language Family Type Representation -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 //===----------------------------------------------------------------------===// 145 /// Pointer-authentication qualifiers. 157 AuthenticationModeMask = ((1 << AuthenticationModeBits) - 1) 161 IsaPointerMask = ((1 << IsaPointerBits) - 1) << IsaPointerShift, 164 AuthenticatesNullValuesMask = ((1 << AuthenticatesNullValuesBits) - 1) 168 KeyMask = ((1 << KeyBits) - 1) << KeyShift, 171 DiscriminatorMask = ((1u << DiscriminatorBits) - 1) << DiscriminatorShift, [all …]
|
/freebsd/sys/dev/cxgbe/ |
H A D | t4_main.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 270 * Each tunable is set to a default value here if it's known at compile-time. 271 * Otherwise it is set to -n as an indication to tweak_tunables() that it should 288 int t4_ntxq = -NTXQ; 294 int t4_nrxq = -NRXQ; 300 static int t4_ntxq_vi = -NTXQ_VI; 305 static int t4_nrxq_vi = -NRXQ_VI; 311 0, "Reserve TX queue 0 of each VI for non-flowid packets"); 315 static int t4_nofldtxq = -NOFLDTXQ; [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 1 //===- SemaChecking.cpp - Extra Semantic Checking -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 125 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte() 135 unsigned ArgCount = Call->getNumArgs(); in checkArgCountAtLeast() 139 return Diag(Call->getEndLoc(), diag::err_typecheck_call_too_few_args) in checkArgCountAtLeast() 141 << /*is non object*/ 0 << Call->getSourceRange(); in checkArgCountAtLeast() 145 unsigned ArgCount = Call->getNumArgs(); in checkArgCountAtMost() 148 return Diag(Call->getEndLoc(), diag::err_typecheck_call_too_many_args_at_most) in checkArgCountAtMost() [all …]
|