HomeSort by relevance Sort by last modified time
    Searched full:step (Results 501 - 525 of 5260) sorted by null

<<21222324252627282930>>

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
InputDialogContainer.java 80 double min, double max, double step) {
110 0, 0, 0, 0, 0, min, max, step);
115 0, 0, 0, min, max, step);
126 0, min, max, step);
129 0, 0, 0, 0, 0, min, max, step);
133 showPickerDialog(dialogType, year, 0, 0, 0, 0, 0, 0, week, min, max, step);
139 final double min, final double max, final double step,
150 showPickerDialog(dialogType, dialogValue, min, max, step);
198 double min, double max, double step,
204 showPickerDialog(type, value, min, max, step);
    [all...]
  /external/opencv/cxcore/src/
cxmean.cpp 114 step /= sizeof(src[0])
242 ( const arrtype* src, int step, \
245 (src, step, mask, maskstep, size, mean)) \
249 for( ; size.height--; src += step, mask += maskstep ) \
273 ( const arrtype* src, int step, \
276 (src, step, mask, maskstep, size, mean)) \
280 for( ; size.height--; src += step, mask += maskstep ) \
294 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
302 for( ; size.height--; src += step, mask += maskstep ) \
326 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
    [all...]
cxnorm.cpp 140 IPCVAPI_IMPL( CvStatus, name, ( const arrtype* src, int step, \
141 CvSize size, double* _norm ), (src, step, size, _norm) ) \
146 step /= sizeof(src[0]); \
148 for( ; size.height--; src += step ) \
174 IPCVAPI_IMPL( CvStatus, name, ( const arrtype* src, int step, \
175 CvSize size, double* _norm ), (src, step, size, _norm) ) \
178 step /= sizeof(src[0]); \
180 for( ; size.height--; src += step ) \
198 IPCVAPI_IMPL( CvStatus, name, ( const arrtype* src, int step, \
200 (src, step, size, _norm, cvAlgHintAccurate) )
    [all...]
  /packages/inputmethods/PinyinIME/jni/include/
atomdictbase.h 24 * ended in this step (the information of starting step is also given in the
26 * returned by a previous calling for a earlier step is given to speed up the
33 * Usually, the atom dictionary can use step information to manage its
90 * For example, if an atom dictionary uses step information to manage its
93 * use the detailed step information, it only uses ascendant handles
94 * (according to step. For the same step, earlier call, smaller handle), it
97 * The decoder always reset the decoding state by step. So when it begins
99 * the step information, and the MileStoneHandle objects returned by th
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_test.cc 262 void SetTestStep(int step) {
263 std::string test_step = base::StringPrintf("test_step=%d", step);
469 // the test moves on to the next step to get more update chunks.
471 for (int step = 1;; step++) {
472 // Every step should be a fresh start.
473 SCOPED_TRACE(base::StringPrintf("step=%d", step));
480 SetTestStep(step);
494 safe_browsing_helper->FetchUrlsToVerify(test_server(), step));
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 152 bool GrFmtJpeg2000Reader::ReadData( uchar* data, int step, int color )
235 result = ReadComponent8u( data + i, buffer, step, cmptlut[i], maxval, offset, ncmpts );
237 result = ReadComponent16u( ((unsigned short *)data) + i, buffer, step / 2, cmptlut[i], maxval, offset, ncmpts );
260 int step, int cmpt,
280 uchar* dst = data + (y - yoffset) * step - xoffset;
312 for( ++y; y < y1; y++, dst += step )
314 dst[x*ncmpts + step] = dst[x*ncmpts];
322 int step, int cmpt,
342 ushort* dst = data + (y - yoffset) * step - xoffset;
374 for( ++y; y < y1; y++, dst += step )
    [all...]
  /docs/source.android.com/scripts/
build.py 44 # Step 1, concatenate the template pieces into a single template string
50 # Step 2, rm -rf HTML_DIR if it exists, and then re-create it
56 # Step 3, recursively mirror SRC_DIR to HTML_DIR, directory by directory, translating *.md
66 # Step A: split path, and update cached category name if needed
74 # Step B: mirror the hierarchy of immediate subdirectories
78 # Step C: cache the translated sidebars, keyed by parent dir, so we can do sidebar inheritance
107 # Step D: mirror all non-*.md files, and translate (file).md files into (file).html
  /external/chromium_org/crypto/third_party/nss/
rsawrapr.c 88 /* Step 3 + 4 + 6 */
96 /* Step 7 */
105 /* Step 8 */
110 /* Step 9 */
113 /* Step 10 */
127 /* Step 12 + 13 */
150 /* Step 14 */
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMTokenList.cpp 208 // Step 5
215 // Step 7
220 // Step 8
223 // Step 8.1
227 // Step 8.2
233 // Step 8.3
237 output.append(token); // Step 9
  /external/chromium_org/third_party/libwebp/enc/
filter.c 53 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
54 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
58 p[-step] = clip1[255 + p0 + a2];
63 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
64 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
69 p[-2*step] = clip1[255 + p1 + a3]
    [all...]
  /external/stlport/test/unit/
mfunptr_test.cpp 202 // step-by-step complication of work for compiler:
204 // step 1:
211 // step 2, just check that compiler understand what pass to bind2nd:
214 // step 3, the same as step 1, but more intellect from compiler required:
221 // step 4, more brief, more complex:
  /external/webp/src/enc/
filter.c 53 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
54 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
58 p[-step] = clip1[255 + p0 + a2];
63 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
64 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
69 p[-2*step] = clip1[255 + p1 + a3]
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s 50 step RN 10 label
176 ADD step, srcdstStep, srcdstStep
189 VLD1 dP_3, [pSrcDst], step
190 VLD1 dP_2, [pTmp], step
191 VLD1 dP_1, [pSrcDst], step
192 VLD1 dP_0, [pTmp], step
193 VLD1 dQ_0, [pSrcDst], step
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 69 * "step" determines how compressible the data is.
74 private void bigTest(int step, int expectedAdler)
82 createSample(input, step);
99 byte val, step;
105 step = 1;
110 val += step;
113 step += stepStep;
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 202 // step-by-step complication of work for compiler:
204 // step 1:
211 // step 2, just check that compiler understand what pass to bind2nd:
214 // step 3, the same as step 1, but more intellect from compiler required:
221 // step 4, more brief, more complex:
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 202 // step-by-step complication of work for compiler:
204 // step 1:
211 // step 2, just check that compiler understand what pass to bind2nd:
214 // step 3, the same as step 1, but more intellect from compiler required:
221 // step 4, more brief, more complex:
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 217 int step; local
219 if (d < (step = 31))
221 step += (leapYear ? 29 : 28);
222 if (d < step)
224 if (d < (step += 31))
226 if (d < (step += 30))
228 if (d < (step += 31))
230 if (d < (step += 30))
232 if (d < (step += 31))
234 if (d < (step += 31)
255 int step; local
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ContextCreationTest.java 67 Log.w(TAG, "Recreate (w/ delay) step " + i + " - pause");
81 Log.w(TAG, "Recreate (no delay) step " + i);
95 Log.w(TAG, "Recreate multiview (no delay) step " + i + " - pause");
  /external/chromium_org/chrome/browser/mac/
keychain_reauthorize.h 35 // operation. When the step completes successfully, the preference is set to
38 // disambiguating between the cases where the step completed successfully and
39 // the step completed unsuccessfully while reaching the maximum number of
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
StepRange.h 73 StepRange(const Decimal& stepBase, const Decimal& minimum, const Decimal& maximum, const Decimal& step, const StepDescription&);
81 Decimal step() const { return m_step; } function in class:WebCore::StepRange
86 // Clamp the middle value according to the step
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioFIFO.h 52 // Update the FIFO index by the step, with appropriate wrapping around the endpoint.
53 int updateIndex(int index, int step) { return (index + step) % m_fifoLength; }
  /external/chromium_org/ui/gfx/animation/
slide_animation_unittest.cc 23 void Step(base::TimeTicks ticks) {
24 animation_->Step(ticks);
73 test_api.Step(base::TimeTicks() + base::TimeDelta::FromMilliseconds(50));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-fast-literal-transition.js 52 // Step 1: Optimize g() to contain a FAST_DOUBLE_ELEMENTS boilerplate.
57 // Step 2: Deoptimize g() and transition to FAST_ELEMENTS boilerplate.
60 // Step 3: Cause a GC while broken clone of boilerplate is on the heap,
  /external/chromium_org/v8/tools/
merge-to-branch.sh 50 -s Specify the step where to start work. Default: 0.
120 echo ">>> Step $CURRENT_STEP: Preparation"
134 echo ">>> Step $CURRENT_STEP: Create a fresh branch for the patch."
142 echo ">>> Step $CURRENT_STEP: Find the git \
190 echo ">>> Step $CURRENT_STEP: Apply patches for selected revisions."
206 echo ">>> Step $CURRENT_STEP: Prepare $VERSION_FILE."
213 echo ">>> Step $CURRENT_STEP: Increment version number."
231 echo ">>> Step $CURRENT_STEP: Commit to local branch."
240 echo ">>> Step $CURRENT_STEP: Commit to the repository."
251 echo ">>> Step $CURRENT_STEP: Determine svn commit revision
    [all...]
  /external/lzma/CPP/7zip/Common/
MethodProps.cpp 22 const UInt32 step = (reducedDictionarySize >> 1); local
28 reducedDictionarySize += step;
36 reducedDictionarySize += step;

Completed in 764 milliseconds

<<21222324252627282930>>