Home
last modified time | relevance | path

Searched refs:gsl (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/geom/
H A Dgeom_slice.c101 struct g_slice *gsl, *gsl2; in g_slice_access() local
108 gsl = &gsp->slices[pp->index]; in g_slice_access()
115 if (gsl->offset + gsl->length <= gsl2->offset) in g_slice_access()
117 if (gsl2->offset + gsl2->length <= gsl->offset) in g_slice_access()
160 struct g_slice *gsl; in g_slice_finish_hot() local
172 gsl = &gsp->slices[idx]; in g_slice_finish_hot()
179 if (bp2->bio_offset + bp2->bio_length > gsl->length) in g_slice_finish_hot()
180 bp2->bio_length = gsl->length - bp2->bio_offset; in g_slice_finish_hot()
182 bp2->bio_offset += gsl->offset; in g_slice_finish_hot()
217 struct g_slice *gsl; in g_slice_start() local
[all …]
/freebsd/sys/contrib/libsodium/packaging/nuget/
H A Dpackage.bat4 REM https://www.nuget.org/packages/gsl
5 gsl -q -script:package.gsl package.config
H A Dpackage.gsl4 .# language. See https://github.com/imatix/gsl for details. This script
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompiler.h323 #if LLVM_HAS_CPP_ATTRIBUTE(gsl::Owner)
324 #define LLVM_GSL_OWNER [[gsl::Owner]]
331 #if LLVM_HAS_CPP_ATTRIBUTE(gsl::Pointer)
332 #define LLVM_GSL_POINTER [[gsl::Pointer]]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticGroups.td454 def DanglingAssignmentGsl : DiagGroup<"dangling-assignment-gsl">;
458 def DanglingGsl : DiagGroup<"dangling-gsl">;
H A DAttr.td3053 let Spellings = [CXX11<"gsl", "suppress">, Clang<"suppress">];
3055 let Accessors = [Accessor<"isGSL", [CXX11<"gsl", "suppress">]>];
3926 let Spellings = [CXX11<"gsl", "Owner">];
3933 let Spellings = [CXX11<"gsl", "Pointer">];
H A DAttrDocs.td5489 When written as ``[[gsl::suppress]]``, this attribute suppresses specific
5496 [[gsl::suppress("Rh-public")]]
5499 [[gsl::suppress("type")]] {
6564 The attribute ``[[gsl::Owner(T)]]`` applies to structs and classes that own an
6569 class [[gsl::Owner(int)]] IntOwner {
6590 The attribute ``[[gsl::Pointer(T)]]`` applies to structs and classes that behave
6595 class [[gsl::Pointer(int)]] IntPointer {
6609 an instance of a class annotated with ``[[gsl::Owner]]`` (an Owner),