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

<<21222324252627282930>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 242 LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 242 LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
    [all...]
  /external/opencv/cxcore/src/
cxrand.cpp 70 icvRandBits_##flavor##_C1R( arrtype* arr, int step, CvSize size, \
75 step /= sizeof(arr[0]); \
77 for( ; size.height--; arr += step ) \
152 icvRand_##flavor##_C1R( arrtype* arr, int step, CvSize size, \
156 step /= sizeof(arr[0]); \
158 for( ; size.height--; arr += step ) \
211 icvRand_64f_C1R( double* arr, int step, CvSize size,
215 step /= sizeof(arr[0]);
217 for( ; size.height--; arr += step )
342 icvRandn_##flavor##_C1R( arrtype* arr, int step, CvSize size,
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetSegGraph.py 67 def CalcCoord(self, step, height, ColorFct):
72 self.iStart = step * iStartM
73 self.iEnd = step * iEndM
75 self.iStart = self.iStart + ((step / 4.0) * (self.StartMbt[1]-1))
76 self.iEnd = self.iEnd + ((step / 4.0) * (self.EndMbt[1]-1))
79 self.iStart = self.iStart + ((pctTickOfBeat * (step / 4.0)))
81 self.iEnd = self.iEnd + ((pctTickOfBeat * (step / 4.0)))
229 step = int(gWidth / (self.iLengthInMeasures + .01))
232 Marker.CalcCoord(step, gHeight, self.GetAColor)
301 beatStep = step / 4.0
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSecurity.java 163 * After any of the activities return, try to advance to the "next step"
177 * steps a few times. It may go as far as step 5 (password) or step 6 (encryption), but it
178 * will terminate when step 2 (isActive()) succeeds.
180 * If at any point we do not advance beyond a given user step, (e.g. the user cancels
186 // Step 1. Check if we are an active device administrator, and stop here to activate
221 // Step 2. Check if the current aggregate security policy is being satisfied by the
234 // Step 3. Try to assert the current aggregate security requirements with the system.
237 // Step 4. Recheck the security policy, and determine what changes are needed (if any)
241 // Step 5. If password is needed, try to have the user set i
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_request_handler.cc 103 // 6.9.6, step 4: If this results in a redirect to another origin,
111 // 6.9.6, step 6: Fail the resource load.
116 // 6.9.6 step 3 and 5: Fetch the resource normally.
130 // 6.9.6, step 4: But not if the user canceled the download.
156 // 6.9.6, step 4: If this results in a 4xx or 5xx status code
345 // Step 2: If there's an entry, get it instead.
358 // Step 4: Fetch the resource normally, if this results
369 // Step 3 and 5: Fetch the resource normally.
376 // Step 6: Fail the resource load.
  /external/opencv/cvaux/src/
cvmorphing.cpp 74 float step = 0; local
105 step = 0;
107 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
134 begLine += step;
161 begLine += step;
194 step = 0;
196 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
231 begLine += step;
261 begLine += step;
  /frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 155 for (int step = 0; step < count; step++) {
157 NORMAL_PRIORITY, DEFAULT_LOOP, mScale[step]);
186 for (int step = 1; step < count; step++) {
188 mSoundPool.setRate(id, mScale[step]);
189 if (DEBUG) Log.d(LOG_TAG, "Change rate " + mScale[step]);
  /art/runtime/jdwp/
jdwp_constants.h 166 SD_INTO = 0, // Step into method calls.
167 SD_OVER = 1, // Step over method calls.
168 SD_OUT = 2, // Step out of current method.
176 SS_MIN = 0, // Step by minimum (for example, one bytecode).
177 SS_LINE = 1, // If possible, step to next line.
  /dalvik/vm/jdwp/
JdwpConstants.h 153 SD_INTO = 0, /* step into method calls */
154 SD_OVER = 1, /* step over method calls */
155 SD_OUT = 2, /* step out of current method */
163 SS_MIN = 0, /* step by minimum (e.g. 1 bytecode inst) */
164 SS_LINE = 1, /* if possible, step to next line */
  /developers/build/prebuilts/gradle/MediaRecorder/MediaRecorderSample/src/main/java/com/example/android/mediarecorder/
MainActivity.java 165 // Step 1: Unlock and set camera to MediaRecorder
169 // Step 2: Set sources
173 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
176 // Step 4: Set output file
181 // Step 5: Prepare configured MediaRecorder
  /developers/samples/android/media/MediaRecorder/MediaRecorderSample/src/main/java/com/example/android/mediarecorder/
MainActivity.java 165 // Step 1: Unlock and set camera to MediaRecorder
169 // Step 2: Set sources
173 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
176 // Step 4: Set output file
181 // Step 5: Prepare configured MediaRecorder
  /development/samples/browseable/MediaRecorder/src/com.example.android.mediarecorder/
MainActivity.java 165 // Step 1: Unlock and set camera to MediaRecorder
169 // Step 2: Set sources
173 // Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
176 // Step 4: Set output file
181 // Step 5: Prepare configured MediaRecorder
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
ScreenSlideActivity.java 36 * <p>This sample shows a "next" button that advances the user to the next step in a wizard,
107 // Go to the previous step in the wizard. If there is no previous step,
113 // Advance to the next step in the wizard. If there is no next step, setCurrentItem
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
UnionPattern.java 38 /** Array of the contained step patterns to be tested.
75 * Set the contained step patterns to be tested.
78 * @param patterns the contained step patterns to be tested.
94 * Get the contained step patterns to be tested.
97 * @return an array of the contained step patterns to be tested.
  /external/bison/lib/
memchr.c 124 - If a byte of longword1 is zero, step 1 and 2 transform it into 0xff,
125 and step 3 transforms it into 0x80. A carry can also be propagated
128 position k (0 <= k <= 7); so the lowest k bits are 0. After step 1,
130 After step 2, the result is just k bits of value 1: 2^k - 1. After
131 step 3, the result is 0. And no carry is produced.
rawmemchr.c 89 - If a byte of longword1 is zero, step 1 and 2 transform it into 0xff,
90 and step 3 transforms it into 0x80. A carry can also be propagated
93 position k (0 <= k <= 7); so the lowest k bits are 0. After step 1,
95 After step 2, the result is just k bits of value 1: 2^k - 1. After
96 step 3, the result is 0. And no carry is produced.
strchrnul.c 92 - If a byte of longword1 is zero, step 1 and 2 transform it into 0xff,
93 and step 3 transforms it into 0x80. A carry can also be propagated
96 position k (0 <= k <= 7); so the lowest k bits are 0. After step 1,
98 After step 2, the result is just k bits of value 1: 2^k - 1. After
99 step 3, the result is 0. And no carry is produced.
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
first_app.html 37 <h2 id="one">Step 1: Create the manifest</h2>
65 <h2 id="two">Step 2: Create the background script</h2>
93 <h2 id="three">Step 3: Create a window page</h2>
110 <h2 id="four">Step 4: Create the icons</h2>
121 <h2 id="five">Step 5: Launch your app</h2>
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
permissions.html 4 Step 1: Decide which permissions are required and which are optional
37 <h3 id="manifest"> Step 2: Declare optional permissions in the manifest </h3>
80 <h3 id="request"> Step 3: Request optional permissions </h3>
116 <h3 id="contains"> Step 4: Check the extension's current permissions </h3>
135 <h3 id="remove"> Step 5: Remove the permissions </h3>
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls.js 79 balls[i].step(jolt);
95 function step(jolt) {
142 //bounces per time step to avoid the "tunnel effect".
174 step: step
  /external/chromium_org/tools/site_compare/drivers/win32/
mouse.py 118 # Calculate the step size
121 step = 0
123 while step < num_steps:
124 # Move the mouse one step
133 step += 1
  /external/opencv/cv/src/
cvfeatureselect.cpp 164 mask_step = mask->step;
167 eig_step = eig->step / sizeof(eig_data[0]);
168 tmp_step = tmp->step / sizeof(tmp_data[0]);
191 y = ofs / eig->step;
192 x = (ofs - y * eig->step)/sizeof(float);
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.h 59 bool ReadData( uchar* data, int step, int color );
78 bool WriteImage( const uchar* data, int step,
115 bool ReadData( uchar* data, int step, int color );
156 void ProcessScan( int* idx, int ns, uchar* data, int step, int color );
190 bool WriteImage( const uchar* data, int step,
  /external/wpa_supplicant_8/src/utils/
state_machine.h 98 * with SM_STATE macro. SM_ENTER is used in a state machine step function to
118 * SM_STEP - Declaration of a state machine step function
121 * This macro is used to declare a state machine step function. It is used in
130 * SM_STEP_RUN - Call the state machine step function
133 * This macro expands to a function call to a state machine step function

Completed in 716 milliseconds

<<21222324252627282930>>