Searched refs:run_count (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | ffv1dec_template.c | 30 int run_count = 0; in decode_line() local 74 if (run_count == 0 && run_mode == 1) { in decode_line() 76 run_count = 1 << ff_log2_run[run_index]; in decode_line() 77 if (x + run_count <= w) in decode_line() 81 run_count = get_bits(&s->gb, ff_log2_run[run_index]); in decode_line() 83 run_count = 0; in decode_line() 90 while (run_count > 1 && w-x > 1) { in decode_line() 93 run_count--; in decode_line() 96 while (run_count > 1 && w-x > 1) { in decode_line() 99 run_count in decode_line() [all...] |
H A D | ffv1enc_template.c | 31 int run_count = 0; in encode_line() local 84 while (run_count >= 1 << ff_log2_run[run_index]) { in encode_line() 85 run_count -= 1 << ff_log2_run[run_index]; in encode_line() 90 put_bits(&s->pb, 1 + ff_log2_run[run_index], run_count); in encode_line() 93 run_count = 0; in encode_line() 98 run_count++; in encode_line() 103 run_count, run_index, run_mode, x, in encode_line() 111 while (run_count >= 1 << ff_log2_run[run_index]) { in encode_line() 112 run_count -= 1 << ff_log2_run[run_index]; in encode_line() 117 if (run_count) in encode_line() [all...] |
/third_party/node/test/cctest/ |
H A D | test_platform.cc | 13 int* run_count, in RepostingTask() 17 run_count_(run_count), in RepostingTask() 47 int run_count = 0; in TEST_F() local 51 std::make_unique<RepostingTask>(2, &run_count, isolate_, platform.get())); in TEST_F() 53 EXPECT_EQ(1, run_count); in TEST_F() 55 EXPECT_EQ(2, run_count); in TEST_F() 57 EXPECT_EQ(3, run_count); in TEST_F() 12 RepostingTask(int repost_count, int* run_count, v8::Isolate* isolate, node::NodePlatform* platform) RepostingTask() argument
|
/third_party/node/deps/v8/tools/ |
H A D | generate-runtime-call-stats.py | 247 def write_output(f, table, headers, run_count, format="table"): 256 summary_count = len(headers) - 2 * run_count - 1 257 floatfmt = ("",) + (".0f", ".2f") * run_count + (".2f",) * summary_count 264 def __init__(self, name, run_count): 266 self.durations = [0] * run_count 267 self.counts = [0] * run_count 317 def __init__(self, name, run_count): 319 self.run_count = run_count 336 self.data[name] = Row(name, self.run_count) [all...] |
H A D | run_perf.py | 20 "run_count": <how often will this suite run (optional)>, 67 "run_count": 5, 86 "run_count": 5, 92 "run_count": 3, 309 self.run_count = 10 354 self.run_count = suite.get('run_count', parent.run_count) 355 self.run_count = suite.get('run_count_%s' % arch, self.run_count) [all...] |
/third_party/cups-filters/cupsfilters/ |
H A D | image-sun.c | 78 run_count, in _cupsImageReadSunRaster() local 180 run_count = 0; in _cupsImageReadSunRaster() 201 if (run_count > 0) in _cupsImageReadSunRaster() 204 run_count --; in _cupsImageReadSunRaster() 212 run_count = getc(fp); in _cupsImageReadSunRaster() 213 if (run_count == 0) in _cupsImageReadSunRaster()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-var-gvar-table.hh | 286 uint16_t run_count = (control & POINT_RUN_COUNT_MASK) + 1; in unpack_points() local 289 for (j = 0; j < run_count && i < count; j++, i++) in unpack_points() 300 for (j = 0; j < run_count && i < count; j++, i++) in unpack_points() 307 if (j < run_count) return false; in unpack_points() 329 unsigned int run_count = (control & DELTA_RUN_COUNT_MASK) + 1; in unpack_deltas() local 332 for (j = 0; j < run_count && i < count; j++, i++) in unpack_deltas() 335 for (j = 0; j < run_count && i < count; j++, i++) in unpack_deltas() 343 for (j = 0; j < run_count && i < count; j++, i++) in unpack_deltas() 349 if (j < run_count) in unpack_deltas()
|
Completed in 5 milliseconds