Home
last modified time | relevance | path

Searched refs:normalized (Results 1 – 25 of 51) sorted by relevance

123

/freebsd-13.1/sbin/nvmecontrol/modules/intel/
H A Dintel.c129 uint8_t normalized; in print_intel_add_smart() local
161 normalized = walker[3]; in print_intel_add_smart()
167 printf("%-32s: %3d min: %u max: %u ave: %u\n", name, normalized, in print_intel_add_smart()
171 printf("%-32s: %3d %.3f%%\n", name, normalized, raw / 1024.0); in print_intel_add_smart()
174 printf("%-32s: %3d %d%% %d times\n", name, normalized, walker[5], le32dec(walker+6)); in print_intel_add_smart()
177 printf("%-32s: %3d %ju\n", name, normalized, (uintmax_t)raw); in print_intel_add_smart()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DArchHandler.h119 virtual bool isPairedReloc(const normalized::Relocation &) = 0;
137 getReferenceInfo(const normalized::Relocation &reloc,
152 getPairReferenceInfo(const normalized::Relocation &reloc1,
153 const normalized::Relocation &reloc2,
194 normalized::Relocations&) = 0;
304 static RelocPattern relocPattern(const normalized::Relocation &reloc);
306 static normalized::Relocation relocFromPattern(RelocPattern pattern);
308 static void appendReloc(normalized::Relocations &relocs, uint32_t offset,
H A DArchHandler.cpp19 using namespace lld::mach_o::normalized;
88 normalized::Relocation
90 normalized::Relocation result; in relocFromPattern()
115 void ArchHandler::appendReloc(normalized::Relocations &relocs, uint32_t offset, in appendReloc()
118 normalized::Relocation reloc = relocFromPattern(pattern); in appendReloc()
H A DFile.h27 using lld::mach_o::normalized::Section;
228 void setFlags(normalized::FileFlags v) { _flags = v; } in setFlags()
245 auto normFile = normalized::readBinary(_mb, _ctx->arch()); in doParse()
249 if (auto ec = normalized::normalizedObjectToAtoms(this, **normFile, false)) in doParse()
266 typedef llvm::DenseMap<const normalized::Section *,
281 normalized::FileFlags _flags = llvm::MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
336 auto normFile = normalized::readBinary(_mb, _ctx->arch()); in doParse()
340 if (auto ec = normalized::normalizedDylibToAtoms(this, **normFile, false)) in doParse()
H A DArchHandler_x86.cpp19 using namespace lld::mach_o::normalized;
46 bool isPairedReloc(const normalized::Relocation &) override;
88 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
98 getPairReferenceInfo(const normalized::Relocation &reloc1,
99 const normalized::Relocation &reloc2,
121 normalized::Relocations &relocs) override;
348 ArchHandler_x86::getPairReferenceInfo(const normalized::Relocation &reloc1, in getPairReferenceInfo()
349 const normalized::Relocation &reloc2, in getPairReferenceInfo()
558 normalized::Relocations &relocs) { in appendSectionRelocations()
H A DWriterMachO.cpp21 using lld::mach_o::normalized::NormalizedFile;
33 normalized::normalizedFromAtoms(file, _ctx); in writeFile()
H A DArchHandler_x86_64.cpp19 using namespace lld::mach_o::normalized;
143 bool isPairedReloc(const normalized::Relocation &) override;
145 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
155 getPairReferenceInfo(const normalized::Relocation &reloc1,
156 const normalized::Relocation &reloc2,
182 normalized::Relocations &relocs) override;
248 Reference::KindValue kindFromReloc(const normalized::Relocation &reloc);
473 ArchHandler_x86_64::getPairReferenceInfo(const normalized::Relocation &reloc1, in getPairReferenceInfo()
474 const normalized::Relocation &reloc2, in getPairReferenceInfo()
771 normalized::Relocations &relocs) { in appendSectionRelocations()
H A DArchHandler_arm64.cpp20 using namespace lld::mach_o::normalized;
97 bool isPairedReloc(const normalized::Relocation &) override;
137 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
147 getPairReferenceInfo(const normalized::Relocation &reloc1,
148 const normalized::Relocation &reloc2,
174 normalized::Relocations &relocs) override;
473 const normalized::Relocation &reloc1, const normalized::Relocation &reloc2, in getPairReferenceInfo()
778 FindAddressForAtom addressForAtom, normalized::Relocations &relocs) { in appendSectionRelocations()
H A DCompactUnwindPass.cpp108 using normalized::write32; in addHeader()
134 using normalized::write32; in addCommonEncodings()
157 using normalized::write32; in addTopLevelIndexes()
221 using normalized::write32; in addRegularSecondLevelPage()
222 using normalized::write16; in addRegularSecondLevelPage()
421 using normalized::read32; in extractCompactUnwindEntry()
H A DMachONormalizedFileToAtoms.cpp40 using namespace lld::mach_o::normalized;
227 const std::vector<lld::mach_o::normalized::Symbol> &inSymbols, in appendSymbolsInSection()
229 SmallVector<const lld::mach_o::normalized::Symbol *, 64> &outSyms) { in appendSymbolsInSection()
230 for (const lld::mach_o::normalized::Symbol &sym : inSymbols) { in appendSymbolsInSection()
290 SmallVector<const lld::mach_o::normalized::Symbol *, 64> symbols; in processSymboledSection()
296 [](const lld::mach_o::normalized::Symbol *lhs, in processSymboledSection()
297 const lld::mach_o::normalized::Symbol *rhs) -> bool { in processSymboledSection()
344 const lld::mach_o::normalized::Symbol *lastSym = nullptr; in processSymboledSection()
345 for (const lld::mach_o::normalized::Symbol *sym : symbols) { in processSymboledSection()
555 const lld::mach_o::normalized::Symbol *sym = nullptr; in convertRelocs()
[all …]
H A DArchHandler_arm.cpp19 using namespace lld::mach_o::normalized;
40 bool isPairedReloc(const normalized::Relocation &) override;
82 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
92 getPairReferenceInfo(const normalized::Relocation &reloc1,
93 const normalized::Relocation &reloc2,
115 normalized::Relocations &) override;
636 ArchHandler_arm::getPairReferenceInfo(const normalized::Relocation &reloc1, in getPairReferenceInfo()
637 const normalized::Relocation &reloc2, in getPairReferenceInfo()
1188 normalized::Relocations &relocs) { in appendSectionRelocations()
H A DObjCPass.cpp58 normalized::write32(Data.bytes + 4, Data.info.flags, isBig); in ObjCImageInfoAtom()
H A DMachONormalizedFileBinaryReader.cpp54 namespace normalized { namespace
604 add(std::unique_ptr<Reader>(new mach_o::normalized::MachOObjectReader(ctx))); in addSupportMachOObjects()
605 add(std::unique_ptr<Reader>(new mach_o::normalized::MachODylibReader(ctx))); in addSupportMachOObjects()
606 add(std::unique_ptr<Reader>(new mach_o::normalized::MachOTAPIReader(ctx))); in addSupportMachOObjects()
/freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.multinormalize.d.out1 normalized data #1:
9 normalized data #2:
H A Dtst.fmtnormalize.d.out1 normalized data:
H A Dtst.stddev.normalize.d.out1 normalized data:
H A Dtst.normalize.d.out1 normalized data:
H A Dtst.clearnormalize.d.out15 Final (normalized) aggregation data:
/freebsd-13.1/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DYamlContext.h22 namespace normalized {
27 using lld::mach_o::normalized::NormalizedFile;
/freebsd-13.1/contrib/subversion/subversion/libsvn_fs_x/
H A Dcaching.c53 svn_stringbuf_t *normalized = svn_stringbuf_create_ensure(len, in normalize_key_part() local
61 case ':': svn_stringbuf_appendbytes(normalized, "%_", 2); in normalize_key_part()
63 case '%': svn_stringbuf_appendbytes(normalized, "%%", 2); in normalize_key_part()
65 default : svn_stringbuf_appendbyte(normalized, c); in normalize_key_part()
69 return normalized->data; in normalize_key_part()
H A Ddag_cache.c435 svn_string_t normalized; in svn_fs_x__update_dag_cache() local
439 normalize_path(&normalized, path)); in svn_fs_x__update_dag_cache()
1076 svn_string_t normalized; in svn_fs_x__get_temp_dag_node() local
1079 *node_p = dag_node_cache_get(root, normalize_path(&normalized, path)); in svn_fs_x__get_temp_dag_node()
1083 SVN_ERR(walk_dag_path(node_p, root, &normalized, scratch_pool)); in svn_fs_x__get_temp_dag_node()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp44 llvm::SmallString<64> normalized(other); in IsMainFile() local
45 llvm::sys::path::native(normalized); in IsMainFile()
46 return main.equals_insensitive(normalized); in IsMainFile()
/freebsd-13.1/contrib/subversion/subversion/libsvn_fs_fs/
H A Dcaching.c51 svn_stringbuf_t *normalized = svn_stringbuf_create_ensure(len, pool); in normalize_key_part() local
58 case ':': svn_stringbuf_appendbytes(normalized, "%_", 2); in normalize_key_part()
60 case '%': svn_stringbuf_appendbytes(normalized, "%%", 2); in normalize_key_part()
62 default : svn_stringbuf_appendbyte(normalized, c); in normalize_key_part()
66 return normalized->data; in normalize_key_part()
/freebsd-13.1/sys/contrib/device-tree/Bindings/arm/
H A Dcpu-capacity.txt39 DMIPS/MHz are obtained. Such values are then normalized w.r.t. the highest
47 representing CPU capacity expressed in normalized DMIPS/MHz. At boot time, the
55 mhz values (normalized w.r.t. the highest value found while parsing the DT).
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dutf8proc.c256 const char *normalized; in svn_utf__fuzzy_glob_match() local
263 err = svn_utf__xfrm(&normalized, str, strlen(str), TRUE, TRUE, buf); in svn_utf__fuzzy_glob_match()
274 if (apr_fnmatch(pattern, normalized, 0) == APR_SUCCESS) in svn_utf__fuzzy_glob_match()

123