Home
last modified time | relevance | path

Searched refs:WS (Results 1 – 25 of 118) sorted by relevance

12345

/netbsd-src/external/bsd/flex/dist/tests/
H A Dbasic_nr.l41 WS [[:blank:]]
44 ^{IDENT}+{WS}*={WS}*(true|false){WS}*\r?\n { return 100;}
45 ^{IDENT}+{WS}*={WS}*\"[^\"\n\r]*\"{WS}*\r?\n { return 101;}
46 ^{IDENT}+{WS}*={WS}*[[:digit:]]+{WS}*\r?\n { return 102;}
47 ^{WS}*#.*\r?\n { }
48 ^{WS}*\r?\n { }
H A Dbasic_r.l41 WS [[:blank:]]
44 ^{IDENT}+{WS}*={WS}*(true|false){WS}*\r?\n { return 100;}
45 ^{IDENT}+{WS}*={WS}*\"[^\"\n\r]*\"{WS}*\r?\n { return 101;}
46 ^{IDENT}+{WS}*={WS}*[[:digit:]]+{WS}*\r?\n { return 102;}
47 ^{WS}*#.*\r?\n { }
48 ^{WS}*\r?\n { }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp27 WriteRef::WriteRef(unsigned SourceIndex, WriteState *WS) in WriteRef() argument
29 Write(WS) {} in WriteRef()
105 for (WriteState &WS : IS->getDefs()) { in onInstructionExecuted()
106 if (WS.isEliminated()) in onInstructionExecuted()
109 MCPhysReg RegID = WS.getRegisterID(); in onInstructionExecuted()
111 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in onInstructionExecuted()
113 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in onInstructionExecuted()
120 if (WR.getWriteState() == &WS) in onInstructionExecuted()
125 if (OtherWR.getWriteState() == &WS) in onInstructionExecuted()
129 if (!WS.clearsSuperRegisters()) in onInstructionExecuted()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWasmObjectWriter.cpp424 const auto &WS = static_cast<const MCSymbolWasm &>(S); in executePostLayoutBinding() local
425 if (WS.isDefined() && WS.isFunction() && !WS.isVariable()) { in executePostLayoutBinding()
1283 const auto &WS = static_cast<const MCSymbolWasm &>(S); in prepareImports() local
1287 if (WS.isFunction()) { in prepareImports()
1295 if (WS.isEvent()) in prepareImports()
1296 registerEventType(WS); in prepareImports()
1298 if (WS.isTemporary()) in prepareImports()
1302 if (!WS.isDefined() && !WS.isComdat()) { in prepareImports()
1303 if (WS.isFunction()) { in prepareImports()
1305 Import.Module = WS.getImportModule(); in prepareImports()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/
H A DInOrderIssueStage.cpp66 for (const WriteState &WS : IR.getInstruction()->getDefs()) { in findLastWriteBackCycle() local
67 int CyclesLeft = WS.getCyclesLeft(); in findLastWriteBackCycle()
69 CyclesLeft = WS.getLatency(); in findLastWriteBackCycle()
79 for (const WriteState &WS : IR.getInstruction()->getDefs()) { in findFirstWriteBackCycle() local
80 int CyclesLeft = WS.getCyclesLeft(); in findFirstWriteBackCycle()
82 CyclesLeft = WS.getLatency(); in findFirstWriteBackCycle()
106 const WriteState *WS = WR.getWriteState(); in checkRegisterHazard() local
107 unsigned WriteResID = WS->getWriteResourceID(); in checkRegisterHazard()
112 if (WS->getCyclesLeft() == UNKNOWN_CYCLES) { in checkRegisterHazard()
118 int CyclesLeft = WS->getCyclesLeft() - ReadAdvance; in checkRegisterHazard()
[all …]
H A DRetireStage.cpp69 for (const WriteState &WS : Inst.getDefs()) in notifyInstructionRetired() local
70 PRF.removeRegisterWrite(WS, FreedRegs); in notifyInstructionRetired()
/netbsd-src/usr.sbin/mailwrapper/
H A Dmailwrapper.c106 #define WS " \t\n" in main() macro
109 cp += strspn(cp, WS); in main()
116 if ((from = strsep(&cp, WS)) == NULL) in main()
119 cp += strspn(cp, WS); in main()
121 if ((to = strsep(&cp, WS)) == NULL) in main()
125 for (ap = strsep(&cp, WS); ap != NULL; in main()
126 ap = strsep(&cp, WS)) in main()
/netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/
H A Dfont.cpp36 const char *const WS = " \t\n\r"; variable
589 p = strtok(t.buf, WS); in load()
593 p = strtok(0, WS); in load()
602 p = strtok(0, WS); in load()
612 p = strtok(0, WS); in load()
632 p = strtok(0, WS); in load()
663 char *c1 = strtok(t.buf, WS); in load()
666 char *c2 = strtok(0, WS); in load()
671 p = strtok(0, WS); in load()
702 char *nm = strtok(t.buf, WS); in load()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgengtype-lex.l54 WS [[:space:]]+
57 ITYPE {IWORD}({WS}{IWORD})*
108 {WS} { update_lineno (yytext, yyleng); }
130 {IWORD}({WS}{IWORD})*/{EOID} |
131 "ENUM_BITFIELD"{WS}?"("{WS}?{ID}{WS}?")" {
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgengtype-lex.l54 WS [[:space:]]+
57 ITYPE {IWORD}({WS}{IWORD})*
108 {WS} { update_lineno (yytext, yyleng); }
133 {IWORD}({WS}{IWORD})*/{EOID} |
134 "ENUM_BITFIELD"{WS}?"("{WS}?{ID}{WS}?")" {
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
H A DReader.cpp24 const WasmSection &WS = WasmObj.getWasmSection(Sec); in create() local
26 {static_cast<uint8_t>(WS.Type), WS.Name, WS.Content}); in create()
/netbsd-src/tests/lib/libc/stdlib/
H A Dh_getopt.c38 #define WS "\t\n " macro
56 optstring = strtok(&line[6], WS); in main()
68 args[nargs = 0] = strtok(&line[6], WS); in main()
74 while ((args[++nargs] = strtok(NULL, WS)) != NULL) in main()
87 result = strtok(&line[8], WS); in main()
H A Dh_getopt_long.c41 #define WS "\t\n " macro
62 optstring = strtok(&line[11], WS); in main()
78 ptr = strtok(&line[10], WS); in main()
153 args[nargs = 0] = strtok(&line[6], WS); in main()
158 while ((args[++nargs] = strtok(NULL, WS)) != NULL) in main()
166 result = strtok(&line[8], WS); in main()
/netbsd-src/external/bsd/flex/dist/src/
H A Dscan.l140 WS [[:blank:]]+
173 ^{WS} START_CODEBLOCK(true);
175 ^#{OPTWS}line{WS} yy_push_state( LINEDIR );
189 {WS} /* discard */
206 ^"%"{LEXOPT}{WS}.*{NL} ++linenum; /* ignore */
492 ^{WS} START_CODEBLOCK(true); /* indented code in prolog */
544 {WS}"%{" {
555 {WS}"|".*{NL} {
570 ^{WS}"/*" {
584 ^{WS} /* allow indented rules */ ;
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/conf/
H A Dkeysets.pl20 my $WS = 0x0010;
40 $v |= $WS if $c =~ /[ \t\r\n]/;
53 $v |= $WS if $c =~ /[ \t\r\n]/;
79 #define CONF_WS $WS
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/conf/
H A Dkeysets.pl20 my $WS = 0x0010;
41 $v |= $WS if $c =~ /[ \t\r\n]/;
55 $v |= $WS if $c =~ /[ \t\r\n]/;
82 #define CONF_WS $WS
/netbsd-src/external/gpl2/groff/dist/src/devices/xditview/
H A Ddevice.c28 #define WS " \t\r\n" macro
119 p = strtok(buf, WS); in device_load()
140 q = strtok((char *)0, WS); in device_load()
207 p = strtok(buf, WS); in load_font()
209 if (p && strcmp(p, "charset") == 0 && strtok((char *)0, WS) == 0) in load_font()
413 name = strtok(buf, WS); in read_charset_section()
416 p = strtok((char *)0, WS); in read_charset_section()
434 p = strtok((char *)0, WS); in read_charset_section()
439 p = strtok((char *)0, WS); in read_charset_section()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DWasmAsmParser.cpp183 MCSectionWasm *WS = getContext().getWasmSection( in parseSectionDirective() local
186 if (WS->getSegmentFlags() != Flags) in parseSectionDirective()
189 utohexstr(WS->getSegmentFlags())); in parseSectionDirective()
192 if (!WS->isWasmData()) in parseSectionDirective()
194 WS->setPassive(); in parseSectionDirective()
197 getStreamer().SwitchSection(WS); in parseSectionDirective()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/
H A DInstruction.cpp136 for (const WriteState &WS : getDefs()) { in computeCriticalRegDep() local
137 const CriticalDependency &WriteCRD = WS.getCriticalRegDep(); in computeCriticalRegDep()
168 for (WriteState &WS : getDefs()) in execute()
169 WS.onInstructionIssued(IID); in execute()
/netbsd-src/usr.bin/config/
H A Dscan.l131 WS ^[ \t]*
195 <*>{WS}ifdef[ \t]+{WORD}{RESTOFLINE} {
212 <*>{WS}ifndef[ \t]+{WORD}{RESTOFLINE} {
230 <*>{WS}elifdef[ \t]+{WORD}{RESTOFLINE} {
248 <*>{WS}elifndef[ \t]+{WORD}{RESTOFLINE} {
266 <*>{WS}else{RESTOFLINE} {
284 <*>{WS}endif{RESTOFLINE} {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h51 WriteRef(unsigned SourceIndex, WriteState *WS);
253 void removeRegisterWrite(const WriteState &WS,
258 bool canEliminateMove(const WriteState &WS, const ReadState &RS,
/netbsd-src/libexec/ld.elf_so/
H A Dpaths.c69 static const char WS[] = " \t\n"; variable
241 if ((ptr = getword(&bp, ep, WS)) == NULL || ptr == bp) in _rtld_process_mapping()
252 if ((ptr = getword(&bp, ep, WS)) == NULL || ptr == bp) { in _rtld_process_mapping()
261 for (i = 0; bp++, (ptr = getword(&bp, ep, WS)) != NULL;) { in _rtld_process_mapping()
382 (void)getcstr(&b, ep, WS); in _rtld_process_hints()
/netbsd-src/external/gpl2/dtc/dist/tests/
H A Dline_directives.dts13 * was that the {WS} in the trailing ({WS}+[0-9]+)? could cross the * line-
/netbsd-src/tests/lib/libpthread/
H A Dh_resolv.c48 #define WS " \t\n\r" macro
85 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS)) in load()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
H A DRegisterFileStatistics.cpp67 const WriteState &WS = Inst.getDefs()[I]; in updateMoveElimInfo() local
73 if (WS.isEliminated()) in updateMoveElimInfo()
75 if (WS.isWriteZero() && RS.isReadZero()) in updateMoveElimInfo()

12345