Home
last modified time | relevance | path

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

/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/libjpeg-turbo/
Djquant2.c1090 #define STEPSIZE ((MAXJSAMPLE+1)/16) in init_error_limit() macro
1093 for (in = 0; in < STEPSIZE; in++, out++) { in init_error_limit()
1097 for (; in < STEPSIZE*3; in++, out += (in&1) ? 0 : 1) { in init_error_limit()
1104 #undef STEPSIZE in init_error_limit()
/external/opencv3/3rdparty/libjpeg/
Djquant2.c1121 #define STEPSIZE ((MAXJSAMPLE+1)/16) in init_error_limit() macro
1124 for (in = 0; in < STEPSIZE; in++, out++) { in init_error_limit()
1128 for (; in < STEPSIZE*3; in++, out += (in&1) ? 0 : 1) { in init_error_limit()
1135 #undef STEPSIZE in init_error_limit()
/external/lz4/lib/
Dlz4.c176 #define STEPSIZE sizeof(size_t) macro
398 while (likely(pIn<pInLimit-(STEPSIZE-1))) in LZ4_count()
401 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; } in LZ4_count()