HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 1 - 25 of 558) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNILib.java 32 public static native void step(); method in class:GL2JNILib
  /frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNILib.java 32 public static native void step(); method in class:GL2JNILib
  /frameworks/base/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfLib.java 32 public static native void step(); method in class:GLPerfLib
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
GLDualLib.java 32 public static native void step(); method in class:GLDualLib
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
validatereviewer_unittest.py 44 def _test_review_text(self, step, text, expected):
47 self.assertEqual(step._has_valid_reviewer(entry), expected)
50 step = ValidateReviewer(MockTool(), MockOptions())
51 self._test_review_text(step, "Reviewed by Eric Seidel.", True)
52 self._test_review_text(step, "Reviewed by Eric Seidel", True) # Not picky about the '.'
53 self._test_review_text(step, "Reviewed by Eric.", False)
54 self._test_review_text(step, "Reviewed by Eric C Seidel.", False)
55 self._test_review_text(step, "Rubber-stamped by Eric.", True)
56 self._test_review_text(step, "Rubber stamped by Eric.", True)
57 self._test_review_text(step, "Unreviewed build fix.", True
    [all...]
cleanworkingdirectory_unittest.py 39 step = CleanWorkingDirectory(tool, MockOptions(clean=True, force_clean=False))
40 step.run({})
46 step = CleanWorkingDirectory(tool, MockOptions(clean=False))
47 step.run({})
metastep.py 44 for step in steps:
45 collected_options = collected_options + step.options()
53 for step in self._step_instances:
54 step.run(state)
suggestreviewers_unittest.py 38 step = SuggestReviewers(MockTool(), MockOptions(suggest_reviewers=False))
39 OutputCapture().assert_outputs(self, step.run, [{}])
43 step = SuggestReviewers(MockTool(), MockOptions(suggest_reviewers=True, git_commit=None))
46 capture.assert_outputs(self, step.run, [{"bug_id": "123"}], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
updatechangelogswithreview_unittest.py 38 step = UpdateChangeLogsWithReviewer(MockTool(), MockOptions())
40 capture.assert_outputs(self, step._guess_reviewer_from_bug, [75], expected_stderr=expected_stderr)
47 step = UpdateChangeLogsWithReviewer(MockTool(), options)
48 capture.assert_outputs(self, step.run, [{}])
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <16 or step is not a multiple of 16.
30 step RN 2 label
48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading
49 VLD1 {X2,X3},[pSrc@128],step
50 VLD1 {X4,X5},[pSrc@128],step
51 VLD1 {X6,X7},[pSrc@128],step
57 VLD1 {X0,X1},[pSrc@128],step
    [all...]
omxVCCOMM_Copy8x8_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <8 or step is not a multiple of 8.
30 step RN 2 label
45 VLD1 {X0},[pSrc],step ;// Load 8 bytes from 8 byte aligned pSrc, pSrc=pSrc+step after load
46 VLD1 {X1},[pSrc],step
47 VLD1 {X2},[pSrc],step
48 VLD1 {X3},[pSrc],step
53 VLD1 {X0},[pSrc],step
    [all...]
  /system/extras/tests/icachetest/
icache_main.c 4 extern void icache_test(long count, long step);
15 long step = 32; local
16 for (i=0 ; step<=2048 ; i++, step+=32)
20 icache_test(0x800000L, step);
23 printf("%6ld\t%lld\n", step*32, t);
  /external/skia/src/animator/
SkAnimateProperties.h 25 SK_PROPERTY(step),
  /frameworks/base/media/libstagefright/codecs/aacdec/
sbr_downsample_lo_res.cpp 132 Int32 step; local
147 step = org_length / result_length; /* floor; */
148 org_length = org_length - step;
150 v_index[i] = v_index[i-1] + step;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_Copy16x16.c 32 * step - distance between the starts of consecutive lines in the reference
49 * - step <16 or step is not a multiple of 16.
56 OMX_INT step)
67 armRetArgErrIf(((step < 16) || (step % 16)), OMX_Sts_BadArgErr);
71 for (y = 0, count = 0, index = 0; y < 16; y++, count = count + step - 16)
omxVCCOMM_Copy8x8.c 32 * step - distance between the starts of consecutive lines in the reference
49 * - step <8 or step is not a multiple of 8.
56 OMX_INT step)
67 armRetArgErrIf(((step < 8) || (step % 8)), OMX_Sts_BadArgErr);
71 for (y = 0, count = 0, index = 0; y < 8; y++, count = count + step - 8)
  /frameworks/base/opengl/tests/gl_jni/src/com/android/gljni/
GLJNILib.java 32 public static native void step(); method in class:GLJNILib
  /dalvik/dx/tests/083-ssa-phi-placement/
run 18 dx --dump --ssa-blocks --ssa-step=phi-placement Blort.class
  /dalvik/dx/tests/086-ssa-edge-split/
run 18 dx --dump --width=1000 --ssa-blocks --ssa-step=edge-split Blort.class
  /external/webkit/Source/WebCore/xml/
XPathPath.cpp 117 Step* step = m_steps[i]; local
121 bool needToCheckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->axis() != Step::ChildAxis && step->axis() != Step::SelfAxis
122 && step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axis() != Step::AttributeAxis)
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_Clip8_s.s 27 step RN 2 label
57 VST1 {dclip0},[pDst],step ;// store 8 bytes and pDst=pDst+step
58 VST1 {dclip1},[pDst],step ;// store 8 bytes and pDst=pDst+step
61 VST1 {dclip2},[pDst],step
62 VST1 {dclip3},[pDst],step
68 VST1 {dclip0},[pDst],step ;// store 8 bytes and pDst=pDst+step
69 VST1 {dclip1},[pDst],step ;// store 8 bytes and pDst=pDst+ste
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_PredictIntra_16x16_s.s 162 step RN 10 label
194 ADD step, dstStep, dstStep
195 VST1 qAbove, [pDst], step
196 VST1 qAbove, [pTmp], step
197 VST1 qAbove, [pDst], step
198 VST1 qAbove, [pTmp], step
199 VST1 qAbove, [pDst], step
200 VST1 qAbove, [pTmp], step
201 VST1 qAbove, [pDst], step
202 VST1 qAbove, [pTmp], step
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Function.java 43 * Callback for one step in aggregate function.
49 public void step(FunctionContext fc, String args[]); method in interface:Function
52 * Callback for final step in aggregate function.
Vm.java 16 * Internal last error code for compile()/step() methods.
22 * Perform one step on compiled SQLite VM.
30 * while (vm.step(cb)) {
34 * while (vm.step(cb)) {
47 public native boolean step(Callback cb) throws SQLite.Exception; method in class:Vm
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
cor_h_x2.h 111 Word16 step, /* (i): step size from one pulse position to the next

Completed in 373 milliseconds

1 2 3 4 5 6 7 8 91011>>