Home
last modified time | relevance | path

Searched refs:ccount (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/net/ppp/
Dppp_mppe.c108 unsigned ccount; /* 12-bit coherency count (seqno) */ member
321 state->ccount = MPPE_CCOUNT_SPACE - 1; in mppe_init()
400 state->ccount = (state->ccount + 1) % MPPE_CCOUNT_SPACE; in mppe_compress()
403 state->ccount); in mppe_compress()
404 put_unaligned_be16(state->ccount, obuf); in mppe_compress()
407 ((state->ccount & 0xff) == 0xff) || /* "flag" packet */ in mppe_compress()
484 unsigned ccount; in mppe_decompress() local
510 ccount = MPPE_CCOUNT(ibuf); in mppe_decompress()
513 state->unit, ccount); in mppe_decompress()
529 if (state->stateful && ((ccount & 0xff) == 0xff) && !flushed) { in mppe_decompress()
[all …]
/Linux-v4.19/arch/xtensa/include/asm/
Dtimex.h50 unsigned long ccount; in get_ccount() local
51 RSR_CCOUNT(ccount); in get_ccount()
52 return ccount; in get_ccount()
55 static inline void set_ccount (unsigned long ccount) in set_ccount() argument
57 WSR_CCOUNT(ccount); in set_ccount()
/Linux-v4.19/arch/xtensa/kernel/
Dsmp.c194 unsigned long ccount; in boot_secondary() local
206 ccount = get_ccount(); in boot_secondary()
207 while (!ccount); in boot_secondary()
209 cpu_start_ccount = ccount; in boot_secondary()
Dhead.S139 wsr a0, ccount # not really necessary, but nice
288 wsr a3, ccount
/Linux-v4.19/drivers/scsi/lpfc/
Dlpfc_sli.c13337 int ccount = 0; in lpfc_sli4_sp_process_cq() local
13344 if (!(++ccount % cq->entry_repost)) in lpfc_sli4_sp_process_cq()
13365 if (!(++ccount % cq->entry_repost)) in lpfc_sli4_sp_process_cq()
13370 if (ccount > cq->CQ_max_cqe) in lpfc_sli4_sp_process_cq()
13371 cq->CQ_max_cqe = ccount; in lpfc_sli4_sp_process_cq()
13381 if (unlikely(ccount == 0)) in lpfc_sli4_sp_process_cq()
13790 int ccount = 0; in lpfc_sli4_hba_process_cq() local
13801 if (!(++ccount % cq->entry_repost)) in lpfc_sli4_hba_process_cq()
13806 if (ccount > cq->CQ_max_cqe) in lpfc_sli4_hba_process_cq()
13807 cq->CQ_max_cqe = ccount; in lpfc_sli4_hba_process_cq()
[all …]