Lines Matching refs:p2

220         const int p2;
234 p2(_p2), p3(_p3), coeff(_coeff), size(_size), width(_width),
373 void insertModhistSpec(int p1, int p2) {
378 if (modhist_lengths[j] < p2 + 1) {
379 modhist_lengths[j] = p2 + 1;
381 if (p2 >= modghist_length) {
382 modghist_length = p2 + 1;
387 void insertModpathSpec(int p1, int p2) {
392 if (modpath_lengths[j] < p2 + 1) {
393 modpath_lengths[j] = p2 + 1;
395 if (p2 >= path_length) {
396 path_length = p2 + 1;
485 GHIST(int p1, int p2, double coeff, int size, int width,
487 : HistorySpec(p1, p2, 0, coeff, size, width, mpp)
494 p2);
528 if (mpp.ghist_length <= p2) {
529 mpp.ghist_length = p2 + 1;
536 ACYCLIC(int p1, int p2, int p3, double coeff, int size, int width,
538 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
545 int shift = p2;
584 MODHIST(int p1, int p2, double coeff, int size, int width,
586 : HistorySpec(p1, p2, 0, coeff, size, width, mpp)
593 int b = p2;
607 mpp.insertModhistSpec(p1, p2);
628 RECENCY(int p1, int p2, int p3, double coeff, int size, int width,
630 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
637 int shift = p2;
691 PATH(int p1, int p2, int p3, double coeff, int size, int width,
693 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
700 int shift = p2;
759 MODPATH(int p1, int p2, int p3, double coeff, int size, int width,
761 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
768 int depth = p2;
780 mpp.insertModpathSpec(p1, p2);
786 GHISTPATH(int p1, int p2, int p3, double coeff, int size, int width,
788 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
795 int shift = p2;
858 GHISTMODPATH(int p1, int p2, int p3, double coeff, int size, int width,
860 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
867 int depth = p2;
883 mpp.insertModhistSpec(p1, p2);
884 mpp.insertModpathSpec(p1, p2);
890 BLURRYPATH(int p1, int p2, int p3, double coeff, int size, int width,
892 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
899 int depth = p2;
925 if (mpp.blurrypath_bits[p1].size() < p2) {
926 mpp.blurrypath_bits[p1].resize(p2);
928 for (int j = 0; j < p2; j += 1) {
977 SGHISTPATH(int p1, int p2, int p3, double coeff, int size, int width,
979 : HistorySpec(p1, p2, p3, coeff, size, width, mpp)
986 int b = p2;