HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 401 - 425 of 1231) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
xvmc_bench.c 196 struct timeval start, stop, diff; local
283 timeval_subtract(&diff, &stop, &start);
284 diff_secs = (double)diff.tv_sec + (double)diff.tv_usec / 1000000.0;
  /external/pdfium/core/fpdfapi/edit/
cpdf_pagecontentgenerator.cpp 217 CFX_PointF diff = pPoints[2].m_Point - pPoints[0].m_Point; local
218 *buf << pPoints[0].m_Point.x << " " << pPoints[0].m_Point.y << " " << diff.x
219 << " " << diff.y << " re";
  /external/pdfium/xfa/fwl/
cfwl_scrollbar.cpp 278 CFX_PointF diff = point - m_cpTrackPoint; local
283 fPos = fRange * diff.y /
286 fPos = fRange * diff.x /
  /external/python/cpython2/Demo/pdist/
rcvs.py 21 # - cvs diff -rREVA -rREVB
156 def diff(self, opts = []): member in class:MyFile
178 print 'diff %s -r%s %s' % (flags, rev, fn)
179 sts = os.system('diff %s %s %s' % (flags, tf.name, fn))
293 def diff(self, files, opts): member in class:RCVS
295 e.diff(opts)
432 """diff [difflags] [file] ..."""
433 self.cvs.diff(files, opts)
  /external/rmi4utils/rmidevice/
rmidevice.cpp 327 long long diff; local
328 diff = (end->tv_sec - start->tv_sec) * 1000 * 1000;
329 diff += (end->tv_nsec - start->tv_nsec) / 1000;
330 return diff;
  /external/skia/gm/
shapes_as_paths.cpp 51 int diff = local
56 if (diff > maxDiff) {
59 maxDiff = diff;
82 // Draw zoom of largest pixel diff
  /external/skia/samplecode/
SampleColorFilter.cpp 30 int diff = fake - orig; local
33 if (diff > 4) {
35 } else if (diff < -4) {
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 219 double diff; local
223 diff = fabs(t - newT);
229 worstStep[largeBits] = SkTMax(worstStep[largeBits], diff);
  /external/skqp/gm/
shapes_as_paths.cpp 50 int diff = local
55 if (diff > maxDiff) {
58 maxDiff = diff;
81 // Draw zoom of largest pixel diff
  /external/skqp/samplecode/
SampleColorFilter.cpp 30 int diff = fake - orig; local
33 if (diff > 4) {
35 } else if (diff < -4) {
  /external/skqp/tests/
PathOpsCubicLineIntersectionIdeas.cpp 219 double diff; local
223 diff = fabs(t - newT);
229 worstStep[largeBits] = SkTMax(worstStep[largeBits], diff);
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/
BasicMarkerTest.java 56 short diff = Differentiator.getDiffentiator(); field in class:BasicMarkerTest
146 final String diffPrefix = "NEW_" + diff;
159 final String diffPrefix = "NEW_" + diff;
179 final String diffPrefix = "homonym" + diff;
  /external/swiftshader/src/OpenGL/compiler/
Initialize.cpp 449 TField *diff = new TField(new TType(EbtFloat, EbpHigh, EvqGlobal, 1), NewPoolTString("diff"), zeroSourceLoc); local
452 fields->push_back(diff);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
xray-account.cpp 133 template <class T> T diff(T L, T R) { return std::max(L, R) - std::min(L, R); } function in namespace:__anon43176
161 recordLatency(Top.first, diff(Top.second, Record.TSC));
208 recordLatency(E.first, diff(E.second, Record.TSC));
  /external/tensorflow/tensorflow/core/common_runtime/
base_collective_executor.cc 62 int64 diff = local
66 DCHECK_EQ(0, diff % elt_bytes);
67 base_chunk_elts += (diff / elt_bytes);
  /external/tensorflow/tensorflow/core/kernels/
cwise_ops_gpu_common.cu.h 113 auto diff = x - y; local
114 z.device(d) = diff.abs() <= tolerance;
parameterized_truncated_normal_op_gpu.cu.cc 121 const T diff = normMax - normMin; local
156 } else if (diff < cutoff) {
171 z[i] = rand[i] * diff + normMin;
  /external/tensorflow/tensorflow/lite/testing/nnapi_tflite_zip_tests/
tflite_driver.cc 107 float diff = std::abs(computed - reference); local
112 error_is_large = (diff > kAbsoluteThreshold);
114 error_is_large = (diff > kRelativeThreshold * std::abs(reference));
  /external/tensorflow/tensorflow/lite/testing/
tflite_driver.cc 105 float diff = std::abs(computed - reference); local
110 error_is_large = (diff > kAbsoluteThreshold);
112 error_is_large = (diff > kRelativeThreshold * std::abs(reference));
  /external/u-boot/arch/arm/cpu/armv7/bcm235xx/
clk-core.c 164 unsigned long diff; local
171 diff = rate;
188 /* get the min diff */
189 if (abs(new_rate - rate) < diff) {
190 diff = abs(new_rate - rate);
  /external/u-boot/arch/arm/cpu/armv7/bcm281xx/
clk-core.c 164 unsigned long diff; local
171 diff = rate;
188 /* get the min diff */
189 if (abs(new_rate - rate) < diff) {
190 diff = abs(new_rate - rate);
  /external/u-boot/drivers/fpga/
zynqpl.c 340 u32 diff; local
348 diff = (u32)buf_start - (u32)buf;
349 if (diff) {
350 printf("%s: Bitstream is not validated yet (diff %x)\n",
351 __func__, diff);
  /external/u-boot/drivers/mtd/nand/
davinci_nand.c 230 u_int32_t diff = ecc_calc ^ ecc_nand; local
232 if (diff) {
233 if ((((diff >> 12) ^ diff) & 0xfff) == 0xfff) {
235 if ((diff >> (12 + 3)) < this->ecc.size) {
236 uint8_t find_bit = 1 << ((diff >> 12) & 7);
237 uint32_t find_byte = diff >> (12 + 3);
247 } else if (!(diff & (diff - 1))) {
  /external/u-boot/drivers/serial/
serial_ar933x.c 69 int diff; local
79 diff = abs(baudrate - baud);
80 if (diff < min_diff) {
81 min_diff = diff;
  /external/u-boot/drivers/spi/
cf_spi.c 200 int i, j, pbrcnt, brcnt, diff, tmp, dbr = 0; local
263 diff = tmp - cfslave->baudrate;
265 diff = cfslave->baudrate - tmp;
267 if (diff < bestmatch) {
268 bestmatch = diff;

Completed in 1992 milliseconds

<<11121314151617181920>>