Searched defs:step (Results 101 - 125 of 440) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_blockd.c52 const int step = 1 << (tx_size << 1); local
80 i += step;
84 for (i = 0; i < num_4x4_w * num_4x4_h; i += step)
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_subexp.c125 const int step = *bestp > oldp ? -1 : 1; local
127 for (newp = *bestp; newp != oldp; newp += step) {
144 int i, old_b, new_b, update_b, savings, bestsavings, step; local
156 step = (*bestp > oldp[PIVOT_NODE] ? -1 : 1);
158 for (newp = *bestp; newp != oldp[PIVOT_NODE]; newp += step) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_context.h74 rbug_block_t step; member in struct:rbug_proto_context_draw_step
145 rbug_block_t step,
/external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
H A Dmips_FFTInv_CCSToR_F32_complex.c20 OMX_U32 num_transforms, step; local
189 step = 1 << (pFFTSpec->order - 4);
214 w_re_ptr = pFFTSpec->pTwiddle + step;
216 pFFTSpec->pTwiddle + (OMX_U32)(1 << pFFTSpec->order - 2) - step;
244 w_re_ptr += step;
245 w_im_ptr -= step;
248 step >>= 1;
273 w_re_ptr = pFFTSpec->pTwiddle + step;
274 w_im_ptr = pFFTSpec->pTwiddle + (OMX_U32)(1 << pFFTSpec->order - 2) - step;
299 w_re_ptr += step;
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c23 OMX_INT step = sub_num >> 1; local
81 const OMX_F32 *tw1 = twiddle + grp * step;
82 const OMX_F32 *tw2 = tw1 + grp * step;
83 const OMX_F32 *tw3 = tw2 + grp * step;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms.c23 OMX_INT step = sub_num >> 1; local
81 const OMX_F32 *tw1 = twiddle + grp * step;
82 const OMX_F32 *tw2 = tw1 + grp * step;
83 const OMX_F32 *tw3 = tw2 + grp * step;
/external/chromium_org/third_party/skia/bench/
H A DRotatedRectBench.cpp41 static inline SkColor advance_color(SkColor old, ColorType ct, int step) { argument
43 ct = (step & 0x1) ? kChangingOpaque_ColorType : kChangingTransparent_ColorType ;
/external/chromium_org/third_party/skia/samplecode/
H A DSampleAnimatedGradient.cpp49 SkScalar step = SK_ScalarPI / (10); local
50 SkScalar angle = t * step;
H A DSampleCircle.cpp80 SkScalar step = SK_ScalarPI * 2 / n; local
83 angle += step;
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstring.c54 size_t step = (l >> LUAI_HASHLIMIT) + 1; local
55 for (l1 = l; l1 >= step; l1 -= step)
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dlinemap.c250 unsigned long vindex, step; local
256 /* start step as the greatest power of 2 <= size */
257 step = 1;
258 while (step*2<=linemap->map_size)
259 step*=2;
260 while (step>0) {
261 if (vindex+step < linemap->map_size
262 && linemap->map_vector[vindex+step].line <= line)
263 vindex += step;
264 step /
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DMultiFieldTimePickerDialog.java25 * The milli picker is not displayed if step >= SECOND_IN_MILLIS
26 * The second picker is not displayed if step >= MINUTE_IN_MILLIS.
53 int min, int max, int step, boolean is24hourFormat,
57 mStep = step;
64 if (step < 0 || step >= 24 * HOUR_IN_MILLIS) {
65 step = MINUTE_IN_MILLIS;
158 if (step >= HOUR_IN_MILLIS) {
165 if (step >= MINUTE_IN_MILLIS) {
194 if (step >
49 MultiFieldTimePickerDialog( Context context, int theme, int hour, int minute, int second, int milli, int min, int max, int step, boolean is24hourFormat, OnMultiFieldTimeSetListener listener) argument
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dcubic_bezier.cc52 double step = 1.0; local
53 for (int i = 0; i < MAX_STEPS; ++i, step *= 0.5) {
57 t += error > 0.0 ? -step : step;
/external/chromium_org/v8/src/
H A Duri.h57 int* step));
94 int step; local
95 if (UnescapeChar(vector, i, length, &step) >
99 i += step;
116 int step; local
118 UnescapeChar(vector, i, length, &step));
119 i += step;
128 int step; local
130 UnescapeChar(vector, i, length, &step));
131 i += step;
151 UnescapeChar(Vector<const Char> vector, int i, int length, int* step) argument
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStmt.java21 * Internal last error code for prepare()/step() methods.
35 * Perform one step of compiled SQLite3 statement.
45 * while (s.step(cb)) {
55 * while (s.step(cb)) {
69 public native boolean step() throws SQLite.Exception; method in class:Stmt
/external/libvpx/libvpx/vp9/common/
H A Dvp9_blockd.c52 const int step = 1 << (tx_size << 1); local
80 i += step;
84 for (i = 0; i < num_4x4_w * num_4x4_h; i += step)
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_subexp.c126 const int step = *bestp > oldp ? -1 : 1; local
128 for (newp = *bestp; newp != oldp; newp += step) {
145 int i, old_b, new_b, update_b, savings, bestsavings, step; local
157 step = (*bestp > oldp[PIVOT_NODE] ? -1 : 1);
159 for (newp = *bestp; newp != oldp[PIVOT_NODE]; newp += step) {
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_context.h74 rbug_block_t step; member in struct:rbug_proto_context_draw_step
145 rbug_block_t step,
/external/opencv/otherlibs/highgui/
H A Dgrfmt_imageio.cpp125 bool GrFmtImageIOReader::ReadData( uchar* data, int step, int color ) argument
201 uchar * line = base + y * step;
220 memcpy (data + y * step, bitmap + y * m_width, m_width);
275 bool GrFmtImageIOWriter::WriteImage( const uchar* data, int step, argument
326 const uchar * line = base + y * step;
345 memcpy (bitmapData + y * width, data + y * step, width);
H A Dgrfmt_png.cpp182 bool GrFmtPngReader::ReadData( uchar* data, int step, int color ) argument
232 buffer[y] = data + y*step;
266 bool GrFmtPngWriter::WriteImage( const uchar* data, int step, argument
309 buffer[y] = (uchar*)(data + y*step);
/external/oprofile/libabi/
H A Dopimport.cpp147 unsigned int step = abi.need("sizeof_odb_node_t"); local
149 cerr << "extracting " << node_nr << " nodes of " << step << " bytes each " << endl;
151 assert(src + (node_nr * step) <= begin + len);
153 for (odb_node_nr_t i = 1 ; i < node_nr ; ++i, src += step) {
/external/owasp/sanitizer/empiricism/
H A Dhtml-containment.js89 function step() {
126 // Requeue the next step on the parent frames event queue.
127 setTimeout(function () { advance(); step(); }, 0);
137 step();
/external/skia/samplecode/
H A DSampleAnimatedGradient.cpp49 SkScalar step = SK_ScalarPI / (10); local
50 SkScalar angle = t * step;
H A DSampleCircle.cpp80 SkScalar step = SK_ScalarPI * 2 / n; local
83 angle += step;
/external/ceres-solver/internal/ceres/
H A Ddogleg_strategy.cc74 // gradient) and the new Gauss-Newton step are computed from
75 // scratch. The Dogleg step is then computed as interpolation of these
81 double* step) {
84 CHECK_NOTNULL(step);
93 ComputeTraditionalDoglegStep(step);
97 ComputeSubspaceDoglegStep(step);
119 // || D * step || <= radius_ .
144 // Interpolate the Cauchy point and the Gauss-Newton step.
146 ComputeTraditionalDoglegStep(step);
150 // Cauchy point and the (Gauss-)Newton step
77 ComputeStep( const TrustRegionStrategy::PerSolveOptions& per_solve_options, SparseMatrix* jacobian, const double* residuals, double* step) argument
[all...]

Completed in 936 milliseconds

1234567891011>>