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

<<21222324252627282930>>

  /external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Shadow/
PostShadowPSSM15.frag 12 #define SHADOWCOMPAREOFFSET(tex,coord,offset) step(coord.z, textureProjOffset(tex, coord, offset).r)
13 #define SHADOWCOMPARE(tex,coord) step(coord.z, textureProj(tex, coord).r)
14 #define SHADOWGATHER(tex,coord) step(coord.z, textureGather(tex, coord.xy))
58 t = step(t.wwxy, t.xyzz);
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Fog.glsllib 27 float fogAmt1 = max(step(yh, 0.0), smoothstep(0, yh, max(y1-yf, yf-y0)));
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
cssgen.php 154 // Get what step we're up to
155 $step = get_var('step'); variable
157 if ( !$step || $step == 1 )
160 make_header('Step 1');
253 <br /><br /><form action="cssgen.php?step=2" method="post">
255 <input type="submit" value="Step 2" />';
260 // Step 2
261 elseif ( $step == 2
    [all...]
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_short_idct8x8_add_neon.asm 134 vadd.s16 q0, q9, q15 ; output[0] = step[0] + step[3]
135 vadd.s16 q1, q11, q13 ; output[1] = step[1] + step[2]
136 vsub.s16 q2, q11, q13 ; output[2] = step[1] - step[2]
137 vsub.s16 q3, q9, q15 ; output[3] = step[0] - step[3]
410 vadd.s16 q0, q9, q15 ; output[0] = step[0] + step[3
    [all...]
  /external/llvm/test/Transforms/GVN/
pre-compare.ll 9 ; puts("step 1");
12 ; printf("step 2: %d\n", x);
36 @.str2 = private unnamed_addr constant [7 x i8] c"step 1\00", align 1
37 @.str3 = private unnamed_addr constant [12 x i8] c"step 2: %d\0A\00", align 1
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 125 LLVMValueRef step);
130 LLVMValueRef step,
144 LLVMValueRef step; member in struct:lp_build_for_loop_state
156 LLVMValueRef step);
  /external/opencv/cvaux/src/
cvvideo.cpp 73 memcpy( even->data.ptr + even->step*y,
74 frame->data.ptr + frame->step*y*2, size.width );
75 memcpy( odd->data.ptr + even->step*y,
76 frame->data.ptr + frame->step*(y*2+1), size.width );
  /external/openssh/
jpake.h 54 /* Step 1: C->S */
60 /* Step 1: S->C */
66 /* Step 2: C->S */
69 /* Step 2: S->C */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_Interpolate_Luma.c 32 * [in] iSrcStep Step of the source buffer.
33 * [in] iDstStep Step of the destination buffer.
74 * [in] iSrcStep Step of the source buffer.
75 * [in] iDstStep Step of the destination(interpolation) buffer.
  /frameworks/native/data/etc/
android.hardware.sensor.stepcounter.xml 17 <!-- Feature for devices with a hardware step counter. -->
android.hardware.sensor.stepdetector.xml 17 <!-- Feature for devices with a step detector. -->
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNILib.java 32 public static native void step(); method in class:GL2JNILib
  /frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
GLJNILib.java 32 public static native void step(); method in class:GLJNILib
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfLib.java 32 public static native void step(); method in class:GLPerfLib
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualLib.java 32 public static native void step(); method in class:GLDualLib
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_structseq.py 111 # Skip step 0 (invalid)
112 for step in indices[1:]:
113 self.assertEqual(list(t[start:stop:step]),
114 L[start:stop:step])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_structseq.py 111 # Skip step 0 (invalid)
112 for step in indices[1:]:
113 self.assertEqual(list(t[start:stop:step]),
114 L[start:stop:step])
  /external/opencv/cxcore/include/
cxcore.hpp 159 int step() const { return image ? image->widthStep : 0; } function in class:CvImage
218 void* data=0, int step=CV_AUTOSTEP )
219 { matrix = cvInitMatHeader( hdr, rows, cols, type, data, step ); }
223 CvMatrix( int rows, int cols, int type, void* data, int step=CV_AUTOSTEP )
225 cvSetData( matrix, data, step ); }
327 int step() const { return matrix ? matrix->step : 0; } function in class:CvMatrix
329 void set_data( void* data, int step=CV_AUTOSTEP )
330 { cvSetData( matrix, data, step ); }
332 uchar* row(int i) { return !matrix ? 0 : matrix->data.ptr + i*matrix->step; }
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table_unittest.cc 549 ASSERT_TRUE(s_home.Step());
552 EXPECT_FALSE(s_home.Step());
574 ASSERT_TRUE(s_billing.Step());
577 EXPECT_FALSE(s_billing.Step());
591 ASSERT_TRUE(s_billing_updated.Step());
596 EXPECT_FALSE(s_billing_updated.Step());
627 ASSERT_TRUE(s_billing_updated_2.Step());
632 EXPECT_FALSE(s_billing_updated_2.Step());
820 // deleting it. In normal operation deletion is done by migration step, and
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/
AndroidManifest.xml 28 <!-- Require the step counter and step detector sensors.
  /developers/samples/android/sensors/BatchStepSensor/BatchStepSensorSample/src/main/
AndroidManifest.xml 28 <!-- Require the step counter and step detector sensors.
  /external/chromium/chrome/browser/chromeos/login/
login_display_host.h 39 // Sets current step on OOBE progress bar.
40 virtual void SetOobeProgress(BackgroundView::LoginStep step) = 0;
views_login_display_host.cc 40 void ViewsLoginDisplayHost::SetOobeProgress(BackgroundView::LoginStep step) {
42 background_view_->SetOobeProgress(step);
  /external/chromium/chrome/browser/sync/util/
user_settings_posix.cc 39 if (SQLITE_DONE != statement.step()) {
54 if (SQLITE_ROW == query.step()) {
  /external/chromium_org/chrome/browser/ui/autofill/
loading_animation.cc 26 void LoadingAnimation::Step(base::TimeTicks time_now) {
27 LinearAnimation::Step(time_now);

Completed in 2021 milliseconds

<<21222324252627282930>>