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

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXComment.cpp 261 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
262 if (!PCC || !PCC->hasParamName())
265 return cxstring::createRef(PCC->getParamNameAsWritten());
269 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
270 if (!PCC)
273 return PCC->isParamIndexValid();
277 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
278 if (!PCC || !PCC->isParamIndexValid() || PCC->isVarArgParam()
    [all...]
  /src/external/bsd/pcc/usr.bin/pcc/
Makefile 10 # we build PCC cc(1) as pcc(1) to avoid conflicts with GCC
13 PROG= pcc
15 MAN= pcc.1
26 pcc.1: cc.1
27 ${TOOL_SED} -e "s,Nm cc,Nm pcc," \
28 -e "s,Dt CC,Dt PCC," \
33 SYMLINKS+= ${BINDIR}/pcc /usr/bin/pcpp
37 SYMLINKS+= ${BINDIR}/pcc /usr/bin/p++
40 CLEANFILES+= pcc.
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentSema.cpp 751 ParamCommandComment *PCC = dyn_cast<ParamCommandComment>(*I);
752 if (!PCC || !PCC->hasParamName())
754 StringRef ParamName = PCC->getParamNameAsWritten();
760 PCC->setIsVarArgParam();
764 UnresolvedParamCommands.push_back(PCC);
767 PCC->setParamIndex(ResolvedParamIndex);
769 SourceRange ArgRange = PCC->getParamNameRange();
776 ParamVarDocs[ResolvedParamIndex] = PCC;
790 const ParamCommandComment *PCC = UnresolvedParamCommands[i]
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp 144 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
145 if (!PCC->hasParamName())
148 if (!PCC->isDirectionExplicit() && !PCC->hasNonWhitespaceParagraph())
151 Params.push_back(PCC);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_umc_v6_1.c 174 REG_GET_FIELD(mc_umc_status, MCA_UMC_UMC0_MCUMC_STATUST0, PCC) == 1 ||
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 574 static unsigned getBranchHint(unsigned PCC,
4676 unsigned PCC = 0;
4682 PCC = IsCCNE ? PPC::PRED_UN : PPC::PRED_NU;
4685 PCC = IsCCNE ? PPC::PRED_EQ : PPC::PRED_NE;
4688 PCC = IsCCNE ? PPC::PRED_GT : PPC::PRED_LE;
4691 PCC = IsCCNE ? PPC::PRED_LT : PPC::PRED_GE;
4698 PCC = IsCCNE ? PPC::PRED_UN : PPC::PRED_NU;
4700 if (PCC) {
4702 SDValue Ops[] = {getI32Imm(PCC, dl), CmpLHS.getOperand(0), N->getOperand(4),
5568 unsigned PCC = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efi_pxe.h 948 // PCC BusType definitions.
958 } PCI, PCC;
1163 // For PCC bus devices, this field is set to PXE_BUSTYPE_PCC.
1168 // This identifies the PCC network device that this UNDI interface
1176 // This is a copy of the PCC configuration space for this
1201 PXE_PCC_CONFIG_INFO pcc; member in union:u_pxe_db_get_config_info
  /src/external/bsd/pcc/dist/pcc/
configure 5 # Report bugs to <pcc@lists.ludd.ltu.se>.
270 $0: pcc@lists.ludd.ltu.se about your system, including any
582 PACKAGE_TARNAME='pcc'
585 PACKAGE_BUGREPORT='pcc@lists.ludd.ltu.se'
586 PACKAGE_URL='http://pcc.ludd.ltu.se/'
1323 --docdir=DIR documentation root [DATAROOTDIR/doc/pcc]
1354 --disable-pcc-debug Disable PCC debugging
1355 --enable-twopass Link PCC as a two-pass compiler
1388 Report bugs to <pcc@lists.ludd.ltu.se>
    [all...]
  /src/share/mk/
bsd.own.mk 457 # PCC supports C and Fortran
458 TOOL_CC.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-pcc
459 TOOL_CPP.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-pcpp
460 TOOL_CXX.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-p++
626 # PCC supports C and Fortran
627 TOOL_CC.pcc= pcc
628 TOOL_CPP.pcc= pcpp
629 TOOL_CXX.pcc= p+
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 4002 mapCodeCompletionContext(Sema &S, Sema::ParserCompletionContext PCC) {
4003 switch (PCC) {
4458 auto PCC =
4464 else if (WantTypesInContext(PCC, getLangOpts()))
4482 AddOrdinaryNameResults(PCC, S, *this, Results);

Completed in 35 milliseconds