Home
last modified time | relevance | path

Searched refs:log_cnt (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/dsp/
Dlossless_enc_mips32.c29 uint32_t log_cnt, y, correction; in FastSLog2Slow_MIPS32() local
42 : [log_cnt]"=&r"(log_cnt), [y]"=&r"(y), in FastSLog2Slow_MIPS32()
56 return v_f * (kLog2Table[temp] + log_cnt) + correction; in FastSLog2Slow_MIPS32()
65 uint32_t log_cnt, y; in FastLog2Slow_MIPS32() local
76 : [log_cnt]"=&r"(log_cnt), [y]"=&r"(y), in FastLog2Slow_MIPS32()
81 log_2 = kLog2Table[temp] + log_cnt; in FastLog2Slow_MIPS32()
Dlossless_enc.c332 int log_cnt = 0; in FastSLog2Slow_C() local
338 ++log_cnt; in FastSLog2Slow_C()
349 return v_f * (kLog2Table[v] + log_cnt) + correction; in FastSLog2Slow_C()
358 int log_cnt = 0; in FastLog2Slow_C() local
363 ++log_cnt; in FastLog2Slow_C()
367 log_2 = kLog2Table[v] + log_cnt; in FastLog2Slow_C()
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_progs.c49 if (env.log_cnt) { in dump_test_log()
50 env.log_buf[env.log_cnt] = '\0'; in dump_test_log()
52 if (env.log_buf[env.log_cnt - 1] != '\n') in dump_test_log()
506 stdout = open_memstream(&env.log_buf, &env.log_cnt); in stdio_hijack()
527 env.log_cnt = 0; in stdio_restore()
Dtest_progs.h67 size_t log_cnt; member