Searched refs:cc (Results 1 - 25 of 34) sorted by relevance

12

/darwin-on-arm/xnu/bsd/kern/
H A Dtty_subr.c175 int cc; local
180 cc = clp->c_cl - clp->c_cf;
182 cc = clp->c_ce - clp->c_cf;
183 if (cc > count)
184 cc = count;
185 bcopy(clp->c_cf, p, cc);
186 count -= cc;
187 p += cc;
188 clp->c_cc -= cc;
189 clp->c_cf += cc;
207 register int cc; local
244 int cc; local
360 int cc; local
407 static int cc; variable
[all...]
H A Dtty_compat.c256 register cc_t *cc; local
258 cc = term->c_cc;
259 cc[VINTR] = tc->t_intrc;
260 cc[VQUIT] = tc->t_quitc;
261 cc[VSTART] = tc->t_startc;
262 cc[VSTOP] = tc->t_stopc;
263 cc[VEOF] = tc->t_eofc;
264 cc[VEOL] = tc->t_brkc;
266 cc[VEOL2] = _POSIX_VDISABLE;
277 register cc_t *cc; local
391 register cc_t *cc = tp->t_cc; local
410 register cc_t *cc = tp->t_cc; local
427 register cc_t *cc = tp->t_cc; local
[all...]
H A Dtty_pty.c330 int cc; local
333 cc = min(uio_resid(uio), BUFSIZ);
335 cc = min(cc, tp->t_canq.c_cc - 1);
336 cc = q_to_b(&tp->t_canq, (u_char *)buf, cc);
337 error = uiomove(buf, cc, uio);
498 int error = 0, cc; local
515 cc = min(uio_resid(uio),
517 uiomove((caddr_t)&tp->t_termios, cc,
658 int cc = 0; local
774 u_char *cc = tp->t_cc; local
[all...]
H A Dtty_ptmx.c713 int cc; local
716 cc = min(uio_resid(uio), BUFSIZ);
718 cc = min(cc, tp->t_canq.c_cc - 1);
719 cc = q_to_b(&tp->t_canq, (u_char *)buf, cc);
720 error = uiomove(buf, cc, uio);
894 int error = 0, cc; local
914 cc = min(uio_resid(uio),
916 uiomove((caddr_t)&tp->t_termios, cc,
1171 int cc = 0; local
1290 u_char *cc; local
[all...]
H A Dtty.c479 ((c) == '\n' || (((c) == cc[VEOF] || \
480 (c) == cc[VEOL] || ((c) == cc[VEOL2] && lflag & IEXTEN)) && \
499 cc_t *cc; local
537 cc = tp->t_cc;
597 if (CCEQ(cc[VLNEXT], c)) {
608 if (CCEQ(cc[VDISCARD], c)) {
625 if (CCEQ(cc[VINTR], c) || CCEQ(cc[VQUIT], c)) {
640 CCEQ(cc[VINT
1941 cc_t *cc = tp->t_cc; local
2284 int cc, ce; local
[all...]
/darwin-on-arm/xnu/libsyscall/xcodescripts/
H A Dmach_install_mig.sh39 MIGCC=`xcrun -sdk "$SDKROOT" -find cc`
105 $MIG -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_HEADER_DST/$MIG_NAME.h" $MIG_ONLY_GEN_HEADERS $MIG_DEFINES $MIG_DEFS_INCFLAGS $SRC/$mig
112 $MIG -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_PRIVATE_HEADER_DST/$MIG_NAME.h" $MIG_ONLY_GEN_HEADERS $MIG_DEFINES $MIG_DEFS_INCFLAGS $SRC/$mig
127 $MIG -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_INTERNAL_HEADER_DST/${MIG_NAME}_internal.h" $MIG_ONLY_GEN_HEADERS $MIG_DEFINES $MIG_DEFS_INCFLAGS $SRC/$mig
138 $MIG -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_ARCH_DST/$MIG_NAME.h" $MIG_ONLY_GEN_HEADERS $MIG_DEFINES $MIG_DEFS_INCFLAGS $MIG_DEFINES $SRC/$mig
H A Dcompile-syscalls.pl61 chomp(my $CC = `xcrun -sdk "$ENV{'SDKROOT'}" -find cc`);
/darwin-on-arm/xnu/tools/tests/jitter/
H A DMakefile4 CC=xcrun -sdk "$(SDKROOT)" cc
/darwin-on-arm/xnu/bsd/dev/arm/
H A Dkm.c343 int cc = -1; local
349 cc = ndqb(&tp->t_outq, 0);
350 if (cc == 0)
356 cc = min(cc, sizeof(buf));
360 (void) q_to_b(&tp->t_outq, buf, cc);
361 for (cp = buf; cp < &buf[cc]; cp++) {
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dkm.c345 int cc = -1; local
350 cc = ndqb(&tp->t_outq, 0);
351 if (cc == 0)
357 cc = min(cc, sizeof(buf));
359 (void) q_to_b(&tp->t_outq, buf, cc);
360 for (cp = buf; cp < &buf[cc]; cp++) {
/darwin-on-arm/xnu/EXTERNAL_HEADERS/corecrypto/
H A Dccmode_factory.h20 const struct ccmode_cbc *cc##_cipher_##_cbc_##_dir_##_mode(void) \
22 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_##_dir_##_mode(); \
31 const struct ccmode_ctr *cc##_cipher_##_ctr_crypt_mode(void) \
33 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_encrypt_mode(); \
42 const struct ccmode_ofb *cc##_cipher_##_ofb_crypt_mode(void) \
44 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_encrypt_mode(); \
54 const struct ccmode_##_mode_ *cc##_cipher_##_##_mode_##_##_dir_##_mode(void) \
56 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_encrypt_mode(); \
69 const struct ccmode_xts *cc##_cipher_##_xts_##_dir_##_mode(void) \
71 const struct ccmode_ecb *ecb=cc##_cipher
[all...]
H A Dcchmac.h13 #include <corecrypto/cc.h>
H A Dccdigest.h13 #include <corecrypto/cc.h>
H A Dccmode_impl.h13 #include <corecrypto/cc.h>
H A Dcc_priv.h13 #include <corecrypto/cc.h>
/darwin-on-arm/xnu/tools/tests/libMicro/apple/
H A DMakefile.com.Darwin43 COMPILER_VERSION_CMD_cc=cc -V 2>&1 | egrep Sun
/darwin-on-arm/xnu/bsd/sys/
H A Dtty.h270 int b_to_q(const u_char *cp, int cc, struct clist *q);
274 void ndflush(struct clist *q, int cc);
279 int q_to_b(struct clist *q, u_char *cp, int cc);
/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.h336 { uch cc = (c); \
338 s->l_buf[s->last_lit++] = cc; \
339 s->dyn_ltree[cc].Freq++; \
/darwin-on-arm/xnu/tools/tests/libMicro/
H A DMakefile.com41 COMPILER_VERSION_CMD_cc=cc -V 2>&1 | egrep Sun
H A DMakefile.com.Darwin43 COMPILER_VERSION_CMD_cc=cc -V 2>&1 | egrep Sun
H A DREADME33 As long as cc is in your path, (gcc on Linux),
/darwin-on-arm/xnu/tools/tests/execperf/
H A DMakefile3 CC = xcrun -sdk $(SDKROOT) cc
/darwin-on-arm/xnu/libsyscall/
H A DMakefile154 $(MIG) $(MIGFLAGS) -arch $(ARCHS) -cc $(CC) -user $(GENROOT)/$(notdir $*User.c) -server /dev/null -header $(GENROOT)/$(notdir $*.h) -sheader /dev/null -dheader /dev/null $*.defs
161 $(MIG) $(MIGFLAGS) -arch $(ARCHS) -cc $(CC) -server $(GENROOT)/$(notdir $*Server.c) -user $(GENROOT)/$(notdir $*User.c) -header $(GENROOT)/$(notdir $*.h) -sheader $(GENROOT)/$(notdir $*Server.h) -dheader /dev/null $*.defs
/darwin-on-arm/xnu/tools/tests/xnu_quick_test/
H A Dmakefile18 HOSTCC = cc
19 CC = xcrun -sdk $(SDKROOT) cc
/darwin-on-arm/xnu/makedefs/
H A DMakeInc.cmd183 export HOST_CC := $(shell $(XCRUN) -sdk $(HOST_SDKROOT) -find cc)

Completed in 62 milliseconds

12