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

12

/freebsd-10-stable/contrib/llvm/lib/Support/
H A Dregutils.h39 #define NC (CHAR_MAX - CHAR_MIN + 1) macro
H A Dregcomp.c183 (NC-1)*sizeof(cat_t));
204 g->csetsize = NC;
217 (void) memset((char *)g->catspace, 0, NC*sizeof(cat_t));
/freebsd-10-stable/contrib/nvi/regex/
H A Dutils.h45 #define NC (CHAR_MAX - CHAR_MIN + 1) macro
H A Dregcomp.c219 (NC-1)*sizeof(cat_t));
246 g->csetsize = NC;
260 (void) memset((char *)g->catspace, 0, NC*sizeof(cat_t));
/freebsd-10-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.c1188 for (i = n = 0; i < NC; i++)
1210 if (ch < NC)
1223 if ((nch = towlower(ch)) < NC)
1225 if ((nch = towupper(ch)) < NC)
1238 for (; min < NC && min <= max; min++)
1263 for (i = 0; i < NC; i++)
1683 g->charjump = (int*) malloc((NC + 1) * sizeof(int));
/freebsd-10-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-10-stable/contrib/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp282 Value *NC; local
285 NC = Builder.CreateOr(PC, CC);
288 NC = Builder.CreateAnd(PC, CC);
290 PBI->replaceUsesOfWith(CC, NC);
291 PC = NC;
441 Value *NC = Builder.CreateOr(CInst1, CC); local
442 PBI->replaceUsesOfWith(CC, NC);
H A DLowerInvoke.cpp306 CastInst *NC = new BitCastInst( local
308 AI->replaceAllUsesWith(NC);
315 NC->setOperand(0, AI);
/freebsd-10-stable/contrib/llvm/lib/Object/
H A DCOFFYAML.cpp243 MappingNormalization<NHeaderCharacteristics, uint16_t> NC(IO,
247 IO.mapOptional("Characteristics", NC->Characteristics);
265 MappingNormalization<NSectionCharacteristics, uint32_t> NC(
268 IO.mapRequired("Characteristics", NC->Characteristics);
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h183 unsigned NC = 0; local
185 if (I->isLeader()) ++NC;
186 return NC;
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1185 Instruction *NC; local
1187 NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
1189 NC->takeName(II);
1190 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1191 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1194 NC = Builder->CreateCall(Callee, Args);
1195 NC->takeName(CI);
1197 cast<CallInst>(NC)->setTailCall();
1198 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1199 cast<CallInst>(NC)
[all...]
H A DInstCombineMulDivRem.cpp861 APInt NC = C2->getValue().shl(C1->getLimitedValue(C1->getBitWidth()-1)); local
862 return BinaryOperator::CreateUDiv(X, Builder->getInt(NC));
/freebsd-10-stable/contrib/llvm/include/llvm/MC/
H A DMCRegisterInfo.h241 const MCRegisterClass *C, unsigned NC,
257 NumClasses = NC;
239 InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA, unsigned PC, const MCRegisterClass *C, unsigned NC, const uint16_t (*RURoots)[2], unsigned NRU, const MCPhysReg *DL, const char *Strings, const uint16_t *SubIndices, unsigned NumIndices, const SubRegCoveredBits *SubIdxRanges, const uint16_t *RET) argument
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp267 CastInst *NC = new BitCastInst(AI, AI->getType(), AI->getName() + ".tmp", local
269 AI->replaceAllUsesWith(NC);
277 NC->setOperand(0, AI);
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h107 NC, enumerator in enum:llvm::SystemZISD::__anon2630
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DDAGISelMatcher.h212 void setNumChildren(unsigned NC) { argument
213 if (NC < Children.size()) {
215 for (unsigned i = NC, e = Children.size(); i != e; ++i)
218 Children.resize(NC);
H A DCodeGenDAGPatterns.cpp1543 unsigned NC = getNumChildren(); local
1545 TreePatternNode *SetVal = getChild(NC-1);
1548 for (unsigned i = 0; i < NC-1; ++i) {
3495 unsigned NC = 0; local
3504 NC++;
3511 assert(NC >= 3 &&
3517 for (unsigned i = 3; i != NC; ++i)
3520 } else if (NC == 2)
/freebsd-10-stable/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-10-stable/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c58 int nincat[NC];
/freebsd-10-stable/sys/dev/hptrr/
H A Di386-elf.hptrr_lib.o.uu65 MAM`D``#F?]<`QX;4)```YG_7`,>&S"0``''C!P''1ACL,P``@^P,5NC\____
71 M@'L!`G4@B?`\#W0:@^P,:O]J`0^VP%`/M@-04NC\____@\0@B?:#[`B)\@^V
137 MPXUV`%93@^P@BW0D+(I<)#"-1"0<4&I`:@\/ML-05NC\____@\0@N@````"%
144 MC032C03"C02"C01"QH2&00D```"#[`QJ`&HA:@\/ML-05NC\____@\0@N@``
145 M``"%P'1*#[;3C032C03"C02"C01"C82&1@D``%`/MD0D$E!25NC\____@\00
248 MBUPD5(M^,(MO'+D`````NC````")X(UV`(@(0$IU^L<$)`$```#'1"0,````
356 M1P50#[9$)"-05NC\____@\0@A<!T#\='$`````#'1"0$`````(7M=!2#[`@/
361 M1P50#[9$)"-05NC\____@\0@A<!T$L='&`````#'1"0$`````(UV`(7M=!2#
364 M@\0,:@!35NC\____@\00B?9J`&H`:@!J`+@&````@'PD&P)T!;B&````4`^V
365 M1P50#[9$)")05NC\___
[all...]
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1937 Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(), local
1939 GEPI->replaceAllUsesWith(NC);
1942 OptimizeInst(NC);
/freebsd-10-stable/sys/dev/hptmv/
H A Di386-elf.raid.o.uu113 M!,9#%0&#[`13_W,@5NC\____@\00C67X6U[)PU6)Y5=64X/L#(M]#(L'B47P
202 M@\009H-[.@!U&H![%0!U!,9#%0&#[`13_W,@5NC\____@\00C67X6U[)PU6)
425 M__\`@'XJ``^&%R(``(GW@<?8"```BH6O_O__BU4,.$(K#X0&`0``4NC+W?__
568 MB<O!XP2+50R-G!/8!P``4NC`Q/__@\0$QD`$`HJ-K_[__XA("(A("8L3B5`,
639 M,%;H@[?__XD<)/]S(%;H_/___XL#@\00@W@@`'08@^P$@\`@4&@`````5NC\
764 M!(7_=`^#?P0`=`F)O>3]__^+?P2#[`1H``(``&H`5NC\____QP;S%GA:@\00
775 M50B*`HA&$(UV`&B0````5NC\____]]B(1@AH``(``%;H_/____?8B(:0````
782 M``"#X/V(1P&#[`1H``(``&H`5NC\____@\00@#\#='B-A>C[__^0BUML@#\(
869 M)(M5"(M"*(MP#(M:,(H*@^$#B<\/M@*#X`3!Z`*(1=B-@R`!``!05NC\____
958 MX@4)T%"+0S"#P!105NC\____C67X6
[all...]

Completed in 424 milliseconds

12