HomeSort by: relevance | last modified time | path
    Searched defs:WS (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
Reader.cpp 24 const WasmSection &WS = WasmObj.getWasmSection(Sec);
26 {static_cast<uint8_t>(WS.Type), WS.Name, WS.Content});
  /src/tests/lib/libc/stdlib/
h_getopt.c 38 #define WS "\t\n "
56 optstring = strtok(&line[6], WS);
68 args[nargs = 0] = strtok(&line[6], WS);
74 while ((args[++nargs] = strtok(NULL, WS)) != NULL)
87 result = strtok(&line[8], WS);
h_getopt_long.c 41 #define WS "\t\n "
62 optstring = strtok(&line[11], WS);
78 ptr = strtok(&line[10], WS);
153 args[nargs = 0] = strtok(&line[6], WS);
158 while ((args[++nargs] = strtok(NULL, WS)) != NULL)
166 result = strtok(&line[8], WS);
  /src/usr.sbin/mailwrapper/
mailwrapper.c 106 #define WS " \t\n"
109 cp += strspn(cp, WS);
116 if ((from = strsep(&cp, WS)) == NULL)
119 cp += strspn(cp, WS);
121 if ((to = strsep(&cp, WS)) == NULL)
125 for (ap = strsep(&cp, WS); ap != NULL;
126 ap = strsep(&cp, WS))
  /src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/
InOrderIssueStage.cpp 66 for (const WriteState &WS : IR.getInstruction()->getDefs()) {
67 int CyclesLeft = WS.getCyclesLeft();
69 CyclesLeft = WS.getLatency();
79 for (const WriteState &WS : IR.getInstruction()->getDefs()) {
80 int CyclesLeft = WS.getCyclesLeft();
82 CyclesLeft = WS.getLatency();
106 const WriteState *WS = WR.getWriteState();
107 unsigned WriteResID = WS->getWriteResourceID();
112 if (WS->getCyclesLeft() == UNKNOWN_CYCLES) {
118 int CyclesLeft = WS->getCyclesLeft() - ReadAdvance
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
RegisterFileStatistics.cpp 67 const WriteState &WS = Inst.getDefs()[I];
73 if (WS.isEliminated())
75 if (WS.isWriteZero() && RS.isReadZero())
  /src/tests/lib/libpthread/
h_resolv.c 48 #define WS " \t\n\r"
85 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LexicalScopes.cpp 243 LexicalScope *WS = ScopePosition.first;
245 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren();
252 WS->setDFSOut(++Counter);
  /src/external/bsd/nvi/dist/common/
multibyte.h 65 #define WS "%ls"
98 #define WS "%s"
  /src/libexec/ld.elf_so/
paths.c 71 static const char WS[] = " \t\n";
243 if ((ptr = getword(&bp, ep, WS)) == NULL || ptr == bp)
254 if ((ptr = getword(&bp, ep, WS)) == NULL || ptr == bp) {
263 for (i = 0; bp++, (ptr = getword(&bp, ep, WS)) != NULL;) {
384 (void)getcstr(&b, ep, WS);
  /src/usr.sbin/makemandb/
apropos.c 185 #define WS "\t\n\r "
187 for (s = 1, str = strtok(str, WS); str;
188 str = strtok(NULL, WS), s++)
  /src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
RegisterFile.cpp 27 WriteRef::WriteRef(unsigned SourceIndex, WriteState *WS)
29 Write(WS) {}
105 for (WriteState &WS : IS->getDefs()) {
106 if (WS.isEliminated())
109 MCPhysReg RegID = WS.getRegisterID();
111 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES &&
113 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!");
120 if (WR.getWriteState() == &WS)
125 if (OtherWR.getWriteState() == &WS)
129 if (!WS.clearsSuperRegisters()
    [all...]
  /src/external/gpl2/groff/dist/src/devices/xditview/
device.c 28 #define WS " \t\r\n"
119 p = strtok(buf, WS);
140 q = strtok((char *)0, WS);
207 p = strtok(buf, WS);
209 if (p && strcmp(p, "charset") == 0 && strtok((char *)0, WS) == 0)
413 name = strtok(buf, WS);
416 p = strtok((char *)0, WS);
434 p = strtok((char *)0, WS);
439 p = strtok((char *)0, WS);
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 744 auto WS = cast<MCSectionWasm>(getStreamer().getCurrentSection().first);
745 if (WS && WS->getKind().isText())
1072 auto *WS =
1075 getStreamer().SwitchSection(WS);
1078 getContext().addGenDwarfSection(WS);
  /src/external/gpl2/groff/dist/src/devices/grops/
ps.cpp 781 const char *const WS = " \t\n\r";
800 if (*p != '#' && *p != '\0' && (p = strtok(buf, WS)) != 0) {
801 char *q = strtok(0, WS);
  /src/external/gpl2/groff/dist/src/libs/libgroff/
font.cpp 36 const char *const WS = " \t\n\r";
589 p = strtok(t.buf, WS);
593 p = strtok(0, WS);
602 p = strtok(0, WS);
612 p = strtok(0, WS);
632 p = strtok(0, WS);
663 char *c1 = strtok(t.buf, WS);
666 char *c2 = strtok(0, WS);
671 p = strtok(0, WS);
702 char *nm = strtok(t.buf, WS);
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
amdgpu-tdep.c 361 #define WS "[ \t]+"
419 "^(bool|uint%d_t|enum" WS IDENTIFIER WSOPT "(\\{[^}]*})?)"
420 WS
557 WS "(" IDENTIFIER ")" WSOPT
610 compiled_regex regex ("^enum" WS "(" IDENTIFIER ")" WSOPT "(\\{" WSOPT "([^}]*)})?",
  /src/external/gpl3/gdb.old/dist/gdb/
amdgpu-tdep.c 363 #define WS "[ \t]+"
421 "^(bool|uint%d_t|enum" WS IDENTIFIER WSOPT "(\\{[^}]*})?)"
422 WS
559 WS "(" IDENTIFIER ")" WSOPT
612 compiled_regex regex ("^enum" WS "(" IDENTIFIER ")" WSOPT "(\\{" WSOPT "([^}]*)})?",
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 424 const auto &WS = static_cast<const MCSymbolWasm &>(S);
425 if (WS.isDefined() && WS.isFunction() && !WS.isVariable()) {
1283 const auto &WS = static_cast<const MCSymbolWasm &>(S);
1287 if (WS.isFunction()) {
1295 if (WS.isEvent())
1296 registerEventType(WS);
1298 if (WS.isTemporary())
1302 if (!WS.isDefined() && !WS.isComdat())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 1247 else if (const auto *WS = dyn_cast<WhileStmt>(Loop))
1248 Body = WS->getBody();
2566 std::queue<const ExplodedNode *> WS;
2569 WS.push(*TrimmedGraph->roots_begin());
2572 while (!WS.empty()) {
2573 const ExplodedNode *Node = WS.front();
2574 WS.pop();
2591 WS.push(Succ);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 709 TypeSetByHwMode::SetType &WS = W.get(M);
715 for (MVT T : WS)
720 Changed |= berase_if(WS, std::bind(NoLength, VN, std::placeholders::_1));
  /src/external/gpl3/binutils/dist/opcodes/
ppc-opc.c 3772 /* The WS or DRM field in an X form instruction. */
3773 #define WS EVUIMM_8_EX0 + 1
3774 #define DRM WS
3776 #define NNN WS
3781 #define PSWM WS + 1
7529 {"eratre", X(31,179), X_MASK, PPCA2, 0, {RT, RA, WS}},
7573 {"eratwe", X(31,211), X_MASK, PPCA2, 0, {RS, RA, WS}},
  /src/external/gpl3/binutils.old/dist/opcodes/
ppc-opc.c 3772 /* The WS or DRM field in an X form instruction. */
3773 #define WS EVUIMM_8_EX0 + 1
3774 #define DRM WS
3776 #define NNN WS
3781 #define PSWM WS + 1
7498 {"eratre", X(31,179), X_MASK, PPCA2, 0, {RT, RA, WS}},
7542 {"eratwe", X(31,211), X_MASK, PPCA2, 0, {RS, RA, WS}},
  /src/external/gpl3/gdb/dist/opcodes/
ppc-opc.c 3694 /* The WS or DRM field in an X form instruction. */
3695 #define WS EVUIMM_8_EX0 + 1
3696 #define DRM WS
3698 #define NNN WS
3703 #define PSWM WS + 1
7379 {"eratre", X(31,179), X_MASK, PPCA2, 0, {RT, RA, WS}},
7423 {"eratwe", X(31,211), X_MASK, PPCA2, 0, {RS, RA, WS}},
  /src/external/gpl3/gdb.old/dist/opcodes/
ppc-opc.c 3694 /* The WS or DRM field in an X form instruction. */
3695 #define WS EVUIMM_8_EX0 + 1
3696 #define DRM WS
3698 #define NNN WS
3703 #define PSWM WS + 1
7379 {"eratre", X(31,179), X_MASK, PPCA2, 0, {RT, RA, WS}},
7423 {"eratwe", X(31,211), X_MASK, PPCA2, 0, {RS, RA, WS}},

Completed in 91 milliseconds

1 2