Home | History | Annotate | Download | only in mail

Lines Matching defs:mcount

666 	size_t mcount;
674 mcount = 1;
676 mcount++;
683 if (mcount == 1)
686 marray = csalloc(mcount, sizeof(*marray));
688 for (i = 0; i < mcount; i++) {
693 for (i = 1; i < mcount; i++) {
781 link_array(struct key_sort_s *marray, size_t mcount)
786 for (i = 0; i < mcount; i++) {
823 thread_array(struct key_sort_s *marray, size_t mcount, int cutit)
827 if (mcount == 0)
831 qsort(marray, mcount, sizeof(*marray), qsort_cmpfn);
832 link_array(marray, mcount);
839 for (i = 0; i < mcount; i++) {
848 for (j = 1; j < mcount; j++) {
940 size_t mcount, i;
946 mcount = get_msgCount();
948 if (mcount < 2) /* it's hard to thread so few messages! */
951 marray = csalloc(mcount + 1, sizeof(*marray));
959 for (i = 0; i < mcount; i++) {
975 for (i = 1; i < mcount; i++) {
987 for (i = 0; i < mcount; i++) {
1006 for (j = 0; j < mcount; j++) {
1435 field_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
1439 for (i = 0; i < mcount; i++) {
1449 subj_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
1457 for (i = 0; i < mcount; i++) {
1470 lines_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
1485 for (i = 0; i < mcount; i++) {
1495 size_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
1503 for (i = 0; i < mcount; i++) {
1512 mcount, struct message *mp,
1528 for (i = 0; i < mcount; i++) {
1544 from_load(struct key_sort_s *marray, size_t mcount, struct message *mp,
1552 for (i = 0; i < mcount; i++) {
1631 size_t mcount;
1637 mcount = get_msgCount();
1638 marray = csalloc(mcount + 1, sizeof(*marray));
1639 kp->loadfn(marray, mcount, current_thread.t_head, str,
1643 thread_array(marray, mcount, cutit);