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

1 2

  /external/chromium_org/content/common/input/
synthetic_smooth_scroll_gesture_params.cc 23 distances(other.distances),
synthetic_smooth_scroll_gesture_params.h 28 std::vector<gfx::Vector2d> distances; // Positive X/Y to scroll left/up. member in struct:content::SyntheticSmoothScrollGestureParams
input_param_traits_unittest.cc 44 EXPECT_EQ(a->distances.size(), b->distances.size());
45 for (size_t i = 0; i < a->distances.size(); i++)
46 EXPECT_EQ(a->distances[i], b->distances[i]);
195 gesture_params->distances.push_back(gfx::Vector2d(123, -789));
196 gesture_params->distances.push_back(gfx::Vector2d(-78, 43));
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_smooth_scroll_gesture.cc 87 params_.distances[current_scroll_segment_];
198 static_cast<int>(params_.distances.size()));
207 static_cast<int>(params_.distances.size()) - 1);
214 DCHECK_GE(params_.distances.size(), 1ul);
215 gfx::Vector2d& first_scroll_distance = params_.distances[0];
226 return params_.distances[current_scroll_segment_];
232 params_.distances[current_scroll_segment_]);
238 static_cast<int>(params_.distances.size()));
240 1e6 * (params_.distances[current_scroll_segment_].Length() /
261 static_cast<int>(params_.distances.size()))
    [all...]
synthetic_gesture_controller_unittest.cc 562 params.distances.push_back(gfx::Vector2d(0, 123));
573 EXPECT_EQ(AddTouchSlopToVector(params.distances[0], target_),
583 params.distances.push_back(gfx::Vector2d(-234, 0));
594 EXPECT_EQ(AddTouchSlopToVector(params.distances[0], target_),
624 params.distances.push_back(gfx::Vector2d(413, -83));
636 scroll_target->start_to_end_distance(), params.distances[0], target_);
648 params.distances.push_back(gfx::Vector2d(21, -12));
663 scroll_target->start_to_end_distance(), params.distances[0], target_);
676 params.distances.push_back(gfx::Vector2d(-43, 19));
691 scroll_target->start_to_end_distance(), params.distances[0], target_)
    [all...]
touch_action_browsertest.cc 134 params.distances.push_back(-distance);
  /external/chromium_org/third_party/lzma_sdk/
LzFind.h 78 UInt32 *distances, UInt32 maxLen);
90 typedef UInt32 (*Mf_GetMatches_Func)(void *object, UInt32 *distances);
106 UInt32 Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
107 UInt32 Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
LzFind.c 324 UInt32 *distances, UInt32 maxLen)
331 return distances;
343 *distances++ = maxLen = len;
344 *distances++ = delta - 1;
346 return distances;
355 UInt32 *distances, UInt32 maxLen)
366 return distances;
380 *distances++ = maxLen = len;
381 *distances++ = delta - 1;
386 return distances;
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzFind.h 79 UInt32 *distances, UInt32 maxLen);
91 typedef UInt32 (*Mf_GetMatches_Func)(void *object, UInt32 *distances);
107 UInt32 Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
108 UInt32 Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
LzFind.c 325 UInt32 *distances, UInt32 maxLen)
332 return distances;
344 *distances++ = maxLen = len;
345 *distances++ = delta - 1;
347 return distances;
356 UInt32 *distances, UInt32 maxLen)
367 return distances;
381 *distances++ = maxLen = len;
382 *distances++ = delta - 1;
387 return distances;
    [all...]
  /external/lzma/C/
LzFind.h 78 UInt32 *distances, UInt32 maxLen);
90 typedef UInt32 (*Mf_GetMatches_Func)(void *object, UInt32 *distances);
106 UInt32 Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
107 UInt32 Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
LzFind.c 324 UInt32 *distances, UInt32 maxLen)
331 return distances;
343 *distances++ = maxLen = len;
344 *distances++ = delta - 1;
346 return distances;
355 UInt32 *distances, UInt32 maxLen)
366 return distances;
380 *distances++ = maxLen = len;
381 *distances++ = delta - 1;
386 return distances;
    [all...]
LzFindMt.c 240 UInt32 *distances = _distances + 1; local
268 *distances++ = maxLen = len;
269 *distances++ = delta - 1;
298 UInt32 num = (UInt32)(distances - _distances);
311 void BtGetMatches(CMatchFinderMt *p, UInt32 *distances)
316 distances[1] = p->hashNumAvail;
322 distances[1] = numProcessed + p->hashNumAvail;
326 distances[curPos++] = 0;
347 UInt32 *startDistances = distances + curPos;
361 distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos) , size, &posRes (…)
    [all...]
LzFindMt.h 41 typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances);
  /external/lzma/CS/7zip/Compress/LZ/
IMatchFinder.cs 21 UInt32 GetMatches(UInt32[] distances);
LzBinTree.cs 118 public UInt32 GetMatches(UInt32[] distances)
160 distances[offset++] = maxLen = 2;
161 distances[offset++] = _pos - curMatch2 - 1;
168 distances[offset++] = maxLen = 3;
169 distances[offset++] = _pos - curMatch3 - 1;
194 distances[offset++] = maxLen = kNumHashDirectBytes;
195 distances[offset++] = _pos - curMatch - 1;
223 distances[offset++] = maxLen = len;
224 distances[offset++] = delta - 1;
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 118 public int GetMatches(int[] distances) throws IOException
160 distances[offset++] = maxLen = 2;
161 distances[offset++] = _pos - curMatch2 - 1;
168 distances[offset++] = maxLen = 3;
169 distances[offset++] = _pos - curMatch3 - 1;
194 distances[offset++] = maxLen = kNumHashDirectBytes;
195 distances[offset++] = _pos - curMatch - 1;
223 distances[offset++] = maxLen = len;
224 distances[offset++] = delta - 1;
  /external/chromium_org/content/common/
input_messages.h 83 IPC_STRUCT_TRAITS_MEMBER(distances)
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.cpp 495 DistanceLessThan(double* distances) : fDistances(distances) { }
552 SkTArray<double, true> distances; local
553 distances.push_back_n(entries);
567 distances[row + iIndex] = dist; // oStart distance from iStart
575 SkTQSort<int>(sortedDist.begin(), sortedDist.end() - 1, DistanceLessThan(distances.begin()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
HeapSnapshot.js 947 this._progress.updateStatus("Calculating distances\u2026");
    [all...]
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 543 gesture_params->distances.push_back(distance);
635 gesture_params->distances.push_back(distance);
636 gesture_params->distances.push_back(-distance + overscroll);
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java     [all...]
  /external/blktrace/btt/doc/
btt.tex 234 Another useful measure is the variability in the sector distances
243 The first of the two sections displays values for Q2Q seek distances --
245 are to each other. The second section shows D2D seek distances --
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
Simplify.cpp     [all...]
  /external/chromium_org/third_party/d3/src/
d3.js     [all...]

Completed in 1884 milliseconds

1 2