| /src/usr.bin/man/ |
| manconf.h | 41 /* TAG: top-level structure (one per section/reserved word) */ 48 } TAG; 50 /* ENTRY: each TAG has one or more ENTRY strings linked off of it */ 58 int addentry(TAG *, const char *, int); 60 TAG *gettag(const char *, int);
|
| /src/tests/usr.bin/xlint/lint1/ |
| gcc_attribute_enum.c | 16 enum __attribute__(()) __attribute__((__deprecated__)) tag; 44 enum tag { enum 45 TAG
|
| /src/usr.bin/make/unit-tests/ |
| varcmd.mk | 23 TAG= ${.TARGETS} 25 TAG?= default 30 @echo "${TAG} FU=<v>${FU}</v> FOO=<v>${FOO}</v> VAR=<v>${VAR}</v>" 68 @echo '${TAG} v=${V} k=${K}'
|
| /src/external/gpl3/binutils/dist/include/elf/ |
| tic6x.h | 141 #define TAG(tag, value) tag = value, 143 #undef TAG
|
| /src/external/gpl3/binutils.old/dist/include/elf/ |
| tic6x.h | 141 #define TAG(tag, value) tag = value, 143 #undef TAG
|
| /src/external/gpl3/gdb.old/dist/include/elf/ |
| tic6x.h | 141 #define TAG(tag, value) tag = value, 143 #undef TAG
|
| /src/external/gpl3/gdb/dist/include/elf/ |
| tic6x.h | 141 #define TAG(tag, value) tag = value, 143 #undef TAG
|
| /src/external/bsd/nvi/dist/common/ |
| common.h | 54 typedef struct _tag TAG;
|
| /src/external/bsd/tre/dist/lib/ |
| tre-ast.h | 28 #define TAG -3 /* Tag leaf. */ 35 #define IS_TAG(x) ((x)->code_min == TAG)
|
| /src/external/gpl2/texinfo/dist/info/ |
| nodes.h | 73 #define TAGS_TABLE_END_LABEL "\nEnd Tag Table" 74 #define TAGS_TABLE_BEG_LABEL "Tag Table:\n" 85 info file is called a "tag". For split files, the tag pointer is 92 char *nodename; /* The node pointed to by this tag. */ 95 } TAG; 111 TAG **tags; /* If non-null, the indirect tags table. */ 151 various slots. This can also be used to rebuild a tag or node table. */
|
| /src/external/mpl/bind/dist/lib/dns/ |
| dst_parse.h | 48 #define TAG_ALG(tag) ((unsigned int)(tag) >> TAG_SHIFT) 49 #define TAG(alg, off) (((alg) << TAG_SHIFT) + (off)) 100 unsigned short tag; member in struct:dst_private_element
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| dst_parse.h | 49 #define TAG_ALG(tag) ((unsigned int)(tag) >> TAG_SHIFT) 50 #define TAG(alg, off) (((alg) << TAG_SHIFT) + (off)) 107 unsigned short tag; member in struct:dst_private_element
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| auxv.c | 470 #define TAG(tag, text, kind) \ 471 case tag: name = #tag; description = text; format = kind; break 472 TAG (AT_NULL, _("End of vector"), AUXV_FORMAT_HEX); 473 TAG (AT_IGNORE, _("Entry should be ignored"), AUXV_FORMAT_HEX); 474 TAG (AT_EXECFD, _("File descriptor of program"), AUXV_FORMAT_DEC); 475 TAG (AT_PHDR, _("Program headers for program"), AUXV_FORMAT_HEX); 476 TAG (AT_PHENT, _("Size of program header entry"), AUXV_FORMAT_DEC); 477 TAG (AT_PHNUM, _("Number of program headers"), AUXV_FORMAT_DEC) [all...] |
| netbsd-tdep.c | 393 #define _TAGNAME(tag) #tag 394 #define TAGNAME(tag) _TAGNAME(AT_##tag) 395 #define TAG(tag, text, kind) \ 396 case AT_NETBSD_##tag: name = TAGNAME(tag); description = text; format = kind; break 397 TAG (STACKBASE, _("Base address of main thread"), AUXV_FORMAT_HEX);
|
| fbsd-tdep.c | 1558 #define _TAGNAME(tag) #tag 1559 #define TAGNAME(tag) _TAGNAME(AT_##tag) 1560 #define TAG(tag, text, kind) \ 1561 case AT_FREEBSD_##tag: name = TAGNAME(tag); description = text; format = kind; break 1562 TAG (EXECPATH, _("Executable path"), AUXV_FORMAT_STR); 1563 TAG (CANARY, _("Canary for SSP"), AUXV_FORMAT_HEX) [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| auxv.c | 470 #define TAG(tag, text, kind) \ 471 case tag: name = #tag; description = text; format = kind; break 472 TAG (AT_NULL, _("End of vector"), AUXV_FORMAT_HEX); 473 TAG (AT_IGNORE, _("Entry should be ignored"), AUXV_FORMAT_HEX); 474 TAG (AT_EXECFD, _("File descriptor of program"), AUXV_FORMAT_DEC); 475 TAG (AT_PHDR, _("Program headers for program"), AUXV_FORMAT_HEX); 476 TAG (AT_PHENT, _("Size of program header entry"), AUXV_FORMAT_DEC); 477 TAG (AT_PHNUM, _("Number of program headers"), AUXV_FORMAT_DEC) [all...] |
| netbsd-tdep.c | 393 #define _TAGNAME(tag) #tag 394 #define TAGNAME(tag) _TAGNAME(AT_##tag) 395 #define TAG(tag, text, kind) \ 396 case AT_NETBSD_##tag: name = TAGNAME(tag); description = text; format = kind; break 397 TAG (STACKBASE, _("Base address of main thread"), AUXV_FORMAT_HEX);
|
| fbsd-tdep.c | 1546 #define _TAGNAME(tag) #tag 1547 #define TAGNAME(tag) _TAGNAME(AT_##tag) 1548 #define TAG(tag, text, kind) \ 1549 case AT_FREEBSD_##tag: name = TAGNAME(tag); description = text; format = kind; break 1550 TAG (EXECPATH, _("Executable path"), AUXV_FORMAT_STR); 1551 TAG (CANARY, _("Canary for SSP"), AUXV_FORMAT_HEX) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| TestRunner.py | 1237 TAG: A keyword taking no value. Ex 'END.' 1245 TAG = 0 1254 return { ParserKind.TAG: ['.'], 1264 return { ParserKind.TAG: 'TAG', 1313 elif kind == ParserKind.TAG: 1335 """A helper for parsing TAG type keywords""" 1427 IntegratedTestKeywordParser('END.', ParserKind.TAG)
|
| /src/usr.sbin/fwctl/ |
| fwcontrol.c | 677 isoreq.tag = (ich >> 6) & 3; 1050 #define TAG (1<<6) 1054 recvfn = detect_recv_fn(fd, TAG | CHANNEL); 1064 (*recvfn)(fd, recv_data, TAG | CHANNEL, -1); 1072 dvsend(fd, send_data, TAG | CHANNEL, -1);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| OpenMPOpt.cpp | 80 static constexpr auto TAG = "[" DEBUG_TYPE "]"; 411 dbgs() << TAG << RFI.Name << (RFI.Declaration ? "" : " not") \ 414 dbgs() << TAG << "-> got " << NumUses << " uses in " \ 538 LLVM_DEBUG(dbgs() << TAG << "Run on SCC with " << SCC.size() 760 LLVM_DEBUG(dbgs() << TAG << "After sequential inlining " << *OuterFn 793 LLVM_DEBUG(dbgs() << TAG << "Merge " << MergableCIs.size() 985 LLVM_DEBUG(dbgs() << TAG << "Skip parallel region " << SkipI 995 LLVM_DEBUG(dbgs() << TAG << "Found " << MergableCIs.size() 1049 LLVM_DEBUG(dbgs() << TAG << "Delete read-only parallel region in " 1097 LLVM_DEBUG(dbgs() << TAG << "Found " << GTIdArgs.size( [all...] |
| /src/external/gpl2/xcvs/dist/src/ |
| cvs.h | 123 #define CVSADM_TAG getCVSDir("/Tag.") 140 #define CVSADM_TAG getCVSDir("/Tag") 317 char *tag; member in struct:entnode 326 CHECKOUT, TAG, PATCH, EXPORT, MISC 335 /* These fields pass sticky tag information from Entries_Open() to 338 char *tag; member in struct:stickydirtag 481 access_allowed (const char *file, const char *repos, const char *tag, 493 void parse_tagdate (char **tag, char **date, const char *input); 579 const char *repository, const char *tag, const char *date, 607 void WriteTag (const char *dir, const char *tag, const char *date 777 char *tag; member in struct:vers_ts 844 char *tag; member in struct:logfile_info [all...] |
| /src/external/gpl3/binutils/dist/gas/config/ |
| tc-tic6x.c | 691 obj_attr_tag_t tag = obj_attr_process_attribute (OBJ_ATTR_PROC); local 693 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES) 694 tic6x_attributes_set_explicitly[tag] = true; 700 obj_attr_tag_t tag; member in struct:__anon10127 705 #define TAG(tag, value) { #tag, tag }, 707 #undef TAG 719 return tic6x_attributes[i].tag; [all...] |
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| tc-tic6x.c | 691 int tag = obj_elf_vendor_attribute (OBJ_ATTR_PROC); local 693 if (tag < NUM_KNOWN_OBJ_ATTRIBUTES) 694 tic6x_attributes_set_explicitly[tag] = true; 700 int tag; member in struct:__anon11599 705 #define TAG(tag, value) { #tag, tag }, 707 #undef TAG 719 return tic6x_attributes[i].tag; [all...] |
| /src/external/mit/expat/dist/lib/ |
| xmlparse.c | 295 /* TAG represents an open element. 306 TAG objects in a free list. 308 typedef struct tag { struct 309 struct tag *parent; /* parent of this element */ 316 } TAG; 746 TAG *m_tagStack; 747 TAG *m_freeTagList; 1335 TAG *tStk; 1346 TAG *tag = tStk local 2762 TAG *tag = parser->m_tagStack; local 3103 TAG *tag; local 3221 TAG *tag = parser->m_tagStack; local [all...] |