Searched refs:NC (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/lib/Support/
H A Dregutils.h42 #define NC (CHAR_MAX - CHAR_MIN + 1) macro
H A Dregcomp.c191 (NC-1)*sizeof(cat_t));
212 g->csetsize = NC;
225 (void) memset((char *)g->catspace, 0, NC*sizeof(cat_t));
/freebsd-11.0-release/lib/libc/regex/
H A Dutils.h40 #define NC (CHAR_MAX - CHAR_MIN + 1) macro
H A Dregex2.h114 unsigned char bmp[NC / 8];
131 if (ch < NC)
151 if (ch < NC)
H A Dregcomp.c1185 for (i = n = 0; i < NC; i++)
1207 if (ch < NC)
1220 if ((nch = towlower(ch)) < NC)
1222 if ((nch = towupper(ch)) < NC)
1235 for (; min < NC && min <= max; min++)
1260 for (i = 0; i < NC; i++)
1680 g->charjump = (int*) malloc((NC + 1) * sizeof(int));
/freebsd-11.0-release/contrib/nvi/regex/
H A Dutils.h41 #define NC (CHAR_MAX - CHAR_MIN + 1) macro
H A Dregcomp.c206 (NC-1)*sizeof(cat_t));
233 g->csetsize = NC;
247 memset((char *)g->catspace, 0, NC*sizeof(cat_t));
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DImplicitNullChecks.cpp383 for (auto &NC : NullCheckList) {
387 unsigned BranchesRemoved = TII->RemoveBranch(*NC.CheckBlock);
395 insertFaultingLoad(NC.MemOperation, NC.CheckBlock, HandlerLabel);
396 NC.MemOperation->eraseFromParent();
397 NC.CheckOperation->eraseFromParent();
400 TII->InsertBranch(*NC.CheckBlock, NC.NotNullSucc, nullptr, /*Cond=*/None,
404 BuildMI(*NC.NullSucc, NC
[all...]
H A DCodeGenPrepare.cpp5185 Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(), local
5187 GEPI->replaceAllUsesWith(NC);
5190 optimizeInst(NC, ModifiedDT);
/freebsd-11.0-release/crypto/openssh/regress/
H A Dmultiplex.sh8 NC=$OBJ/netcat
80 $NC -N -l 127.0.0.1 $((${PORT} + 1)) < ${DATA} > /dev/null &
83 $NC 127.0.0.1 $((${PORT} + 2)) < /dev/null > ${COPY}
89 $NC -N -Ul $OBJ/unix-1.fwd < ${DATA} > /dev/null &
93 $NC -U $OBJ/unix-3.fwd < /dev/null > ${COPY} 2>/dev/null
144 echo "" | $NC -U $OBJ/unix-1.fwd | grep "Protocol mismatch" >/dev/null 2>&1 \
148 N=$(echo "xyzzy" | $NC -U $OBJ/unix-1.fwd 2>&1 | grep "xyzzy" | wc -l)
155 echo "" | $NC -U $OBJ/unix-1.fwd | grep "Protocol mismatch" >/dev/null 2>&1 \
159 N=$(echo "xyzzy" | $NC -U $OBJ/unix-1.fwd 2>&1 | grep "xyzzy" | wc -l)
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp284 Value *NC; local
287 NC = Builder.CreateOr(PC, CC);
290 NC = Builder.CreateAnd(PC, CC);
292 PBI->replaceUsesOfWith(CC, NC);
293 PC = NC;
442 Value *NC = Builder.CreateOr(CInst1, CC); local
443 PBI->replaceUsesOfWith(CC, NC);
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h184 unsigned NC = 0; local
186 if (I->isLeader()) ++NC;
187 return NC;
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DCOFFYAML.cpp416 MappingNormalization<NHeaderCharacteristics, uint16_t> NC(IO,
420 IO.mapOptional("Characteristics", NC->Characteristics);
484 MappingNormalization<NSectionCharacteristics, uint32_t> NC(
487 IO.mapRequired("Characteristics", NC->Characteristics);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2279 Instruction *NC; local
2281 NC = Builder->CreateInvoke(Callee, II->getNormalDest(), II->getUnwindDest(),
2283 NC->takeName(II);
2284 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
2285 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
2288 NC = Builder->CreateCall(Callee, Args, OpBundles);
2289 NC->takeName(CI);
2291 cast<CallInst>(NC)->setTailCall();
2292 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
2293 cast<CallInst>(NC)
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCRegisterInfo.h246 const MCRegisterClass *C, unsigned NC,
266 NumClasses = NC;
244 InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA, unsigned PC, const MCRegisterClass *C, unsigned NC, const MCPhysReg (*RURoots)[2], unsigned NRU, const MCPhysReg *DL, const unsigned *RUMS, const char *Strings, const char *ClassStrings, const uint16_t *SubIndices, unsigned NumIndices, const SubRegCoveredBits *SubIdxRanges, const uint16_t *RET) argument
/freebsd-11.0-release/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c63 int nincat[NC];
/freebsd-11.0-release/libexec/getty/
H A Dgettytab.h172 #define NC gettyflags[24].value macro
H A Dmain.c276 if (!opentty(ttyn, O_RDWR | (NC ? O_NONBLOCK : 0 )))
476 if (NC)
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp241 Constant *NC = Names->getOperand(I); local
242 Value *V = NC->stripPointerCasts();
/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DDAGISelMatcher.h215 void setNumChildren(unsigned NC) { argument
216 if (NC < Children.size()) {
218 for (unsigned i = NC, e = Children.size(); i != e; ++i)
221 Children.resize(NC);
H A DCodeGenDAGPatterns.cpp1749 unsigned NC = getNumChildren(); local
1751 TreePatternNode *SetVal = getChild(NC-1);
1754 for (unsigned i = 0; i < NC-1; ++i) {
3739 unsigned NC = 0; local
3748 NC++;
3755 assert(NC >= 3 &&
3761 for (unsigned i = 3; i != NC; ++i)
3764 } else if (NC == 2)
/freebsd-11.0-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h118 NC,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaAccess.cpp973 const CXXRecordDecl *NC = I->Class->getCanonicalDecl(); local
978 switch (HasAccess(S, EC, NC, PathAccess, Target)) {
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1144 if (ConstantSDNode *NC = dyn_cast<ConstantSDNode>(N)) {
1145 if (NC->getZExtValue() * 8 == LdSt->getMemoryVT().getSizeInBits())
1172 ConstantSDNode *NC = dyn_cast<ConstantSDNode>(N); local
1173 if (!NC || !NC->isNullValue())
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h1600 if (Constant *NC = dyn_cast<Constant>(NewElt))
1602 return Insert(Folder.CreateInsertElement(VC, NC, IC), Name);

Completed in 322 milliseconds

12