Home
last modified time | relevance | path

Searched refs:abbrev (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/contrib/elftoolchain/libdwarf/
H A Ddwarf_abbrev.c62 dwarf_get_abbrev_tag(Dwarf_Abbrev abbrev, Dwarf_Half *return_tag, in dwarf_get_abbrev_tag() argument
66 if (abbrev == NULL || return_tag == NULL) { in dwarf_get_abbrev_tag()
71 *return_tag = (Dwarf_Half) abbrev->ab_tag; in dwarf_get_abbrev_tag()
77 dwarf_get_abbrev_code(Dwarf_Abbrev abbrev, Dwarf_Unsigned *return_code, in dwarf_get_abbrev_code() argument
81 if (abbrev == NULL || return_code == NULL) { in dwarf_get_abbrev_code()
86 *return_code = abbrev->ab_entry; in dwarf_get_abbrev_code()
92 dwarf_get_abbrev_children_flag(Dwarf_Abbrev abbrev, Dwarf_Signed *return_flag, in dwarf_get_abbrev_children_flag() argument
96 if (abbrev == NULL || return_flag == NULL) { in dwarf_get_abbrev_children_flag()
101 *return_flag = (Dwarf_Signed) abbrev->ab_children; in dwarf_get_abbrev_children_flag()
107 dwarf_get_abbrev_entry(Dwarf_Abbrev abbrev, Dwarf_Signed ndx, in dwarf_get_abbrev_entry() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h66 static void emitOp(llvm::BitCodeAbbrev &abbrev) { in emitOp() argument
67 abbrev.Add(llvm::BitCodeAbbrevOp(Value)); in emitOp()
82 static void emitOp(llvm::BitCodeAbbrev &abbrev) { in emitOp() argument
83 abbrev.Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Fixed, Width)); in emitOp()
107 static void emitOp(llvm::BitCodeAbbrev &abbrev) { in emitOp() argument
108 abbrev.Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, Width)); in emitOp()
124 static void emitOp(llvm::BitCodeAbbrev &abbrev) { in emitOp() argument
125 abbrev.Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Char6)); in emitOp()
142 static void emitOp(llvm::BitCodeAbbrev &abbrev) { in emitOp() argument
143 abbrev.Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob)); in emitOp()
[all …]
/freebsd/crypto/openssh/
H A Dlogintest.c225 char full[17], strip[9], abbrev[5]; in testLineName() local
229 memset(abbrev, '\0', sizeof(abbrev)); in testLineName()
233 line_abbrevname(abbrev, full, sizeof(abbrev)-1); in testLineName()
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev); in testLineName()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dexception.h66 __info.first.abbrev, in __create_message()
68 __info.second.abbrev, in __create_message()
110 __info.first.abbrev, in __create_message()
112 __info.second.abbrev, in __create_message()
H A Dsys_info.h40 string abbrev; member
H A Dostream.h275 std::basic_string<_CharT> __abbrev{__info.abbrev.begin(), __info.abbrev.end()};
H A Dformatter.h230 return {__value.abbrev, __value.offset}; in __convert_to_time_zone()
/freebsd/usr.sbin/fifolog/lib/
H A Dgetdate.y664 int abbrev; in LookupWord() local
682 abbrev = 1; in LookupWord()
684 abbrev = 1; in LookupWord()
688 abbrev = 0; in LookupWord()
691 if (abbrev) { in LookupWord()
/freebsd/usr.bin/find/
H A Dgetdate.y661 int abbrev; in LookupWord() local
679 abbrev = 1; in LookupWord()
681 abbrev = 1; in LookupWord()
685 abbrev = 0; in LookupWord()
688 if (abbrev) { in LookupWord()
/freebsd/contrib/ntp/libntp/
H A Dclocktypes.c119 return (clk->abbrev); in clockname()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_getdate.c516 size_t abbrev;
878 size_t abbrev = tp->abbrev; in nexttoken()
879 if (abbrev == 0) in nexttoken()
880 abbrev = strlen(tp->name); in nexttoken()
881 if (strlen(buff) >= abbrev in nexttoken()
520 size_t abbrev; global() member
882 size_t abbrev = tp->abbrev; nexttoken() local
/freebsd/release/
H A DMakefile.inc116 GITBRANCH!= ${GIT_CMD} -C ${.CURDIR} rev-parse --abbrev-ref HEAD 2>/dev/null | sed -e 's/\^\///'
/freebsd/contrib/libcbor/
H A Drelease.sh70 git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)
/freebsd/contrib/ntp/sntp/libevent/cmake/
H A DVersionViaGit.cmake34 ${GIT_EXECUTABLE} describe --abbrev=0 --always
/freebsd/contrib/libevent/cmake/
H A DVersionViaGit.cmake34 ${GIT_EXECUTABLE} describe --abbrev=0 --always
/freebsd/contrib/nvi/common/
H A Doptions.c248 typedef struct abbrev { struct
253 static OABBREV const abbrev[] = { variable
1052 if ((ap = bsearch(&atmp, abbrev, sizeof(abbrev) / sizeof(OABBREV) - 1, in opts_search()
/freebsd/contrib/ntp/include/
H A Dntp_refclock.h31 const char *abbrev; /* short description */ member
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtime_zone.cpp61 …x.out(), "[{}, {}) {:%Q%q} {:%Q%q} {}", info.begin, info.end, info.offset, info.save, info.abbrev); in format()
718 …if (__current.offset != __next.offset || __current.abbrev != __next.abbrev || __current.save != __… in __merge_continuation()
/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp2959 Abbrev abbrev; in computeHdrAndAbbrevTable() local
2962 abbrev.code = oldAbbrev.Code; in computeHdrAndAbbrevTable()
2963 abbrev.tag = oldAbbrev.Tag; in computeHdrAndAbbrevTable()
2968 abbrev.attributes.push_back({a.Index, a.Form}); in computeHdrAndAbbrevTable()
2971 abbrev.attributes.push_back(cuAttr); in computeHdrAndAbbrevTable()
2976 abbrev.Profile(id); in computeHdrAndAbbrevTable()
2984 new (abbrevAlloc.Allocate()) Abbrev(std::move(abbrev)); in computeHdrAndAbbrevTable()
2997 for (Abbrev *abbrev : abbrevTable) { in computeHdrAndAbbrevTable()
2998 encodeULEB128(abbrev->code, os); in computeHdrAndAbbrevTable()
2999 encodeULEB128(abbrev->tag, os); in computeHdrAndAbbrevTable()
[all …]
/freebsd/contrib/tzcode/
H A Dzdump.c480 static char * abbrev; in main() local
630 ab = saveabbr(&abbrev, &abbrevsize, &tm); in main()
662 ab = saveabbr(&abbrev, &abbrevsize, &newtm); in main()
H A DMakefile679 --abbrev=7 --dirty) || \
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.qtip.js148 …ASS_DEFAULT, options.style.classes, NAMESPACE + '-pos-' + options.position.my.abbrev() ].join(' '),
932 C.abbrev = function() { function
2112 isCenter = corner.abbrev() === 'c',
2153 return tips[ corner.abbrev() ];
2161 if( (this.enabled = !!this.corner && this.corner.abbrev() !== 'c') ) {
2648 if(newMy && cache.lastClass !== (newClass = NAMESPACE + '-pos-' + newMy.abbrev())) {
/freebsd/contrib/tzdata/
H A DMakefile681 --abbrev=7 --dirty) || \
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp624 llvm::DWARFDebugAbbrev *abbrev = DebugAbbrev(); in CalculateAbilities() local
625 std::set<dw_form_t> unsupported_forms = GetUnsupportedForms(abbrev); in CalculateAbilities()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dchrono737 string abbrev;

12