HomeSort by relevance Sort by last modified time
    Searched refs:STEPSIZE (Results 1 - 7 of 7) sorted by null

  /external/python/cpython2/Tools/scripts/
pindent.py 47 # -s stepsize: set the indentation step size (default 8)
82 STEPSIZE = 8
103 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
334 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
335 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
340 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
341 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
346 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS)
    [all...]
  /external/python/cpython3/Tools/scripts/
pindent.py 47 # -s stepsize: set the indentation step size (default 8)
80 STEPSIZE = 8
101 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
332 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
333 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
339 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pindent.py 47 # -s stepsize: set the indentation step size (default 8)
80 STEPSIZE = 8
99 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
339 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
345 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs)
350 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
DefaultMp4Builder.java 71 public int STEPSIZE = 64;
472 for (int i = 0; i < Math.ceil((double) nuSamples.size() / STEPSIZE); i++) {
474 i * STEPSIZE, // start
475 (i + 1) * STEPSIZE < nuSamples.size() ? (i + 1) * STEPSIZE : nuSamples.size()); // end
FragmentedMp4Builder.java 207 int STEPSIZE = 1024;
211 for (int i = 0; i < Math.ceil((double) samples.size() / STEPSIZE); i++) {
213 i * STEPSIZE, // start
214 (i + 1) * STEPSIZE < samples.size() ? (i + 1) * STEPSIZE : samples.size()); // end
  /external/lz4/lib/
lz4.c 419 #define STEPSIZE sizeof(reg_t)
425 if (likely(pIn < pInLimit-(STEPSIZE-1))) {
428 pIn+=STEPSIZE; pMatch+=STEPSIZE;
433 while (likely(pIn < pInLimit-(STEPSIZE-1))) {
435 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; }
440 if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; }
    [all...]
  /external/libjpeg-turbo/
jquant2.c     [all...]

Completed in 193 milliseconds