Home
last modified time | relevance | path

Searched refs:STEPSIZE (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Tools/scripts/
Dpindent.py82 STEPSIZE = 8 variable
103 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
334 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
340 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
346 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
351 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
359 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
367 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
392 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
406 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
[all …]
/external/python/cpython3/Tools/scripts/
Dpindent.py80 STEPSIZE = 8 variable
101 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
332 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
349 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
357 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
365 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
390 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
404 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
DDefaultMp4Builder.java71 public int STEPSIZE = 64; field in DefaultMp4Builder
472 for (int i = 0; i < Math.ceil((double) nuSamples.size() / STEPSIZE); i++) { in getBox()
474 i * STEPSIZE, // start in getBox()
475 … (i + 1) * STEPSIZE < nuSamples.size() ? (i + 1) * STEPSIZE : nuSamples.size()); // end in getBox()
DFragmentedMp4Builder.java207 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/
Dlz4.c419 #define STEPSIZE sizeof(reg_t) macro
425 if (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count()
428 pIn+=STEPSIZE; pMatch+=STEPSIZE; in LZ4_count()
433 while (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count()
435 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count()
440 …if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMat… in LZ4_count()
/external/libjpeg-turbo/
Djquant2.c1094 #define STEPSIZE ((MAXJSAMPLE + 1) / 16) in init_error_limit() macro
1097 for (in = 0; in < STEPSIZE; in++, out++) { in init_error_limit()
1101 for (; in < STEPSIZE * 3; in++, out += (in & 1) ? 0 : 1) { in init_error_limit()
1108 #undef STEPSIZE in init_error_limit()