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

<<11121314151617181920>>

  /frameworks/base/tests/RenderScriptTests/SceneGraph/res/raw/
select_color.glsl 8 float stepVal = step(lum, 0.8);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_buffer.py 19 # Skip step 0 (invalid)
20 for step in indices[1:]:
21 self.assertEqual(b[start:stop:step],
22 s[start:stop:step])
test_xrange.py 13 def pyrange(start, stop, step):
14 if (start - stop) // step < 0:
16 # that are congruent to start modulo step.
17 stop += (start - stop) % step
20 start += step
22 def pyrange_reversed(start, stop, step):
23 stop += (start - stop) % step
24 return pyrange(stop - step, start - step, -step)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_buffer.py 19 # Skip step 0 (invalid)
20 for step in indices[1:]:
21 self.assertEqual(b[start:stop:step],
22 s[start:stop:step])
test_xrange.py 13 def pyrange(start, stop, step):
14 if (start - stop) // step < 0:
16 # that are congruent to start modulo step.
17 stop += (start - stop) % step
20 start += step
22 def pyrange_reversed(start, stop, step):
23 stop += (start - stop) % step
24 return pyrange(stop - step, start - step, -step)
    [all...]
  /frameworks/opt/mms/
CleanSpec.mk 17 # a file or delete some intermediate files, add a clean step to the end
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
35 # touch step and add it to the end of the list.
41 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/mms-common_intermediates)
42 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/mms-common_intermediates)
43 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/mms-common_intermediates)
  /build/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...]
  /packages/apps/Gallery2/jni/filters/
fx.c 45 int STEP = 4;
49 STEP*1,
50 STEP*lutdim_r,
51 STEP*(lutdim_r + 1),
52 STEP*(lutdim_r*lutdim_b),
53 STEP*(lutdim_r*lutdim_b+1),
54 STEP*(lutdim_r*lutdim_b+lutdim_r),
55 STEP*(lutdim_r*lutdim_b+lutdim_r + 1)
63 for (i = start; i < end; i+= STEP)
76 p*=STEP;
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/res/values/
base-strings.xml 26 This sample demonstrates the use of the two step sensors (step detector and counter) and
28 batching and shows how these events are received.\n\nThe Step Detector sensor fires an
29 event when a step is detected, while the step counter returns the total number of
  /developers/samples/android/sensors/BatchStepSensor/
template-params.xml 34 This sample demonstrates the use of the two step sensors (step detector and counter) and
36 batching and shows how these events are received.\n\nThe Step Detector sensor fires an
37 event when a step is detected, while the step counter returns the total number of
  /external/skia/bench/
InterpBench.cpp 56 SkFixed step = SkFloatToFixed(dx); variable
58 dst[i + 0] = TILE(curr, count); curr += step;
59 dst[i + 1] = TILE(curr, count); curr += step;
60 dst[i + 2] = TILE(curr, count); curr += step;
61 dst[i + 3] = TILE(curr, count); curr += step;
75 int64_t step = (int64_t)(dx * 65536 * 655536); variable
80 curr += step;
84 curr += step;
88 curr += step;
92 curr += step;
106 int64_t step = (int64_t)(dx * 65536 * 655536 * 65536); variable
    [all...]
  /external/libgsm/src/
long_term.c 205 # undef STEP
206 # define STEP(k) (longword)wt[k] * dp[k - lambda]
210 L_result = STEP(0) ; L_result += STEP(1) ;
211 L_result += STEP(2) ; L_result += STEP(3) ;
212 L_result += STEP(4) ; L_result += STEP(5) ;
213 L_result += STEP(6) ; L_result += STEP(7)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
manual.js 24 var step;
34 step = document.createElement('li');
35 tests[i].children[1].appendChild(step);
36 step.setAttribute('class', classes[run.tests[i].steps[j].success]);
37 step.appendChild(document.createElement('p'));
38 step.children[0].textContent = run.tests[i].steps[j].messages[0];
40 step.appendChild(document.createElement('p'));
41 step.children[k].textContent = run.tests[i].steps[j].messages[k];
42 step.children[k].setAttribute('class', 'difference');
  /external/chromium_org/sql/
statement_unittest.cc 55 EXPECT_FALSE(s.Step());
57 // Run should fail since this produces output, and we should use Step(). This
71 EXPECT_TRUE(s.Step());
74 EXPECT_FALSE(s.Step());
118 ASSERT_TRUE(s.Step());
120 ASSERT_FALSE(s.Step());
124 ASSERT_TRUE(s.Step());
126 EXPECT_FALSE(s.Step());
129 ASSERT_FALSE(s.Step());
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeNumericFieldElement.h 48 struct Step {
49 Step(int step = 1, int stepBase = 0) : step(step), stepBase(stepBase) { }
50 int step; member in struct:WebCore::DateTimeNumericFieldElement::Step
65 DateTimeNumericFieldElement(Document&, FieldOwner&, const Range&, const Range& hardLimits, const String& placeholder, const Step& = Step());
98 const Step m_step;
DateTimeNumericFieldElement.cpp 52 DateTimeNumericFieldElement::DateTimeNumericFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Range& hardLimits, const String& placeholder, const DateTimeNumericFieldElement::Step& step)
57 , m_step(step)
61 ASSERT(m_step.step);
219 n = n / m_step.step * m_step.step;
221 n = -((-n + m_step.step - 1) / m_step.step * m_step.step);
229 n = (n + m_step.step - 1) / m_step.step * m_step.step
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.h 41 class Step : public ParseNode {
42 WTF_MAKE_NONCOPYABLE(Step);
95 Step(Axis, const NodeTest&);
96 Step(Axis, const NodeTest&, Vector<OwnPtr<Predicate> >&);
97 ~Step();
107 friend void optimizeStepPair(Step*, Step*, bool&);
119 void optimizeStepPair(Step*, Step*, bool& dropSecondStep);
XPathPath.h 38 class Step;
63 void appendStep(Step* step);
64 void insertFirstStep(Step* step);
69 Vector<Step*> m_steps;
  /external/chromium_org/third_party/sqlite/src/test/
enc.test 69 # 5. Take the byte-order marked UTF-16 strings from step 4 and ensure
75 # sqlite_utf8to16be (step 2)
76 # sqlite_utf8to16le (step 1)
78 # sqlite_utf16to16le (step 5)
79 # sqlite_utf16to16be (step 5)
83 # Step 1.
93 # Step 2.
103 # Step 3.
112 # Step 4 (little endian).
117 # Step 4 (big endian)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_terms_of_service.css 15 #terms-of-service .step-contents {
74 .step.tos-loading #tos-content {
78 .step.tos-loading #tos-loading {
82 .step.error #tos-content,
83 .step.error #tos-accept-button {
87 .step.error #tos-error {
  /external/chromium_org/chrome/browser/ui/webui/chromeos/first_run/
first_run_actor.h 27 // Called when user clicked "Next" button in step with name |step_name|.
33 // Called after step with |step_name| has been shown.
36 // Called after step with |step_name| has been shown.
86 // Shows step with given name and position.
90 // Shows step with given name that points to given point.
96 // Hides currently shown step.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdClearMbLayer.s 28 step RN 3 label
52 MOV step, #32
56 VST1 qZero, [pMbLayer], step
58 VST1 qZero, [pTmp], step
59 VST1 qZero, [pMbLayer], step
60 VST1 qZero, [pTmp], step
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdClearMbLayer.S 28 #define step r3 define
52 MOV step, #32
56 VST1 {qZero}, [pMbLayer], step
58 VST1 {qZero}, [pTmp], step
59 VST1 {qZero}, [pMbLayer], step
60 VST1 {qZero}, [pTmp], step
  /frameworks/opt/calendar/
CleanSpec.mk 17 # a file or delete some intermediate files, add a clean step to the end
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
35 # touch step and add it to the end of the list.
41 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/calendar-common_intermediates)
42 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/calendar-common_intermediates)
  /external/opencv/cxcore/src/
cxlogic.cpp 64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
112 ( const uchar* src0, int step1, uchar* dst0, int step, CvSize size, \
117 for( ; size.height--; src0 += step1, dst0 += step ) \
288 dstbuf.step = cvAlign( dstbuf.step, 8 );
289 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
303 src_step = src->step;
    [all...]

Completed in 1388 milliseconds

<<11121314151617181920>>