Home
last modified time | relevance | path

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

123

/freebsd-12.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-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DArchHandler.h120 virtual bool isPairedReloc(const normalized::Relocation &) = 0;
138 getReferenceInfo(const normalized::Relocation &reloc,
153 getPairReferenceInfo(const normalized::Relocation &reloc1,
154 const normalized::Relocation &reloc2,
195 normalized::Relocations&) = 0;
305 static RelocPattern relocPattern(const normalized::Relocation &reloc);
307 static normalized::Relocation relocFromPattern(RelocPattern pattern);
309 static void appendReloc(normalized::Relocations &relocs, uint32_t offset,
H A DArchHandler.cpp20 using namespace lld::mach_o::normalized;
89 normalized::Relocation
91 normalized::Relocation result; in relocFromPattern()
116 void ArchHandler::appendReloc(normalized::Relocations &relocs, uint32_t offset, in appendReloc()
119 normalized::Relocation reloc = relocFromPattern(pattern); in appendReloc()
H A DFile.h26 using lld::mach_o::normalized::Section;
227 void setFlags(normalized::FileFlags v) { _flags = v; } in setFlags()
244 auto normFile = normalized::readBinary(_mb, _ctx->arch()); in doParse()
248 if (auto ec = normalized::normalizedObjectToAtoms(this, **normFile, false)) in doParse()
265 typedef llvm::DenseMap<const normalized::Section *,
280 normalized::FileFlags _flags = llvm::MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
334 auto normFile = normalized::readBinary(_mb, _ctx->arch()); in doParse()
338 if (auto ec = normalized::normalizedDylibToAtoms(this, **normFile, false)) in doParse()
H A DArchHandler_x86.cpp20 using namespace lld::mach_o::normalized;
47 bool isPairedReloc(const normalized::Relocation &) override;
89 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
99 getPairReferenceInfo(const normalized::Relocation &reloc1,
100 const normalized::Relocation &reloc2,
122 normalized::Relocations &relocs) override;
349 ArchHandler_x86::getPairReferenceInfo(const normalized::Relocation &reloc1, in getPairReferenceInfo()
350 const normalized::Relocation &reloc2, in getPairReferenceInfo()
559 normalized::Relocations &relocs) { in appendSectionRelocations()
H A DArchHandler_x86_64.cpp20 using namespace lld::mach_o::normalized;
144 bool isPairedReloc(const normalized::Relocation &) override;
146 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
156 getPairReferenceInfo(const normalized::Relocation &reloc1,
157 const normalized::Relocation &reloc2,
183 normalized::Relocations &relocs) override;
232 Reference::KindValue kindFromReloc(const normalized::Relocation &reloc);
447 ArchHandler_x86_64::getPairReferenceInfo(const normalized::Relocation &reloc1, in getPairReferenceInfo()
448 const normalized::Relocation &reloc2, in getPairReferenceInfo()
741 normalized::Relocations &relocs) { in appendSectionRelocations()
H A DWriterMachO.cpp22 using lld::mach_o::normalized::NormalizedFile;
34 normalized::normalizedFromAtoms(file, _ctx); in writeFile()
H A DArchHandler_arm64.cpp21 using namespace lld::mach_o::normalized;
98 bool isPairedReloc(const normalized::Relocation &) override;
138 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
148 getPairReferenceInfo(const normalized::Relocation &reloc1,
149 const normalized::Relocation &reloc2,
175 normalized::Relocations &relocs) override;
474 const normalized::Relocation &reloc1, const normalized::Relocation &reloc2, in getPairReferenceInfo()
779 FindAddressForAtom addressForAtom, normalized::Relocations &relocs) { in appendSectionRelocations()
H A DCompactUnwindPass.cpp109 using normalized::write32; in addHeader()
135 using normalized::write32; in addCommonEncodings()
158 using normalized::write32; in addTopLevelIndexes()
222 using normalized::write32; in addRegularSecondLevelPage()
223 using normalized::write16; in addRegularSecondLevelPage()
425 using normalized::read32; in extractCompactUnwindEntry()
H A DArchHandler_arm.cpp20 using namespace lld::mach_o::normalized;
41 bool isPairedReloc(const normalized::Relocation &) override;
83 llvm::Error getReferenceInfo(const normalized::Relocation &reloc,
93 getPairReferenceInfo(const normalized::Relocation &reloc1,
94 const normalized::Relocation &reloc2,
116 normalized::Relocations &) override;
637 ArchHandler_arm::getPairReferenceInfo(const normalized::Relocation &reloc1, in getPairReferenceInfo()
638 const normalized::Relocation &reloc2, in getPairReferenceInfo()
1189 normalized::Relocations &relocs) { in appendSectionRelocations()
H A DObjCPass.cpp59 normalized::write32(Data.bytes + 4, Data.info.flags, isBig); in ObjCImageInfoAtom()
H A DMachONormalizedFileBinaryReader.cpp55 namespace normalized { namespace
585 add(std::unique_ptr<Reader>(new mach_o::normalized::MachOObjectReader(ctx))); in addSupportMachOObjects()
586 add(std::unique_ptr<Reader>(new mach_o::normalized::MachODylibReader(ctx))); in addSupportMachOObjects()
/freebsd-12.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.stddev.normalize.d.out1 normalized data:
H A Dtst.normalize.d.out1 normalized data:
H A Dtst.fmtnormalize.d.out1 normalized data:
H A Dtst.clearnormalize.d.out15 Final (normalized) aggregation data:
/freebsd-12.1/contrib/llvm/tools/lld/include/lld/ReaderWriter/
H A DYamlContext.h23 namespace normalized {
28 using lld::mach_o::normalized::NormalizedFile;
/freebsd-12.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-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp45 llvm::SmallString<64> normalized(other); in IsMainFile() local
46 llvm::sys::path::native(normalized); in IsMainFile()
47 return main.equals_lower(normalized); in IsMainFile()
/freebsd-12.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-12.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()
/freebsd-12.1/contrib/expat/lib/
H A Dxmltok_impl.c1441 atts[nAtts].normalized = 1; \ in PREFIX()
1485 atts[nAtts].normalized = 0; in PREFIX()
1492 && atts[nAtts].normalized in PREFIX()
1497 atts[nAtts].normalized = 0; in PREFIX()
1505 atts[nAtts].normalized = 0; in PREFIX()
/freebsd-12.1/contrib/gdtoa/
H A DREADME125 double values returned can be expressed as a normalized double
306 and maximum exponent values fpi->emin and fpi->emax for normalized
309 53 bits, with normalized values of the form 1.xxxxx... times 2^(b-1023),
311 b is an unsigned integer in the range 1 <= b <= 2046 for normalized

123