Home | History | Annotate | Download | only in parallel

Lines Matching refs:difference_type

55     typedef _DifferenceTp difference_type;
60 difference_type k = 0;
61 for (difference_type j = 2; j <= length; j++)
87 typedef typename traits_type::difference_type difference_type;
91 difference_type pattern_length = end2 - begin2;
98 difference_type input_length = (end1 - begin1) - pattern_length;
101 difference_type result = (end1 - begin1);
102 difference_type *splitters;
112 std::max<difference_type>(1,
113 std::min<difference_type>(input_length, get_max_threads()));
115 difference_type advances[pattern_length];
123 splitters = new difference_type[num_threads + 1];
129 difference_type start = splitters[iam], stop = splitters[iam + 1];
131 difference_type pos_in_pattern = 0;