HomeSort by: relevance | last modified time | path
    Searched refs:Dot (Results 1 - 22 of 22) sorted by relevancy

  /src/external/bsd/pkg_install/dist/lib/
dewey.c 53 Dot = 0,
89 { "pl", 2, Dot },
90 { "_", 1, Dot },
91 { ".", 1, Dot },
114 * '.' encodes as Dot which is '0'
115 * '_' encodes as 'patch level', or 'Dot', which is 0.
116 * 'pl' encodes as 'patch level', or 'Dot', which is 0.
163 ap->v[ap->c++] = Dot;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 49 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmLexer.cpp 67 case AsmToken::Dot: OS << "Dot"; break;
AsmLexer.cpp 74 /// The leading integral digit sequence and dot should have already been
171 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1));
AsmParser.cpp 1294 case AsmToken::Dot: {
1806 } else if (Lexer.is(AsmToken::Dot)) {
2627 case AsmToken::Dot:
MasmParser.cpp 1651 case AsmToken::Dot: {
2019 } else if (Lexer.is(AsmToken::Dot)) {
2858 case AsmToken::Dot:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 684 MCSymbol *Dot = Context.createTempSymbol();
685 Asm->OutStreamer->emitLabel(Dot);
690 MCSymbolRefExpr::create(Dot, Context), Context),
AsmPrinter.cpp 3491 MCSymbol *Dot = Ctx.createTempSymbol();
3492 OutStreamer->emitLabel(Dot);
3495 MCSymbolRefExpr::create(Dot, Ctx), Ctx),
3500 MCBinaryExpr::createAdd(MCSymbolRefExpr::create(Dot, Ctx),
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
signals.d 683 class Dot
707 auto dot1 = new Dot;
708 auto dot2 = new Dot;
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 1435 case AsmToken::Dot:
1521 size_t Dot = Name.find('.');
1522 StringRef Mnemonic = Name.slice(0, Dot);
1528 if (Dot != StringRef::npos) {
1529 SMLoc DotLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Dot);
1530 StringRef DotStr = Name.slice(Dot, StringRef::npos);
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/AsmParser/
VEAsmParser.cpp 1181 case AsmToken::Dot:
1223 case AsmToken::Dot:
1288 case AsmToken::Dot:
1499 case AsmToken::Dot:
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp 572 const MCSymbolRefExpr *Dot = MCSymbolRefExpr::create(DotSym, OutContext);
575 MCInstBuilder(SystemZ::BRCLAsm).addImm(0).addExpr(Dot), STI);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 2324 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx;
2393 Dot = Name.slice(a-2, a-1);
2394 if (Dot == ".")
2418 Dot = Lib.slice(Lib.size()-2, Lib.size()-1);
2419 if (Dot == ".")
2435 Dot = Lib.slice(Lib.size()-2, Lib.size()-1);
2436 if (Dot == ".")
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 1874 case AsmToken::Dot:
1880 // MASM allows spaces around the dot operator (e.g., "var . x")
1920 StringRef Dot = Identifier.slice(DotOffset, DotOffset + 1);
1925 getLexer().UnLex(AsmToken(AsmToken::Dot, Dot));
1998 // MS Dot Operator expression
2040 bool EndDot = parseOptionalToken(AsmToken::Dot);
2055 EndDot = parseOptionalToken(AsmToken::Dot);
2314 getLexer().UnLex(AsmToken(AsmToken::Dot, TrailingDot));
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 908 case AsmToken::Dot:
1059 case AsmToken::Dot:
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/AsmParser/
AVRAsmParser.cpp 526 case AsmToken::Dot:
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 812 case AsmToken::Dot:
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 11901 // vecreduce.add(ext(A)) to vecreduce.add(DOT(zero, A, one))
11902 // vecreduce.add(mul(ext(A), ext(B))) to vecreduce.add(DOT(zero, A, B))
11940 SDValue Dot = DAG.getNode(DotOpcode, DL, Zeros.getValueType(), Zeros,
11942 return DAG.getNode(ISD::VECREDUCE_ADD, DL, N->getValueType(0), Dot);
13451 SDValue Dot = N->getOperand(0);
13454 auto isZeroDot = [](SDValue Dot) {
13455 return (Dot.getOpcode() == AArch64ISD::UDOT ||
13456 Dot.getOpcode() == AArch64ISD::SDOT) &&
13457 isZerosVector(Dot.getOperand(0).getNode());
13459 if (!isZeroDot(Dot))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 4879 Dot,
4880 } Operator = Dot;
5044 addValue(E, E->getMember(), IsArrow ? Member::Arrow : Member::Dot);
5342 // Both cases (dot/arrow) handled below.
5354 IsArrow ? ConceptInfo::Member::Arrow : ConceptInfo::Member::Dot;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 991 bool Type = Lexer.is(AsmToken::Identifier) || Lexer.is(AsmToken::Dot) ||
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
RISCVAsmParser.cpp 1356 case AsmToken::Dot:
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 6212 case AsmToken::Dot: { // . as a branch target
8748 MCSymbol *Dot = getContext().createTempSymbol();
8749 Out.emitLabel(Dot);
8751 const MCExpr *InstPC = MCSymbolRefExpr::create(Dot,

Completed in 125 milliseconds