/freebsd/usr.sbin/mfiutil/ |
H A D | mfi_evt.c | 364 mfi_decode_evt(int fd, struct mfi_evt_detail *detail, int verbose) in mfi_decode_evt() argument 367 printf("%5d (%s/%s/%s) - ", detail->seq, format_timestamp(detail->time), in mfi_decode_evt() 368 format_locale(detail->evt_class.members.locale), in mfi_decode_evt() 369 format_class(detail->evt_class.members.evt_class)); in mfi_decode_evt() 370 switch (detail->arg_type) { in mfi_decode_evt() 376 pdrive_location(&detail->args.cdb_sense.pd) in mfi_decode_evt() 378 simple_hex(detail->args.cdb_sense.cdb, in mfi_decode_evt() 379 detail->args.cdb_sense.cdb_len, ":"); in mfi_decode_evt() 381 simple_hex(detail->args.cdb_sense.sense, in mfi_decode_evt() 382 detail->args.cdb_sense.sense_len, ":"); in mfi_decode_evt() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | StableHashing.h |
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Endian.h | 31 namespace detail { 39 } // end namespace detail 63 memory, (detail::PickAlignment<value_type, alignment>::value)), in read() 95 memory, (detail::PickAlignment<value_type, alignment>::value)), in write() 137 memory, (detail::PickAlignment<value_type, alignment>::value)), in readAtBitAlignment() 172 memory, (detail::PickAlignment<value_type, alignment>::value)), in writeAtBitAlignment() 206 memory, (detail::PickAlignment<value_type, alignment>::value)), in writeAtBitAlignment() 213 namespace detail { 278 } // end namespace detail 281 detail::packed_endian_specific_integral<uint16_t, llvm::endianness::little, [all …]
|
H A D | FormatAdapters.h | 20 class FormatAdapter : public support::detail::format_adapter { 28 namespace detail { 40 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() 54 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() 69 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() 85 } // namespace detail 89 support::detail::AlignAdapter<T> fmt_align(T &&Item, AlignStyle Where, 91 return support::detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, 96 support::detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad() 97 return support::detail::PadAdapter<T>(std::forward<T>(Item), Left, Right); in fmt_pad() [all …]
|
H A D | TimeProfiler.h | 32 // an arbitrary 'detail' string. The resulting trace will include 'Total' 34 // names to be fairly generic, and rely on the detail field to capture 37 // To avoid lifetime issues name and detail strings are copied into the event 40 // 'detail' argument may be a string-returning closure: 71 // - Evaluate the detail closures at profile write time to avoid 87 std::string Detail; member 92 bool isEmpty() const { return Detail.empty() && File.empty(); } in isEmpty() 133 /// Manually begin a time section, with the given \p Name and \p Detail. 138 StringRef Detail); 141 llvm::function_ref<std::string()> Detail); [all …]
|
/freebsd/contrib/kyua/utils/config/ |
H A D | tree.cpp | 43 _strict(strict), _root(new detail::static_inner_node()) in tree() 52 config::tree::tree(const bool strict, detail::static_inner_node* root) : in tree() 70 detail::static_inner_node* new_root = in deep_copy() 71 dynamic_cast< detail::static_inner_node* >(_root->deep_copy()); in deep_copy() 95 const detail::static_inner_node* other_root = in combine() 96 dynamic_cast< const detail::static_inner_node * >( in combine() 99 detail::static_inner_node* new_root = in combine() 100 dynamic_cast< detail::static_inner_node* >( in combine() 101 _root->combine(detail::tree_key(), other_root)); in combine() 122 const detail::tree_key key = detail::parse_key(dotted_key); in define_dynamic() [all …]
|
H A D | keys_test.cpp | 41 config::detail::tree_key key; in ATF_TEST_CASE_BODY() 43 ATF_REQUIRE_EQ("foo", config::detail::flatten_key(key)); in ATF_TEST_CASE_BODY() 50 config::detail::tree_key key; in ATF_TEST_CASE_BODY() 54 ATF_REQUIRE_EQ("foo.1.bar", config::detail::flatten_key(key)); in ATF_TEST_CASE_BODY() 61 config::detail::tree_key exp_key; in ATF_TEST_CASE_BODY() 63 ATF_REQUIRE(exp_key == config::detail::parse_key("one")); in ATF_TEST_CASE_BODY() 70 config::detail::tree_key exp_key; in ATF_TEST_CASE_BODY() 74 ATF_REQUIRE(exp_key == config::detail::parse_key("one.2.foo")); in ATF_TEST_CASE_BODY() 83 config::detail::parse_key("")); in ATF_TEST_CASE_BODY() 92 config::detail::parse_key(".")); in ATF_TEST_CASE_BODY() [all …]
|
H A D | tree.ipp | 59 const detail::tree_key key = detail::parse_key(dotted_key); 60 _root->define(key, 0, detail::new_node< LeafType >); 81 const detail::tree_key key = detail::parse_key(dotted_key); 82 const detail::base_node* raw_node = _root->lookup_ro(key, 0); 108 const detail::tree_key key = detail::parse_key(dotted_key); 109 detail::base_node* raw_node = _root->lookup_rw( 110 key, 0, detail::new_node< LeafType >); 137 const detail::tree_key key = detail::parse_key(dotted_key); 140 detail::new_node< LeafType >);
|
H A D | nodes.cpp | 43 config::detail::base_node::~base_node(void) in ~base_node() 51 config::detail::inner_node::inner_node(const bool dynamic_) : in inner_node() 58 config::detail::inner_node::~inner_node(void) in ~inner_node() 71 config::detail::inner_node::copy_into(inner_node* node) const in copy_into() 100 config::detail::inner_node::combine_children_into( in combine_children_into() 141 config::detail::inner_node::combine_into(const tree_key& key, in combine_into() 174 const config::detail::base_node* 175 config::detail::inner_node::lookup_ro(const tree_key& key, in lookup_ro() 220 config::detail::inner_node::lookup_rw(const tree_key& key, in lookup_rw() 267 config::detail::inner_node::all_properties(properties_map& properties, in all_properties() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DynamicAPInt.h | 47 detail::SlowDynamicAPInt ValLarge; 52 ValLarge.detail::SlowDynamicAPInt::~SlowDynamicAPInt(); in initSmall() 57 initLarge(const detail::SlowDynamicAPInt &O) { in initLarge() 64 new (&ValLarge) detail::SlowDynamicAPInt(O); in initLarge() 74 const detail::SlowDynamicAPInt &Val) in DynamicAPInt() 94 LLVM_ATTRIBUTE_ALWAYS_INLINE const detail::SlowDynamicAPInt & 100 LLVM_ATTRIBUTE_ALWAYS_INLINE detail::SlowDynamicAPInt &getLarge() { in getLarge() 105 explicit operator detail::SlowDynamicAPInt() const { in SlowDynamicAPInt() 107 return detail::SlowDynamicAPInt(getSmall()); in SlowDynamicAPInt() 119 ValLarge.detail::SlowDynamicAPInt::~SlowDynamicAPInt(); in ~DynamicAPInt() [all …]
|
H A D | DenseSet.h | 28 namespace detail { 48 /// DenseMap<ValueT, detail::DenseSetEmpty, ValueInfoT, 49 /// detail::DenseSetPair<ValueT>> 207 detail::DenseSetEmpty Empty; in insert() 212 detail::DenseSetEmpty Empty; in insert() 221 return TheMap.insert_as({V, detail::DenseSetEmpty()}, LookupKey); in insert_as() 225 return TheMap.insert_as({std::move(V), detail::DenseSetEmpty()}, LookupKey); in insert_as() 264 } // end namespace detail 268 class DenseSet : public detail::DenseSetImpl< 269 ValueT, DenseMap<ValueT, detail::DenseSetEmpty, ValueInfoT, [all …]
|
H A D | STLExtras.h | 61 namespace detail { 69 } // end namespace detail 79 using is_detected = typename detail::detector<void, Op, Args...>::value_t; 136 namespace detail { 143 } // namespace detail 156 : std::integral_constant<bool, detail::TypesAreDistinct<Ts...>::value> {}; 408 namespace detail { 416 } // namespace detail 420 if constexpr (detail::HasFreeFunctionRBegin<ContainerTy>) 535 namespace detail { [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SlowDynamicAPInt.cpp | 15 using namespace detail; 26 hash_code detail::hash_value(const SlowDynamicAPInt &X) { in hash_value() 33 SlowDynamicAPInt &detail::operator+=(SlowDynamicAPInt &A, int64_t B) { in operator +=() 36 SlowDynamicAPInt &detail::operator-=(SlowDynamicAPInt &A, int64_t B) { in operator -=() 39 SlowDynamicAPInt &detail::operator*=(SlowDynamicAPInt &A, int64_t B) { in operator *=() 42 SlowDynamicAPInt &detail::operator/=(SlowDynamicAPInt &A, int64_t B) { in operator /=() 45 SlowDynamicAPInt &detail::operator%=(SlowDynamicAPInt &A, int64_t B) { in operator %=() 49 bool detail::operator==(const SlowDynamicAPInt &A, int64_t B) { in operator ==() 52 bool detail::operator!=(const SlowDynamicAPInt &A, int64_t B) { in operator !=() 55 bool detail::operator>(const SlowDynamicAPInt &A, int64_t B) { in operator >() [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | operations.cpp | 57 using detail::capture_errno; 58 using detail::ErrorHandler; 59 using detail::StatT; 60 using detail::TimeSpec; 87 …std::unique_ptr<path::value_type, decltype(&::free)> hold(detail::realpath(p.c_str(), nullptr), &:… in __canonical() 98 if ((ret = detail::realpath(p.c_str(), buff)) == nullptr) in __canonical() 114 …sym_status || sym_status2 ? detail::posix_lstat(from, f_st, &m_ec1) : detail::posix_stat(from, f_s… in __copy() 119 …const file_status t = sym_status ? detail::posix_lstat(to, t_st, &m_ec1) : detail::posix_stat(to, … in __copy() 125 (exists(t) && detail::stat_equivalent(f_st, t_st))) { in __copy() 178 namespace detail { namespace [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Support/ |
H A D | Error.h | 19 namespace detail { 161 } // namespace detail 164 EXPECT_THAT(llvm::detail::TakeError(Err), Matcher) 166 ASSERT_THAT(llvm::detail::TakeError(Err), Matcher) 190 EXPECT_THAT(llvm::detail::TakeExpected(Err), Matcher) 192 ASSERT_THAT(llvm::detail::TakeExpected(Err), Matcher) 198 testing::Matcher<const detail::ErrorHolder &> Failed() { in Failed() 199 return MakeMatcher(new detail::ErrorMatchesMono<InfoT>(std::nullopt)); in Failed() 203 testing::Matcher<const detail::ErrorHolder &> Failed(M Matcher) { in Failed() 204 return MakeMatcher(new detail::ErrorMatchesMono<InfoT>( in Failed() [all …]
|
/freebsd/contrib/kyua/store/ |
H A D | write_backend_test.cpp | 53 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 59 const store::metadata md = store::detail::initialize(db); in ATF_TEST_CASE_BODY() 64 ATF_REQUIRE_EQ(store::detail::current_schema_version, md.schema_version()); in ATF_TEST_CASE_BODY() 82 store::detail::current_schema_version = 712; in ATF_TEST_CASE_BODY() 87 store::detail::initialize(db)); in ATF_TEST_CASE_BODY() 95 store::detail::current_schema_version = 712; in ATF_TEST_CASE_BODY() 101 store::detail::initialize(db)); in ATF_TEST_CASE_BODY() 110 store::detail::schema_file()); in ATF_TEST_CASE_BODY() 118 store::detail::current_schema_version = 123; in ATF_TEST_CASE_BODY() 120 store::detail::schema_file()); in ATF_TEST_CASE_BODY() [all …]
|
H A D | write_transaction_test.cpp | 108 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 126 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 156 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 175 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 215 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 236 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 261 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 295 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 317 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() 330 set_md_var("require.files", store::detail::schema_file().c_str()); in ATF_TEST_CASE_HEAD() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | ParsedAttr.h | 62 namespace detail { 100 } // namespace detail 128 ParsedAttr, ArgsUnion, detail::AvailabilityData, 129 detail::TypeTagForDatatypeData, ParsedType, detail::PropertyData> { 133 size_t numTrailingObjects(OverloadToken<detail::AvailabilityData>) const { in numTrailingObjects() 137 numTrailingObjects(OverloadToken<detail::TypeTagForDatatypeData>) const { in numTrailingObjects() 143 size_t numTrailingObjects(OverloadToken<detail::PropertyData>) const { in numTrailingObjects() 207 detail::AvailabilityData *getAvailabilityData() { in getAvailabilityData() 208 return getTrailingObjects<detail::AvailabilityData>(); in getAvailabilityData() 210 const detail::AvailabilityData *getAvailabilityData() const { in getAvailabilityData() [all …]
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | directory.cpp | 47 namespace detail = utils::fs::detail; 120 struct utils::fs::detail::directory_iterator::impl : utils::noncopyable { 219 detail::directory_iterator::directory_iterator(std::shared_ptr< impl > pimpl) : in directory_iterator() 226 detail::directory_iterator::~directory_iterator(void) in ~directory_iterator() 237 detail::directory_iterator 238 detail::directory_iterator::new_begin(const path& path) in new_begin() 247 detail::directory_iterator 248 detail::directory_iterator::new_end(void) in new_end() 264 detail::directory_iterator::operator==(const directory_iterator& other) const in operator ==() 277 detail::directory_iterator::operator!=(const directory_iterator& other) const in operator !=() [all …]
|
/freebsd/contrib/kyua/utils/process/ |
H A D | system.cpp | 39 namespace detail = utils::process::detail; 43 int (*detail::syscall_dup2)(const int, const int) = ::dup2; 47 pid_t (*detail::syscall_fork)(void) = ::fork; 51 int (*detail::syscall_open)(const char*, const int, ...) = ::open; 55 int (*detail::syscall_pipe)(int[2]) = ::pipe; 59 pid_t (*detail::syscall_waitpid)(const pid_t, int*, const int) = ::waitpid;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | Formatters.h | 27 namespace detail { 39 } // end namespace detail 41 inline detail::GuidAdapter fmt_guid(StringRef Item) { in fmt_guid() 42 return detail::GuidAdapter(Item); in fmt_guid() 45 inline detail::GuidAdapter fmt_guid(ArrayRef<uint8_t> Item) { in fmt_guid() 46 return detail::GuidAdapter(Item); in fmt_guid()
|
/freebsd/contrib/lib9p/pytest/ |
H A D | client.py | 185 self.detail = None 194 def succ(self, detail=None): argument 197 self.detail = detail 200 def fail(self, detail): argument 203 self.detail = detail 206 def skip(self, detail=None): argument 209 self.detail = detail 226 self.detail = 'connecting' 228 self.detail = None 276 if self.detail: [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | FormatUtil.h | 106 namespace detail { 109 : public FormatAdapter<support::detail::packed_endian_specific_integral< 111 using EndianType = support::detail::packed_endian_specific_integral< 121 } // namespace detail 124 detail::EndianAdapter<T> fmtle(support::detail::packed_endian_specific_integral< 127 return detail::EndianAdapter<T>(std::move(Value)); in fmtle()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
H A D | Transformer.h | 22 namespace detail { 50 } // namespace detail 99 typename detail::type_identity<MetadataT>::type>>)> 111 std::unique_ptr<detail::TransformerImpl> Impl; 114 namespace detail { 162 size_t I = transformer::detail::findSelectedCase(Result, Rule); 195 return transformer::detail::buildMatchers(Rule); 198 } // namespace detail 204 typename detail::type_identity<MetadataT>::type>>)> 206 : Impl(std::make_unique<detail::WithMetadataImpl<MetadataT>>(
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/ADT/ |
H A D | StringMapEntry.h | 18 namespace detail { 28 } // namespace detail 35 if constexpr (detail::CanOutputToOStream<decltype(E.getValue())>::value) { 43 namespace detail { 116 } // namespace detail 121 detail::StringMapEntryMatcher<KeyMatcherT, ValueMatcherT> 123 return detail::StringMapEntryMatcher<KeyMatcherT, ValueMatcherT>(
|