Home
last modified time | relevance | path

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

/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
Dmain.py160 xcount = count
162 counted = [None for _ in xrange(xcount)]
169 xcount *= 10
171 times.append(result / xcount)
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
Dmain.py173 xcount = count
175 counted = [None for _ in xrange(xcount)]
182 xcount *= 10
184 times.append(result / xcount)
/external/libvpx/libvpx/vp8/encoder/
Dbitstream.h20 void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount,
43 void vp8_pack_tokens_c(vp8_writer *w, const TOKENEXTRA *p, int xcount);
Dbitstream.c162 void vp8_pack_tokens_c(vp8_writer *w, const TOKENEXTRA *p, int xcount) in vp8_pack_tokens_c() argument
164 const TOKENEXTRA *stop = p + xcount; in vp8_pack_tokens_c()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DStringTokenizerTest.java524 int xcount = 0; in TestCountTokensNoCoalesce() local
527 logln("[" + xcount + "] '" + t + "'"); in TestCountTokensNoCoalesce()
528 ++xcount; in TestCountTokensNoCoalesce()
530 if (count != ncount || count != xcount) { in TestCountTokensNoCoalesce()
531 errln("inconsistent counts " + count + ", " + ncount + ", " + xcount); in TestCountTokensNoCoalesce()
/external/libvpx/libvpx/vp8/encoder/arm/armv5te/
Dvp8_packtokens_armv5.asm41 ; r2 int xcount
49 ; Add size of xcount * sizeof (TOKENEXTRA) to get stop
51 add r2, r1, r2, lsl #3 ; stop = p + xcount*sizeof(TOKENEXTRA)