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

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregutils.h42 #define NC (CHAR_MAX - CHAR_MIN + 1) macro
H A Dregcomp.c319 (NC-1)*sizeof(cat_t));
340 g->csetsize = NC;
353 (void) memset((char *)g->catspace, 0, NC*sizeof(cat_t));
/freebsd-11-stable/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.c1326 for (i = n = 0; i < NC; i++)
1348 if (ch < NC)
1361 if ((nch = towlower(ch)) < NC)
1363 if ((nch = towupper(ch)) < NC)
1376 for (; min < NC && min <= max; min++)
1401 for (i = 0; i < NC; i++)
1821 g->charjump = (int*) malloc((NC + 1) * sizeof(int));
/freebsd-11-stable/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-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DImplicitNullChecks.cpp668 for (auto &NC : NullCheckList) {
670 unsigned BranchesRemoved = TII->removeBranch(*NC.getCheckBlock());
674 if (auto *DepMI = NC.getOnlyDependency()) {
676 NC.getCheckBlock()->insert(NC.getCheckBlock()->end(), DepMI);
684 NC.getMemOperation(), NC.getCheckBlock(), NC.getNullSucc());
689 MachineBasicBlock *MBB = NC.getMemOperation()->getParent();
699 if (auto *DepMI = NC
[all...]
/freebsd-11-stable/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-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingMerge.c109 unsigned I, NC, NVK = 0; local
111 NC = SrcData->NumCounters;
115 for (I = 0; I < NC; I++)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp296 Value *NC; local
299 NC = Builder.CreateOr(PC, CC);
302 NC = Builder.CreateAnd(PC, CC);
304 PBI->replaceUsesOfWith(CC, NC);
305 PC = NC;
452 Value *NC = Builder.CreateOr(CInst1, CC); local
453 PBI->replaceUsesOfWith(CC, NC);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h188 unsigned NC = 0; local
190 if (I->isLeader()) ++NC;
191 return NC;
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp495 int NC = __kmp_hwloc_count_children_by_type(tp, obj, HWLOC_OBJ_CORE, &core); local
496 for (int core_id = 0; core_id < NC; ++core_id, core = core->next_cousin) {
3480 int NC = __kmp_hwloc_count_children_by_type(tp, hL, HWLOC_OBJ_CORE, local
3483 __kmp_hws_core.num = NC; // use all available cores
3484 if (__kmp_hws_core.offset >= NC) {
3489 int NC = __kmp_hwloc_count_children_by_type(tp, hN, HWLOC_OBJ_CORE, local
3492 __kmp_hws_core.num = NC; // use all available cores
3493 if (__kmp_hws_core.offset >= NC) {
3508 int NC = __kmp_hwloc_count_children_by_type(tp, hL, HWLOC_OBJ_CORE, local
3511 __kmp_hws_core.num = NC; // us
3517 int NC = __kmp_hwloc_count_children_by_type(tp, hS, HWLOC_OBJ_CORE, local
3598 int NC = __kmp_hwloc_count_children_by_type(tp, hL, local
3660 int NC = local
3742 int NC = local
3804 int NC = local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp492 MappingNormalization<NHeaderCharacteristics, uint16_t> NC(IO,
496 IO.mapOptional("Characteristics", NC->Characteristics);
560 MappingNormalization<NSectionCharacteristics, uint32_t> NC(
563 IO.mapRequired("Characteristics", NC->Characteristics);
584 NC->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp1010 unsigned NI = 0, NL = 0, NS = 0, NC = 0, NR = 0; local
1067 ++NC;
1075 NumHoisted += NL + NS + NC + NI;
1079 NumCallsHoisted += NC;
1080 return {NI, NL + NC + NS};
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c58 int nincat[NC];
/freebsd-11-stable/libexec/getty/
H A Dgettytab.h173 #define NC gettyflags[24].value macro
H A Dmain.c276 if (!opentty(ttyn, O_RDWR | (NC ? O_NONBLOCK : 0 )))
478 if (NC)
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.h207 void setNumChildren(unsigned NC) { argument
208 if (NC < Children.size()) {
210 for (unsigned i = NC, e = Children.size(); i != e; ++i)
213 Children.resize(NC);
H A DCodeGenDAGPatterns.cpp4566 unsigned NC = 0; local
4575 NC++;
4582 assert(NC >= 3 &&
4588 for (unsigned i = 3; i != NC; ++i)
4591 } else if (NC == N->getNumChildren()) {
4595 for (unsigned i = 2; i != NC; ++i)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegisterInfo.h348 const MCRegisterClass *C, unsigned NC,
368 NumClasses = NC;
346 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 LaneBitmask *RUMS, const char *Strings, const char *ClassStrings, const uint16_t *SubIndices, unsigned NumIndices, const SubRegCoveredBits *SubIdxRanges, const uint16_t *RET) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp662 Constant *NC = Names->getOperand(I); local
663 Value *V = NC->stripPointerCasts();
669 NC->dropAllReferences();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h125 NC,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp4784 Instruction *NC = NewCall; local
4785 Value *NV = NC;
4788 NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
4789 NC->setDebugLoc(Caller->getDebugLoc());
4795 InsertNewInstBefore(NC, *I);
4798 InsertNewInstBefore(NC, *I);
4801 InsertNewInstBefore(NC, *Caller);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp967 const CXXRecordDecl *NC = I->Class->getCanonicalDecl(); local
972 switch (HasAccess(S, EC, NC, PathAccess, Target)) {

Completed in 397 milliseconds

12