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

12

/freebsd-13-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-13-stable/lib/libc/regex/
H A Dutils.h44 #define NC ((MB_CUR_MAX) == 1 ? (NC_MAX) : (128)) macro
H A Dregex2.h137 if (ch < NC)
162 if (ch < NC)
/freebsd-13-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-13-stable/crypto/openssh/regress/
H A Dmultiplex.sh9 NC=$OBJ/netcat
81 $NC -N -l 127.0.0.1 $((${PORT} + 1)) < ${DATA} > /dev/null &
84 $NC 127.0.0.1 $((${PORT} + 2)) < /dev/null > ${COPY}
90 $NC -N -Ul $OBJ/unix-1.fwd < ${DATA} > /dev/null &
94 $NC -U $OBJ/unix-3.fwd < /dev/null > ${COPY} 2>/dev/null
145 echo "" | $NC -U $OBJ/unix-1.fwd | grep "Protocol mismatch" >/dev/null 2>&1 \
149 N=$(echo "xyzzy" | $NC -U $OBJ/unix-1.fwd 2>&1 | grep "xyzzy" | wc -l)
156 echo "" | $NC -U $OBJ/unix-1.fwd | grep "Protocol mismatch" >/dev/null 2>&1 \
160 N=$(echo "xyzzy" | $NC -U $OBJ/unix-1.fwd 2>&1 | grep "xyzzy" | wc -l)
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DImplicitNullChecks.cpp674 for (auto &NC : NullCheckList) {
676 unsigned BranchesRemoved = TII->removeBranch(*NC.getCheckBlock());
680 if (auto *DepMI = NC.getOnlyDependency()) {
682 NC.getCheckBlock()->insert(NC.getCheckBlock()->end(), DepMI);
690 NC.getMemOperation(), NC.getCheckBlock(), NC.getNullSucc());
695 MachineBasicBlock *MBB = NC.getMemOperation()->getParent();
705 if (auto *DepMI = NC
[all...]
/freebsd-13-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;
496 Value *NC = Builder.CreateBinOp(CombineOp, CInst1, CInst2); local
497 PBI->replaceUsesOfWith(IfCond2, NC);
/freebsd-13-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-13-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) {
3482 int NC = __kmp_hwloc_count_children_by_type(tp, hL, HWLOC_OBJ_CORE, local
3485 __kmp_hws_core.num = NC; // use all available cores
3486 if (__kmp_hws_core.offset >= NC) {
3491 int NC = __kmp_hwloc_count_children_by_type(tp, hN, HWLOC_OBJ_CORE, local
3494 __kmp_hws_core.num = NC; // use all available cores
3495 if (__kmp_hws_core.offset >= NC) {
3510 int NC = __kmp_hwloc_count_children_by_type(tp, hL, HWLOC_OBJ_CORE, local
3513 __kmp_hws_core.num = NC; // us
3519 int NC = __kmp_hwloc_count_children_by_type(tp, hS, HWLOC_OBJ_CORE, local
3600 int NC = __kmp_hwloc_count_children_by_type(tp, hL, local
3662 int NC = local
3744 int NC = local
3806 int NC = local
[all...]
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp1008 unsigned NI = 0, NL = 0, NS = 0, NC = 0, NR = 0; local
1065 ++NC;
1073 NumHoisted += NL + NS + NC + NI;
1077 NumCallsHoisted += NC;
1078 return {NI, NL + NC + NS};
/freebsd-13-stable/libexec/getty/
H A Dgettytab.h175 #define NC gettyflags[24].value macro
H A Dmain.c277 if (!opentty(ttyn, O_RDWR | (NC ? O_NONBLOCK : 0 )))
481 if (NC)
/freebsd-13-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.cpp4581 unsigned NC = 0; local
4590 NC++;
4597 assert(NC >= 3 &&
4603 for (unsigned i = 3; i != NC; ++i)
4606 } else if (NC == N->getNumChildren()) {
4610 for (unsigned i = 2; i != NC; ++i)
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c58 int nincat[NC];
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp724 Constant *NC = Names->getOperand(I); local
725 Value *V = NC->stripPointerCasts();
731 NC->dropAllReferences();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h129 NC,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp4972 Instruction *NC = NewCall; local
4973 Value *NV = NC;
4976 NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
4977 NC->setDebugLoc(Caller->getDebugLoc());
4983 InsertNewInstBefore(NC, *I);
4986 InsertNewInstBefore(NC, *I);
4989 InsertNewInstBefore(NC, *Caller);
/freebsd-13-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)) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h932 CondOpInit(unsigned NC, RecTy *Type) argument
934 NumConds(NC), ValType(Type) {}

Completed in 308 milliseconds

12