Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/libwebp/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.c334 const int log_cnt = BitsLog2Floor(v) - 7; in FastSLog2Slow_C() local
335 const uint32_t y = 1 << log_cnt; in FastSLog2Slow_C()
339 v >>= log_cnt; in FastSLog2Slow_C()
341 int log_cnt = 0; in FastSLog2Slow_C()
347 ++log_cnt; in FastSLog2Slow_C()
359 return v_f * (kLog2Table[v] + log_cnt) + correction; in FastSLog2Slow_C()
370 const int log_cnt = BitsLog2Floor(v) - 7; in FastLog2Slow_C() local
371 const uint32_t y = 1 << log_cnt; in FastLog2Slow_C()
374 v >>= log_cnt; in FastLog2Slow_C()
376 int log_cnt = 0; in FastLog2Slow_C()
[all …]