HomeSort by relevance Sort by last modified time
    Searched refs:between (Results 226 - 250 of 1197) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skqp/src/utils/
SkDashPath.cpp 44 // Adjust phase to be between 0 and len, "flipping" phase if negative.
156 // Returns true is b is between a and c, that is: a <= b <= c, or a >= b >= c.
162 static bool between(SkScalar a, SkScalar b, SkScalar c) {
258 if (v.fX ? between(bounds.fTop, pts[0].fY, bounds.fBottom) :
259 between(bounds.fLeft, pts[0].fX, bounds.fRight)) {
  /prebuilts/go/darwin-x86/src/runtime/
chan.go 163 // 'not ready for sending', even if the channel is closed between the two observations,
164 // they imply a moment between the two when the channel was both not yet closed
224 // No stack splits between assigning elem and enqueuing mysg
310 // So make sure that no preemption points can happen between read & use.
508 // No stack splits between assigning elem and enqueuing mysg
719 // select, there is a small window between the goroutine
  /prebuilts/go/linux-x86/src/runtime/
chan.go 163 // 'not ready for sending', even if the channel is closed between the two observations,
164 // they imply a moment between the two when the channel was both not yet closed
224 // No stack splits between assigning elem and enqueuing mysg
310 // So make sure that no preemption points can happen between read & use.
508 // No stack splits between assigning elem and enqueuing mysg
719 // select, there is a small window between the goroutine
  /external/v8/benchmarks/
base.js 101 // Runs all registered benchmark suites and optionally yields between
231 // This function starts running a suite, but stops between each
244 // separate steps to allow the framework to yield between any of the
  /prebuilts/go/darwin-x86/src/image/color/
ycbcr.go 164 // Conversion between RGB and Y'CbCr is lossy and there are multiple, slightly
165 // different formulae for converting between the two. This package follows
174 // subtle difference between doing this and having YCbCr satisfy the Color
  /prebuilts/go/linux-x86/src/image/color/
ycbcr.go 164 // Conversion between RGB and Y'CbCr is lossy and there are multiple, slightly
165 // different formulae for converting between the two. This package follows
174 // subtle difference between doing this and having YCbCr satisfy the Color
  /build/soong/android/
proto.go 17 // TODO(ccross): protos are often used to communicate between multiple modules. If the only
  /compatibility/cdd/5_multimedia/
5_11_unprocessed-audio.md 37 (whereas the SNR is measured as the difference between 94 dB SPL and equivalent
  /compatibility/cdd/7_hardware-compatibility/
7_3_sensors.md 51 reported timestamp values between consecutive events.
113 between device reboots.
154 * [C-1-4] MUST be capable of measuring between -900 µT and +900 µT on each
161 bias, and preserve the compensation parameters between device reboots.
284 compensation parameters between device reboots.
374 * MUST have a measurement range between at least -8g and +8g.
394 * MUST have a measurement range between at least -1000 and +1000 dps.
412 * MUST have a measurement range between at least -900 and +900 uT.
424 * MUST have a measurement range between at least 300 and 1100 hPa.
530 * [C-1-9] MUST NOT enable 3rd-party applications to distinguish between
    [all...]
  /external/curl/packages/vms/
build_curl-config_script.com 123 $ ! Replace between pairs of @ by alternating the elements.
  /external/eigen/lapack/
slarfg.f 85 *> The increment between elements of X. INCX > 0.
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_error_sse2.asm 73 ; Compute the sum of squared difference between two tran_low_t vectors.
  /external/skia/src/core/
SkGeometry.cpp 169 Solve for t, only if it fits between 0 < t < 1
1205 static bool between(SkScalar a, SkScalar b, SkScalar c) { function
    [all...]
SkPath.cpp 2770 static bool between(SkScalar a, SkScalar b, SkScalar c) { function
    [all...]
  /external/skia/src/pathops/
SkOpSpan.cpp 175 if (between(min, s, max) && between(min, e, max)) {
SkPathOpsQuad.cpp 240 return between(fPts[0].fX, fPts[1].fX, fPts[2].fX);
244 return between(fPts[0].fY, fPts[1].fY, fPts[2].fY);
254 To find B, compute the point halfway between t1 and t2:
368 Solve for t, only if it fits between 0 < t < 1
  /external/skia/tools/lua/
glyph-usage.lua 150 io.write("/* runs of unique glyph IDs, with a -1 sentinel between different runs */\n")
  /external/skqp/src/core/
SkGeometry.cpp 169 Solve for t, only if it fits between 0 < t < 1
1198 static bool between(SkScalar a, SkScalar b, SkScalar c) { function
    [all...]
SkPath.cpp 2886 static bool between(SkScalar a, SkScalar b, SkScalar c) { function
    [all...]
  /external/skqp/src/pathops/
SkOpSpan.cpp 175 if (between(min, s, max) && between(min, e, max)) {
SkPathOpsQuad.cpp 237 return between(fPts[0].fX, fPts[1].fX, fPts[2].fX);
241 return between(fPts[0].fY, fPts[1].fY, fPts[2].fY);
251 To find B, compute the point halfway between t1 and t2:
365 Solve for t, only if it fits between 0 < t < 1
  /external/skqp/tools/lua/
glyph-usage.lua 150 io.write("/* runs of unique glyph IDs, with a -1 sentinel between different runs */\n")
  /external/swiftshader/third_party/LLVM/utils/
codegen-diff 92 between the code that B<llc> generated and the code that B<lli> generated.
  /external/tensorflow/tensorflow/contrib/mpi/
README.md 48 The implementation takes over the responsibility for sending and receiving tensors between separate processes. This is facilitated by TensorFlow's ability to support different protocols. In this particular implementation, the standard gRPC library is used for all administrative operations while the MPI functions take over the tensor exchanges. On the sending side the tensors are placed in the standard waiting tables and nothing is changed there. On the receiving side the RecvFromRemoteAsync function is newly implemented and instead of requesting the data via gRPC the data is now requested via MPI calls.
66 The MPI processes identify each other using an MPI process ID. The TensorFlow gRPC processes identify each other using a name. During launch we create a mapping between the TensorFlow process name and the MPI process ID to allow the processes to communicate with the correct destinations when using MPI operations.
  /external/walt/docs/
DragLatency.md 31 The red 'x' marks are points where the finger was at times _t<sub>i</sub>_ when the finger went into or out of the laser beam. The y distance between the two lines of x marks is roughly the thickness of the finger. For now consider only one of the lines, e.g. the upper one.

Completed in 515 milliseconds

1 2 3 4 5 6 7 8 91011>>