HomeSort by relevance Sort by last modified time
    Searched refs:Distance (Results 26 - 42 of 42) sorted by null

12

  /external/llvm/lib/Support/
CommandLine.cpp 217 unsigned Distance = StringRef(Name).edit_distance(
219 if (!Best || Distance < BestDistance) {
221 BestDistance = Distance;
    [all...]
YAMLParser.cpp 380 /// @brief Skip \a Distance UTF-8 code units. Updates \a Cur and \a Column.
381 void skip(uint32_t Distance);
918 void Scanner::skip(uint32_t Distance) {
919 Current += Distance;
920 Column += Distance;
    [all...]
  /external/skia/include/core/
SkPoint.h 210 /** Return the euclidian distance from (0,0) to the point
395 /** Returns the euclidian distance from (0,0) to (x,y)
410 /** Returns the euclidian distance between a and b
412 static SkScalar Distance(const SkPoint& a, const SkPoint& b) {
457 * Returns the squared distance to the infinite line between two pts. Also
466 * Returns the distance to the infinite line between two pts. Also
477 * Returns the squared distance to the line segment between pts a and b
483 * Returns the distance to the line segment between pts a and b.
  /external/skia/legacy/include/core/
SkPoint.h 207 /** Return the euclidian distance from (0,0) to the point
342 /** Returns the euclidian distance from (0,0) to (x,y)
357 /** Returns the euclidian distance between a and b
359 static SkScalar Distance(const SkPoint& a, const SkPoint& b) {
404 * Returns the squared distance to the infinite line between two pts. Also
413 * Returns the distance to the infinite line between two pts. Also
424 * Returns the squared distance to the line segment between pts a and b
430 * Returns the distance to the line segment between pts a and b.
  /external/v8/src/ia32/
macro-assembler-ia32.cc 61 Label::Distance condition_met_distance) {
384 Label::Distance distance) {
389 j(above, fail, distance);
395 Label::Distance distance) {
400 j(below_equal, fail, distance);
403 j(above, fail, distance);
409 Label::Distance distance) {
    [all...]
assembler-ia32.h 615 // Distance between the address of the code target in the call instruction
618 // Distance between start of patched return sequence and the emitted address
622 // Distance between start of patched debug break slot and the emitted address
888 void jmp(Label* L, Label::Distance distance = Label::kFar);
897 Label::Distance distance = Label::kFar);
    [all...]
assembler-ia32.cc     [all...]
full-codegen-ia32.cc 62 Label::Distance distance = Label::kFar) {
64 EmitJump(not_carry, target, distance); // Always taken before patched.
69 Label::Distance distance = Label::kFar) {
71 EmitJump(carry, target, distance); // Never taken before patched.
89 void EmitJump(Condition cc, Label* target, Label::Distance distance) {
93 __ j(cc, target, distance);
350 int distance = masm_->SizeOfCodeGeneratedSince(back_edge_target) local
412 int distance = masm_->pc_offset(); local
    [all...]
code-stubs-ia32.cc 732 // shift distance.
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 114 /// matching this pattern at the start of \arg Buffer; a distance of zero
509 // match distance and the number of lines skipped to get to this match.
510 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable);
511 double Quality = Distance + (NumLinesForward / 100.);
  /external/v8/src/x64/
assembler-x64.h 595 // Distance between the address of the code target in the call instruction
598 // Distance between the start of the JS return sequence and where the
603 // Distance between start of patched debug break slot and where the
    [all...]
full-codegen-x64.cc 61 Label::Distance near_jump = Label::kFar) {
68 Label::Distance near_jump = Label::kFar) {
88 void EmitJump(Condition cc, Label* target, Label::Distance near_jump) {
    [all...]
code-stubs-x64.cc 735 Label::Distance non_smi_near,
736 Label::Distance slow_near) {
748 Label::Distance non_smi_near) {
    [all...]
assembler-x64.cc 1221 void Assembler::j(Condition cc, Label* L, Label::Distance distance) {
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 385 // Distance which a touch needs to move to be considered a drag
400 // When we see a move, measure the distance from the last touchStart
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 226 milliseconds

12