Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dlossless_enc_mips32.c28 uint32_t log_cnt, y, correction; in FastSLog2Slow() local
41 : [log_cnt]"=&r"(log_cnt), [y]"=&r"(y), in FastSLog2Slow()
55 return v_f * (kLog2Table[temp] + log_cnt) + correction; in FastSLog2Slow()
64 uint32_t log_cnt, y; in FastLog2Slow() local
75 : [log_cnt]"=&r"(log_cnt), [y]"=&r"(y), in FastLog2Slow()
80 log_2 = kLog2Table[temp] + log_cnt; in FastLog2Slow()
Dlossless_enc.c335 int log_cnt = 0; in FastSLog2Slow() local
341 ++log_cnt; in FastSLog2Slow()
352 return v_f * (kLog2Table[v] + log_cnt) + correction; in FastSLog2Slow()
361 int log_cnt = 0; in FastLog2Slow() local
366 ++log_cnt; in FastLog2Slow()
370 log_2 = kLog2Table[v] + log_cnt; in FastLog2Slow()
/external/opencv3/3rdparty/libwebp/dsp/
Dlossless.c241 int log_cnt = 0; in VP8LFastSLog2Slow() local
244 ++log_cnt; in VP8LFastSLog2Slow()
247 return v_f * (kLog2Table[v] + log_cnt); in VP8LFastSLog2Slow()
256 int log_cnt = 0; in VP8LFastLog2Slow() local
258 ++log_cnt; in VP8LFastLog2Slow()
261 return kLog2Table[v] + log_cnt; in VP8LFastLog2Slow()