Searched refs:ccount (Results 1 - 7 of 7) sorted by relevance

/linux-master/arch/xtensa/include/asm/
H A Dmtd-xip.h9 #define xip_currtime() (xtensa_get_sr(ccount))
10 #define xip_elapsed_since(x) ((xtensa_get_sr(ccount) - (x)) / 1000) /* should work up to 1GHz */
H A Dtimex.h40 return xtensa_get_sr(ccount);
43 static inline void set_ccount (unsigned long ccount) argument
45 xtensa_set_sr(ccount, ccount);
/linux-master/drivers/net/ppp/
H A Dppp_mppe.c102 unsigned ccount; /* 12-bit coherency count (seqno) */ member in struct:ppp_mppe_state
122 #define MPPE_CCOUNT_SPACE 0x1000 /* The size of the ccount space */
293 state->ccount = MPPE_CCOUNT_SPACE - 1;
369 state->ccount = (state->ccount + 1) % MPPE_CCOUNT_SPACE;
371 printk(KERN_DEBUG "mppe_compress[%d]: ccount %d\n", state->unit,
372 state->ccount);
373 put_unaligned_be16(state->ccount, obuf);
376 ((state->ccount & 0xff) == 0xff) || /* "flag" packet */
438 unsigned ccount; local
[all...]
/linux-master/arch/xtensa/kernel/
H A Dsmp.c196 unsigned long ccount; local
210 ccount = get_ccount();
211 while (!ccount);
213 WRITE_ONCE(cpu_start_ccount, ccount);
221 ccount = READ_ONCE(cpu_start_ccount);
222 } while (ccount && time_before(jiffies, timeout));
224 if (ccount) {
H A Dhead.S141 wsr a0, ccount # not really necessary, but nice
299 wsr a3, ccount
/linux-master/drivers/leds/trigger/
H A Dledtrig-pattern.c275 int ccount, cr, offset = 0; local
279 ccount = sscanf(buf + offset, "%u %u %n",
283 if (ccount != 2 ||
/linux-master/fs/xfs/
H A Dxfs_trace.h5035 __field(xfs_filblks_t, ccount)
5052 __entry->ccount = curr->br_blockcount;
5065 __entry->coff, __entry->cstart, __entry->ccount,

Completed in 297 milliseconds