Searched refs:normalized (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DYamlContext.h22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
/freebsd-11-stable/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;
303 /// Extract RelocPattern from normalized mach-o relocation.
304 static RelocPattern relocPattern(const normalized::Relocation &reloc);
305 /// Create normalized Relocation initialized from pattern.
306 static normalized::Relocation relocFromPattern(RelocPattern pattern);
308 static void appendReloc(normalized
[all...]
H A DWriterMachO.cpp21 using lld::mach_o::normalized::NormalizedFile;
31 // Construct empty normalized file from atoms.
33 normalized::normalizedFromAtoms(file, _ctx);
37 // For testing, write out yaml form of normalized file.
44 // Write normalized file as mach-o binary.
H A DArchHandler.cpp19 using namespace lld::mach_o::normalized;
88 normalized::Relocation
90 normalized::Relocation result;
115 void ArchHandler::appendReloc(normalized::Relocations &relocs, uint32_t offset,
118 normalized::Relocation reloc = relocFromPattern(pattern);
H A DFile.h25 using lld::mach_o::normalized::Section;
226 void setFlags(normalized::FileFlags v) { _flags = v; }
242 // Convert binary file to normalized mach-o.
243 auto normFile = normalized::readBinary(_mb, _ctx->arch());
246 // Convert normalized mach-o to atoms.
247 if (auto ec = normalized::normalizedObjectToAtoms(this, **normFile, false))
264 typedef llvm::DenseMap<const normalized::Section *,
279 normalized::FileFlags _flags = llvm::MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
332 // Convert binary file to normalized mach-o.
333 auto normFile = normalized
[all...]
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,
349 const normalized::Relocation &reloc2,
558 normalized::Relocations &relocs) {
H A DObjCPass.cpp58 normalized::write32(Data.bytes + 4, Data.info.flags, isBig);
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,
474 const normalized::Relocation &reloc2,
771 normalized
[all...]
H A DCompactUnwindPass.cpp108 using normalized::write32;
134 using normalized::write32;
157 using normalized::write32;
221 using normalized::write32;
222 using normalized::write16;
421 using normalized::read32;
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,
778 FindAddressForAtom addressForAtom, normalized::Relocations &relocs) {
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,
637 const normalized::Relocation &reloc2,
1188 normalized::Relocations &relocs) {
H A DMachONormalizedFile.h10 /// \file These data structures comprise the "normalized" view of
11 /// mach-o object files. The normalized view is an in-memory only data structure
14 /// The normalized view easily converts to and from YAML using YAML I/O.
16 /// The normalized view converts to and from binary mach-o object files using
19 /// The normalized view converts to and from lld::Atoms using the
31 /// | normalized | <-> | yaml |
74 namespace normalized { namespace in namespace:lld::mach_o
79 /// normalized form has the union of all possible fields.
111 /// Mach-O has a 32-bit and 64-bit section record. This normalized form
136 /// type and scope and mixed in the same n_type field. This normalized for
[all...]
H A DMachONormalizedFileBinaryUtils.h26 namespace normalized { namespace in namespace:lld::mach_o
209 } // namespace normalized
H A DMachONormalizedFileBinaryReader.cpp11 /// mach-o on-disk binary format to in-memory normalized mach-o.
20 /// | normalized |
54 namespace normalized { namespace in namespace:lld::mach_o
202 /// Reads a mach-o file and produces an in-memory normalized view.
383 // Convert each nlist_64 to a lld::mach_o::normalized::Symbol.
415 // Convert each nlist to a lld::mach_o::normalized::Symbol.
508 // If any exports, extract and add to normalized exportInfo vector.
579 } // namespace normalized
584 add(std::unique_ptr<Reader>(new mach_o::normalized::MachOObjectReader(ctx)));
585 add(std::unique_ptr<Reader>(new mach_o::normalized
[all...]
H A DMachONormalizedFileYAML.cpp11 /// provide the convert between YAML and the normalized mach-o (NM).
14 /// | normalized | <-> | yaml |
38 using namespace lld::mach_o::normalized;
760 // Step 1: parse yaml into normalized mach-o struct.
767 // Step 2: parse normalized mach-o struct into atoms.
798 namespace normalized { namespace in namespace:lld::mach_o
800 /// Parses a yaml encoded mach-o file to produce an in-memory normalized view.
824 /// Writes a yaml encoded mach-o files from an in-memory normalized view.
840 } // namespace normalized
H A DMachOLinkingContext.cpp160 return mach_o::normalized::isThinObjectFile(path, arch);
165 return mach_o::normalized::sliceFromFatFile(mb, _arch, offset, size);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp44 llvm::SmallString<64> normalized(other);
45 llvm::sys::path::native(normalized);
46 return main.equals_lower(normalized);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dcaching.c53 svn_stringbuf_t *normalized = svn_stringbuf_create_ensure(len, local
61 case ':': svn_stringbuf_appendbytes(normalized, "%_", 2);
63 case '%': svn_stringbuf_appendbytes(normalized, "%%", 2);
65 default : svn_stringbuf_appendbyte(normalized, c);
69 return normalized->data;
H A Ddag_cache.c77 /* DAG caching uses "normalized" paths - which are a relaxed form of
93 /* Set *RESULT to a normalized version of PATH without actually copying any
128 (normalized does not imply canonical). */
155 /* Split the normalized PATH into its last segment the corresponding parent
173 /* Find the start of the last segment. Note that normalized paths never
437 svn_string_t normalized;
441 normalize_path(&normalized, path));
1079 svn_string_t normalized;
1082 *node_p = dag_node_cache_get(root, normalize_path(&normalized, path));
1086 SVN_ERR(walk_dag_path(node_p, root, &normalized, scratch_poo
435 svn_string_t normalized; local
1076 svn_string_t normalized; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dcaching.c51 svn_stringbuf_t *normalized = svn_stringbuf_create_ensure(len, pool); local
58 case ':': svn_stringbuf_appendbytes(normalized, "%_", 2);
60 case '%': svn_stringbuf_appendbytes(normalized, "%%", 2);
62 default : svn_stringbuf_appendbyte(normalized, c);
66 return normalized->data;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dutf8proc.c258 const char *normalized;
265 err = svn_utf__xfrm(&normalized, str, strlen(str), TRUE, TRUE, buf);
276 if (apr_fnmatch(pattern, normalized, 0) == APR_SUCCESS)
256 const char *normalized; local
/freebsd-11-stable/sbin/nvmecontrol/
H A Dlogpage.c348 uint8_t normalized; local
380 normalized = walker[3];
386 printf("%-32s: %3d min: %u max: %u ave: %u\n", name, normalized,
390 printf("%-32s: %3d %.3f%%\n", name, normalized, raw / 1024.0);
393 printf("%-32s: %3d %d%% %d times\n", name, normalized, walker[5], le32dec(walker+6));
396 printf("%-32s: %3d %ju\n", name, normalized, (uintmax_t)raw);
/freebsd-11-stable/contrib/expat/lib/
H A Dxmltok.h152 char normalized; member in struct:__anon22
H A Dxmltok_impl.c1508 atts[nAtts].normalized = 1; \
1554 atts[nAtts].normalized = 0;
1559 else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized
1564 atts[nAtts].normalized = 0;
1573 atts[nAtts].normalized = 0;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Ddump.c1614 /* Check for normalized name clashes, but only if this is actually a
1724 /* Check for normalized name clashes, but only if this is actually a
2300 apr_hash_t *normalized;
2316 found = svn_hash_gets(cb->normalized, name);
2318 svn_hash_sets(cb->normalized, apr_pstrdup(cb->buffer.pool, name),
2328 svn_hash_sets(cb->normalized, apr_pstrdup(cb->buffer.pool, name),
2356 check_baton.normalized = apr_hash_make(pool);
2294 apr_hash_t *normalized; member in struct:check_name_collision_baton

Completed in 247 milliseconds

12