Searched refs:STEPSIZE (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Tools/scripts/ |
D | pindent.py | 80 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 …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jquant2.c | 1094 #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()
|
/third_party/lz4/lib/ |
D | lz4.c | 657 #define STEPSIZE sizeof(reg_t) macro 663 if (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count() 666 pIn+=STEPSIZE; pMatch+=STEPSIZE; in LZ4_count() 671 while (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count() 673 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count() 678 …if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMat… in LZ4_count()
|