HomeSort by relevance Sort by last modified time
    Searched refs:max_distance (Results 1 - 25 of 26) sorted by null

1 2

  /external/brotli/c/enc/
backward_references_inc.h 38 size_t max_distance = BROTLI_MIN(size_t, position, max_backward_limit); local
46 max_distance, gap, params->dist.max_distance, &sr);
59 max_distance = BROTLI_MIN(size_t, position + 1, max_backward_limit);
63 max_distance, gap, params->dist.max_distance, &sr2); local
79 max_distance = BROTLI_MIN(size_t, position, max_backward_limit);
84 sr.distance, max_distance + gap, dist_cache);
85 if ((sr.distance <= (max_distance + gap)) && distance_code > 0) {
params.h 27 size_t max_distance; member in struct:BrotliDistanceParams
backward_references.c 25 size_t max_distance,
27 if (distance <= max_distance) {
hash_composite_inc.h 125 const size_t gap, const size_t max_distance,
130 max_distance, out);
133 max_distance, out);
backward_references_hq.c 413 const size_t max_distance = BROTLI_MIN(size_t, cur_ix, max_backward_limit); local
456 if (BROTLI_PREDICT_FALSE(backward > max_distance + gap)) {
460 if (backward <= max_distance) {
509 TO_BROTLI_BOOL(dist > max_distance + gap);
590 size_t max_distance = local
592 BROTLI_BOOL is_dictionary = TO_BROTLI_BOOL(distance > max_distance + gap);
674 const size_t max_distance = BROTLI_MIN(size_t, pos, max_backward_limit); local
679 ringbuffer, ringbuffer_mask, pos, num_bytes - i, max_distance,
753 size_t max_distance = BROTLI_MIN(size_t, pos, max_backward_limit); local
765 max_distance, gap, params
    [all...]
hash.h 154 size_t max_distance, HasherSearchResult* out) {
180 if (backward > max_distance) {
197 size_t max_backward, size_t max_distance,
212 max_length, max_backward, max_distance, out);
hash_longest_match_quickly_inc.h 132 const size_t gap, const size_t max_distance,
227 max_distance, out, BROTLI_TRUE);
hash_rolling_inc.h 159 const size_t gap, const size_t max_distance,
213 BROTLI_UNUSED(max_distance);
metablock.c 31 uint32_t alphabet_size, max_distance; local
38 max_distance = ndirect + (1U << (BROTLI_MAX_DISTANCE_BITS + npostfix + 2)) -
50 max_distance = BROTLI_MAX_ALLOWED_DISTANCE - (bound[npostfix] - ndirect);
52 max_distance = (3U << 29) - 4 + (ndirect - bound[npostfix]);
54 max_distance = BROTLI_MAX_ALLOWED_DISTANCE;
59 dist_params->max_distance = max_distance;
112 if (distance > new_params->max_distance) {
hash_forgetful_chain_inc.h 161 const size_t gap, const size_t max_distance,
246 max_distance, out, BROTLI_FALSE);
hash_longest_match64_inc.h 165 const size_t gap, const size_t max_distance,
263 max_distance, out, BROTLI_FALSE);
hash_longest_match_inc.h 158 const size_t gap, const size_t max_distance,
255 max_distance, out, BROTLI_FALSE);
hash_to_binary_tree_inc.h 256 if (distance <= params->dist.max_distance) {
encode.c 722 params->dist.max_distance = BROTLI_MAX_DISTANCE;
891 uint64_t max_distance = last_processed_pos < max_backward_distance ? local
    [all...]
  /external/v8/src/asmjs/
switch-logic.cc 32 const int max_distance = 2; local
40 if (cases->at(i) - cases->at(i - 1) > max_distance) {
  /device/google/contexthub/firmware/os/algos/calibration/diversity_checker/
diversity_checker.h 30 * Furthermore we also check if k > max_distance, since that data is most likely
95 // Number of data points that violated the max_distance condition.
106 float max_distance; member in struct:DiversityChecker
109 // max_distance = max_distance_tuning_param_sq * (local_field)^2.
139 // max_distance.
143 // Resetting the memory and the counters, leaves threshold and max_distance
163 // -> will return false if maximum number of max_distance is reached
176 // max_distance = (max_distance_tuning_param * local_field)^2
diversity_checker.c 38 // Updating the threshold and max_distance using assumed local field.
101 // if k > max_distance, count and leave the function.
102 if (norm_squared_result > diverse_data->max_distance) {
213 diverse_data->max_distance = diverse_data->max_distance_tuning_param_sq *
  /external/brotli/c/dec/
state.h 122 int max_distance; member in struct:BrotliDecoderStateStruct
state.c 78 s->max_distance = 0;
decode.c     [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
validators_unittest.py 509 max_distance = self._get_max_distance(filename, self.criteria, lumpy)
510 self.assertAlmostEqual(max_distance, 5.464430436926)
521 max_distance = self._get_max_distance(filename, self.criteria, lumpy)
522 self.assertAlmostEqual(max_distance, 4.670861210146)
    [all...]
  /external/brotli/research/
draw_histogram.cc 28 DEFINE_uint64(max_distance, 1 << 30, "Maximum distance.");
  /external/ImageMagick/MagickCore/
threshold.c 583 max_distance,
639 max_distance=0.0;
645 if ((distance > max_distance) && (segment > 0.0))
648 max_distance=distance;
656 if ((distance > max_distance) && (segment < 0.0))
659 max_distance=distance;
576 max_distance, local
    [all...]
  /device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_cal/
mag_cal.c 201 CAL_ENCODE_FLOAT(moc->diversity_checker.max_distance, 3),
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 804 max_distance = self.packets.get_max_distance(self.slot, UNIT.MM)
806 self.log_details(msg % (self.slot, max_distance))
808 firmware_log.Metric(self.mnprops.MAX_DISTANCE, max_distance)
810 self.vlog.score = self.fc.mf.grade(max_distance)
    [all...]

Completed in 723 milliseconds

1 2