Searched refs:fixups (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dcomp_expand.c74 } fixups[MAX_TC_FIXUPS]; local
194 fixups[octals].ch = UChar(ch);
195 fixups[octals].offset = bufp;
215 char *p = buffer + fixups[octals].offset;
217 *p++ = (char) ((fixups[octals].ch == 127)
219 : (fixups[octals].ch + (int) '@'));
H A Dcaptoinfo.c612 #define octal_fixup(n, c) fixups[n].ch = ((fixups[n].ch << 3) | ((c) - '0'))
635 } fixups[MAX_TC_FIXUPS]; local
724 fixups[myfix].ch = 0;
725 fixups[myfix].offset = (int) (bufptr
732 fixups[myfix].ch <<= 3;
733 fixups[myfix].ch |= (xx2 - '0');
740 fixups[myfix].ch <<= 3;
741 fixups[myfix].ch |= (str[n] - '0');
743 if (fixups[myfi
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRFixupKinds.h17 /// The set of supported fixups.
133 namespace fixups { namespace in namespace:llvm::AVR
143 } // end of namespace fixups
H A DAVRMCCodeEmitter.cpp109 AVR::fixups::adjustBranchTarget(target);
193 // we shouldn't perform any more fixups. Without this check, we would
224 AVR::fixups::adjustBranchTarget(Target);
H A DAVRAsmBackend.cpp84 AVR::fixups::adjustBranchTarget(Value);
95 AVR::fixups::adjustBranchTarget(Value);
425 // NOTE: Many AVR fixups work on sets of non-contignous bits. We work around
/freebsd-current/sys/contrib/libfdt/
H A Dfdt_overlay.c250 * @fixup_node: Node offset of the matching local fixups node
371 int fixups; local
373 fixups = fdt_path_offset(fdto, "/__local_fixups__");
374 if (fixups < 0) {
376 if (fixups == -FDT_ERR_NOTFOUND)
379 return fixups;
385 return overlay_update_local_node_references(fdto, 0, fixups,
458 * @property: Property offset in the overlay holding the list of fixups
559 /* We can have overlays without any fixups */
/freebsd-current/usr.bin/dtc/
H A Dfdt.cc1280 fixups.push_back({path, p, v});
1313 fixups.clear();
1401 for (auto &i : fixups)
1421 assert(sorted_phandles.size() == fixups.size());
2158 // Create the fixups entry. This is of the form:
2200 for (auto &i : fixups)
2264 // We've iterated over all fixups, but only emit the
H A Dfdt.hh813 std::vector<fixup> fixups; member in class:dtc::fdt::device_tree

Completed in 86 milliseconds