HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 176 - 200 of 2078) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/python/cpython3/Doc/includes/sqlite3/
mysumaggr.py 7 def step(self, value): member in class:MySum
  /external/skia/gm/
stringart.cpp 43 SkScalar step = angle; variable
49 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
50 length*SkScalarSin(step) + center.fY);
53 step += angle;
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 54 static double binary_search(const SkDCubic& cubic, double step, const SkDPoint& pt, double t,
56 double firstStep = step;
66 if (step == 0) {
67 SkDebugf("binary search failed: step=%1.9g cubic=", firstStep);
74 double lastStep = step;
75 step /= 2;
80 // use larger x/y difference to choose step
82 t -= step;
92 t += step;
207 double step = 1e-6
    [all...]
  /external/skqp/gm/
stringart.cpp 43 SkScalar step = angle; variable
49 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
50 length*SkScalarSin(step) + center.fY);
53 step += angle;
  /external/skqp/tests/
PathOpsCubicLineIntersectionIdeas.cpp 54 static double binary_search(const SkDCubic& cubic, double step, const SkDPoint& pt, double t,
56 double firstStep = step;
66 if (step == 0) {
67 SkDebugf("binary search failed: step=%1.9g cubic=", firstStep);
74 double lastStep = step;
75 step /= 2;
80 // use larger x/y difference to choose step
82 t -= step;
92 t += step;
207 double step = 1e-6
    [all...]
  /external/tensorflow/tensorflow/cc/profiler/
profiler.h 62 /// generated by a TensorFlow session run call. `step` is the key
64 /// `step` in `options` to seletively profile the corresponding `run_meta`.
65 /// Multiple different `run_meta` can be keyed by the same `step` in order
67 void AddStep(int64 step, const RunMetadata& run_meta);
  /external/tensorflow/tensorflow/core/lib/monitoring/
mobile_counter.h 33 void IncrementBy(int64 step) {}
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Histogram.java 36 int step = 8; local
37 int steps = (h + step - 1) / step;
41 mScript.set_gStep(step);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Histogram.java 42 int step = 8; local
43 int steps = (h + step - 1) / step;
47 mScript.set_gStep(step);
  /external/adhd/cras/src/server/
cras_volume_curve.c 13 /* Simple curve with configurable max volume and volume step. */
17 long step; member in struct:stepped_curve
23 return c->max_vol - (c->step * (MAX_VOLUME - volume));
26 /* Curve that has each step explicitly called out by value. */
48 /* Default to max volume of 0dBFS, and a step of 0.5dBFS. */
62 curve->step = volume_step;
  /external/curl/src/
tool_cb_see.c 72 long step = (left > OUR_MAX_SEEK_O) ? OUR_MAX_SEEK_L : (long)left; local
73 if(LSEEK_ERROR == lseek(in->fd, step, SEEK_CUR))
76 left -= step;
  /external/deqp/framework/randomshaders/
rsgUtils.hpp 53 inline float getQuantizedFloat (de::Random& rnd, float min, float max, float step)
55 int numSteps = (int)((max-min)/step);
56 return min + step * (float)rnd.getInt(0, numSteps);
  /external/opencv/otherlibs/highgui/
grfmt_exr.h 65 bool ReadData( uchar* data, int step, int color );
73 void ChromaToBGR( float *data, int numlines, int step );
95 bool WriteImage( const uchar* data, int step,
grfmt_tiff.h 100 bool ReadData( uchar* data, int step, int color );
120 bool ReadData( uchar* data, int step, int color );
154 bool WriteImage( const uchar* data, int step,
grfmt_bmp.cpp 187 bool GrFmtBmpReader::ReadData( uchar* data, int step, int color )
204 data += (m_height - 1)*step;
205 step = -step;
227 for( y = 0; y < m_height; y++, data += step )
241 for( y = 0; y < m_height; y++, data += step )
307 data = FillUniColor( data, line_end, step, width3,
311 data = FillUniGray( data, line_end, step, width3,
329 for( y = 0; y < m_height; y++, data += step )
359 data = FillUniColor( data, line_end, step, width3,
    [all...]
  /external/python/cpython2/Lib/test/
test_buffer.py 22 # Skip step 0 (invalid)
23 for step in indices[1:]:
24 self.assertEqual(b[start:stop:step],
25 s[start:stop:step])
  /external/skia/infra/bots/recipe_modules/flavor/
flutter_flavor.py 33 self.m.step,
50 self.m.step,
56 self.m.step,
  /external/valgrind/gdbserver_tests/
mcbreak.stdoutB.exp 8 old_pc has changed after step
10 old_pc has changed after step
13 old_pc has changed after step
19 old_pc has changed after step
21 old_pc has changed after step
49 old_pc has changed after step
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner.go 29 if scan.step(scan, c) == scanError {
45 v := scan.step(scan, c)
52 if scan.step(scan, ' ') == scanEnd {
78 // by calling scan.step(&scan, c) for each byte.
89 // The step is a func to be called to execute the next transition.
93 step func(*scanner, byte) int
149 // It must be called before calling s.step.
151 s.step = stateBeginValue
159 // It returns a scan status just as s.step does.
167 s.step(s, ' '
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
scanner.go 29 if scan.step(scan, c) == scanError {
45 v := scan.step(scan, c)
52 if scan.step(scan, ' ') == scanEnd {
78 // by calling scan.step(&scan, c) for each byte.
89 // The step is a func to be called to execute the next transition.
93 step func(*scanner, byte) int
149 // It must be called before calling s.step.
151 s.step = stateBeginValue
159 // It returns a scan status just as s.step does.
167 s.step(s, ' '
    [all...]
  /build/make/core/
cleanspec.mk 19 # 1. DELETE ANY "add-clean-step" ENTRIES THAT HAVE PILED UP IN THIS FILE.
28 # Do not touch INTERNAL_CLEAN_BUILD_VERSION if you've added a clean step!
32 # a file or delete some intermediate files, add a clean step to the end
37 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
38 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
50 # touch step and add it to the end of the list.
57 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates)
58 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates)
59 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f)
60 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*
    [all...]
  /external/lisa/libs/wlgen/wlgen/
workload.py 99 def __callback(self, step, **kwords):
100 if step not in self.steps.keys():
101 raise ValueError('Callbacks for [%s] step not supported', step)
102 if self.steps[step] is None:
104 self._log.debug('Callback [%s]...', step)
105 self.steps[step](kwords)
107 def setCallback(self, step, func):
120 :param step: Name of the step at which to call the callback
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/forkjoin/mergesort/
MergeDemo.java 60 * Represents the formula {@code f(n) = start + (step * n)} for n = 0 & n < iterations
64 private final int step; field in class:MergeDemo.Range
67 private Range(int start, int step, int iterations) {
69 this.step = step;
74 * Parses start, step and iterations from args
87 return start + (step * iteration);
97 builder.append(start).append(" ").append(step).append(" ").append(iterations);
136 System.err.println("MergeExample <size start> <size step> <size steps> <parallel start> <parallel step>"
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/forkjoin/mergesort/
MergeDemo.java 60 * Represents the formula {@code f(n) = start + (step * n)} for n = 0 & n < iterations
64 private final int step; field in class:MergeDemo.Range
67 private Range(int start, int step, int iterations) {
69 this.step = step;
74 * Parses start, step and iterations from args
87 return start + (step * iteration);
97 builder.append(start).append(" ").append(step).append(" ").append(iterations);
136 System.err.println("MergeExample <size start> <size step> <size steps> <parallel start> <parallel step>"
    [all...]
  /external/autotest/client/common_lib/cros/manual/
meet_helper.py 152 def speaker_volume_test(handle, step, mode, randommode):
156 @param step: volume to be increased or decreased in one call
162 else, the value is fixed defined by step.
167 step = max(2, step)
178 transit_volume = current + random.randrange(1, step)
180 transit_volume = current + step
198 transit_volume = current - random.randrange(1, step)
200 transit_volume = current - step

Completed in 1215 milliseconds

1 2 3 4 5 6 78 91011>>