HomeSort by relevance Sort by last modified time
    Searched defs:repeat_count (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test5.c 64 int repeat_count; local
75 if( Tcl_GetIntFromObj(interp, objv[1], &repeat_count) ) return TCL_ERROR;
83 for(i=0; i<repeat_count; i++){
  /system/extras/tests/bionic/libc/other/
test_zlib.c 179 int repeat_count = DEFAULT_REPEAT; local
199 repeat_count = strtol(arg, NULL, 10);
201 if (repeat_count <= 0)
202 repeat_count = 1;
255 for ( rr = repeat_count; rr > 0; rr -- )
262 printf( "decompression took: %10.3f ms (%.2f KB/s, %d passes)\n", usec1/1e3, fsize*(1e6/1024)*repeat_count/usec1, repeat_count );
test_jpeg.c 242 int repeat_count = DEFAULT_REPEAT; local
263 repeat_count = strtol(arg, NULL, 10);
265 if (repeat_count <= 0)
266 repeat_count = 1;
328 for ( rr = repeat_count; rr > 0; rr-- ) {
349 for ( rr = repeat_count; rr > 0; rr -- )
359 printf( "decompression took: %10.3f ms (%.2f KB/s, %d passes)\n", usec1/1e3, fsize*(1e6/1024)*repeat_count/usec1, repeat_count );
  /external/chromium_org/cc/resources/
picture_pile.cc 255 int repeat_count = std::max(1, slow_down_raster_scale_factor_for_debug_); local
267 for (int i = 0; i < repeat_count; i++) {
picture_pile_impl.cc 303 int repeat_count = std::max(1, slow_down_raster_scale_factor_for_debug_); local
306 for (int j = 0; j < repeat_count; ++j) {
  /external/chromium_org/third_party/brotli/src/woff2/
glyph.cc 249 int repeat_count = 0; local
277 if (flag == last_flag && repeat_count != 255) {
279 repeat_count++;
281 if (repeat_count != 0) {
285 dst[(*offset)++] = repeat_count;
291 repeat_count = 0;
298 if (repeat_count != 0) {
302 dst[(*offset)++] = repeat_count;
woff2_dec.cc 207 int repeat_count = 0; local
235 if (flag == last_flag && repeat_count != 255) {
237 repeat_count++;
239 if (repeat_count != 0) {
243 dst[flag_offset++] = repeat_count;
249 repeat_count = 0;
256 if (repeat_count != 0) {
260 dst[flag_offset++] = repeat_count;
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 281 " repeat_count = opt_repeat_count || 1;"
286 " repeat_count, callback,"
632 int repeat_count = args[3]->IntegerValue(); local
634 for (int i = 0; i < repeat_count; i++) {
    [all...]
  /external/chromium_org/courgette/
courgette_tool.cc 457 int repeat_count = 1; local
460 if (!base::StringToInt(repeat_switch, &repeat_count))
461 repeat_count = 1;
472 while (repeat_count-- > 0) {
  /external/chromium_org/third_party/ots/src/
woff2.cc 311 int repeat_count = 0; local
339 if (flag == last_flag && repeat_count != 255) {
341 repeat_count++;
343 if (repeat_count != 0) {
347 dst[flag_offset++] = repeat_count;
353 repeat_count = 0;
360 if (repeat_count != 0) {
364 dst[flag_offset++] = repeat_count;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 718 int32_t repeat_count = 100; local
721 repeat_count = 1;
724 v8::Integer::New(env->GetIsolate(), repeat_count)
844 int32_t repeat_count = 1; local
845 v8::Handle<v8::Value> args[] = { v8::Integer::New(isolate, repeat_count) };
901 int32_t repeat_count = 100; local
902 v8::Handle<v8::Value> args[] = { v8::Integer::New(isolate, repeat_count) };
955 int32_t repeat_count = 1; local
1012 int32_t repeat_count = 100; local
    [all...]
  /external/chromium_org/v8/src/
serialize.cc 1583 int repeat_count = 1; local
    [all...]

Completed in 793 milliseconds