HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 26 - 50 of 1858) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
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...]
  /device/google/contexthub/lib/nanohub/
rsa.c 23 static bool biModIterative(uint32_t *num, const uint32_t *denum, uint32_t *tmp, uint32_t *state1, uint32_t *state2, uint32_t step)
32 //first step is init
33 if (!step) {
43 if (step == 1) {
112 static void biMulIterative(uint32_t *ret, const uint32_t *a, const uint32_t *b, uint32_t step) //ret = a * b, call with step = [0..RSA_LIMBS)
118 if (!step)
124 r = (uint64_t)a[step] * b[j] + c + ret[step + j];
125 ret[step + j] = r
170 uint32_t step = *stepP, gigastep, gigastepBase, gigastepSubstep, megaSubstep; local
217 uint32_t state1 = 0, state2 = 0, step = 0, ns = 0; local
231 uint32_t state1 = 0, state2 = 0, step; local
238 uint32_t step; local
    [all...]
  /external/skia/infra/bots/recipe_modules/isolate/tests/
isolated_tests.py 8 'recipe_engine/step',
13 api.step('isolated_tests', [])
14 api.step.active_result.presentation.logs['details'] = [
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
simdtest.cpp 44 for (int step = 1; step < 32; step++) {
48 for (size_t i = 0; i < 1024; i += step)
60 i += step;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestStep.rs 26 return step(inEdge, inV);
31 return step(inEdge, inV);
36 return step(inEdge, inV);
41 return step(inEdge, inV);
46 return step(inEdge, inV);
51 return step(inEdge, inV);
56 return step(inEdge, inV);
61 return step(inEdge, inV);
66 return step(inEdge, inV);
71 return step(inEdge, inV)
    [all...]
  /external/brotli/java/org/brotli/dec/
Huffman.java 28 int step = 1 << (len - 1); local
29 while ((key & step) != 0) {
30 step >>= 1;
32 return (key & (step - 1)) + step;
36 * Stores {@code item} in {@code table[0], table[step], table[2 * step] .., table[end]}.
38 * <p> Assumes that end is an integer multiple of step.
40 private static void replicateValue(int[] table, int offset, int step, int end, int item) {
42 end -= step;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
rangeobject.c 8 long step; member in struct:__anon5583
12 /* Return number of items in range (lo, hi, step). step != 0
16 get_len_of_range(long lo, long hi, long step)
19 If step > 0 and lo >= hi, or step < 0 and lo <= hi, the range is empty.
20 Else for step > 0, if n values are in the range, the last one is
21 lo + (n-1)*step, which must be <= hi-1. Rearranging,
22 n <= (hi - lo - 1)/step + 1, so taking the floor of the RHS gives
28 precision to compute the RHS exactly. The analysis for step < 0
233 long step; member in struct:__anon5584
315 long start, step, len; local
    [all...]
  /external/python/cpython2/Objects/
rangeobject.c 8 long step; member in struct:__anon30438
12 /* Return number of items in range (lo, hi, step). step != 0
16 get_len_of_range(long lo, long hi, long step)
19 If step > 0 and lo >= hi, or step < 0 and lo <= hi, the range is empty.
20 Else for step > 0, if n values are in the range, the last one is
21 lo + (n-1)*step, which must be <= hi-1. Rearranging,
22 n <= (hi - lo - 1)/step + 1, so taking the floor of the RHS gives
28 precision to compute the RHS exactly. The analysis for step <
233 long step; member in struct:__anon30439
315 long start, step, len; local
    [all...]
  /external/bart/bart/common/
Utils.py 70 def area_under_curve(series, sign=None, method="trapz", step="post"):
88 :param step: The step behaviour for `rect` method
89 :type step: str
93 - Step: Post
119 - Step: Pre
153 if step == "post":
155 elif step == "pre":
158 raise ValueError("Invalid Value for step: {}".format(step))
    [all...]
  /external/skia/infra/bots/recipe_modules/run/examples/
full.py 10 'recipe_engine/step',
17 api.run(api.step, 'run %d' % i, cmd=['echo', str(i)])
23 api.run(api.step, 'fail', cmd=['false'])
24 except api.step.StepFailure:
26 api.run(api.step, 'fail again', cmd=['false'], abort_on_failure=False)
27 api.run(api.step, 'do a thing', cmd=['echo', 'do the thing'])
41 api.run(api.step, 'env', cmd=['env'])
48 api.run.with_retry(api.step, 'retry fail', 5, cmd=['false'])
49 except api.step.StepFailure:
51 api.run.with_retry(api.step, 'retry success', 3, cmd=['false']
    [all...]
  /external/strace/tests/
qual_fault.test 42 local trace fault err first step procs extra
47 step=$1; shift
52 if [ -z "$first$step" ]; then
54 step=1
56 case "$step" in
57 '') when=":when=$first"; step=0 ;;
58 +) when=":when=$first+"; step=1 ;;
59 *) when=":when=$first+$step" ;;
83 ../$NAME $raw "$err" "$first" "$step" $N \
  /external/strace/tests-m32/
qual_fault.test 42 local trace fault err first step procs extra
47 step=$1; shift
52 if [ -z "$first$step" ]; then
54 step=1
56 case "$step" in
57 '') when=":when=$first"; step=0 ;;
58 +) when=":when=$first+"; step=1 ;;
59 *) when=":when=$first+$step" ;;
83 ../$NAME $raw "$err" "$first" "$step" $N \
  /external/strace/tests-mx32/
qual_fault.test 42 local trace fault err first step procs extra
47 step=$1; shift
52 if [ -z "$first$step" ]; then
54 step=1
56 case "$step" in
57 '') when=":when=$first"; step=0 ;;
58 +) when=":when=$first+"; step=1 ;;
59 *) when=":when=$first+$step" ;;
83 ../$NAME $raw "$err" "$first" "$step" $N \
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_Clip8_s.s 41 step RN 2 label
71 VST1 {dclip0},[pDst],step ;// store 8 bytes and pDst=pDst+step
72 VST1 {dclip1},[pDst],step ;// store 8 bytes and pDst=pDst+step
75 VST1 {dclip2},[pDst],step
76 VST1 {dclip3},[pDst],step
82 VST1 {dclip0},[pDst],step ;// store 8 bytes and pDst=pDst+step
83 VST1 {dclip1},[pDst],step ;// store 8 bytes and pDst=pDst+ste
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
rangeobject.c 8 long step; member in struct:__anon5928
12 /* Return number of items in range (lo, hi, step). step != 0
16 get_len_of_range(long lo, long hi, long step)
19 If step > 0 and lo >= hi, or step < 0 and lo <= hi, the range is empty.
20 Else for step > 0, if n values are in the range, the last one is
21 lo + (n-1)*step, which must be <= hi-1. Rearranging,
22 n <= (hi - lo - 1)/step + 1, so taking the floor of the RHS gives
28 precision to compute the RHS exactly. The analysis for step < 0
208 long step; member in struct:__anon5929
290 long start, step, len; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_PredictIntra_16x16_s.s 176 step RN 10 label
208 ADD step, dstStep, dstStep
209 VST1 qAbove, [pDst], step
210 VST1 qAbove, [pTmp], step
211 VST1 qAbove, [pDst], step
212 VST1 qAbove, [pTmp], step
213 VST1 qAbove, [pDst], step
214 VST1 qAbove, [pTmp], step
215 VST1 qAbove, [pDst], step
216 VST1 qAbove, [pTmp], step
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
GL2JniLibOne.java 25 public static native void step(); method in class:GL2JniLibOne
  /device/google/contexthub/firmware/lib/libc/
crt.c 26 const int32_t step = from_addr < to_addr ? 1 : -1; local
27 const int32_t count = step > 0 ? end - start : start - end;
30 if (&start[step * count] != end)
33 for (; start != end; start += step) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon5431
33 PyObject* step);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon5737
33 PyObject* step);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYStepCalculatorTest.java 47 XYStep step = XYStepCalculator.getStep(XYStepMode.SUBDIVIDE, plotSize, numSegments, minVal, maxVal); local
49 assertEquals(plotSize/(numSegments-1), step.getStepPix());
50 //assertEquals(10, step.getStepVal());
55 step = XYStepCalculator.getStep(XYStepMode.SUBDIVIDE, plotSize, numSegments, minVal, maxVal);
56 assertEquals(plotSize/(numSegments-1), step.getStepPix());
  /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
  /external/python/cpython2/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon30131
33 PyObject* step);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
39 Py_ssize_t *step, Py_ssize_t *slicelength);

Completed in 1784 milliseconds

12 3 4 5 6 7 8 91011>>