Home
last modified time | relevance | path

Searched refs:rate1 (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dencodemb.c165 int rate1; in optimize_b() local
216 rate1 = tokens[next][1].rate; in optimize_b()
223 rate1 += mb->token_costs[type][band][pt][tokens[next][1].token]; in optimize_b()
226 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1); in optimize_b()
229 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1); in optimize_b()
236 tokens[i][0].rate = base_bits + (best ? rate1 : rate0); in optimize_b()
244 rate1 = tokens[next][1].rate; in optimize_b()
278 rate1 += mb->token_costs[type][band][pt][tokens[next][1].token]; in optimize_b()
283 rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1); in optimize_b()
286 rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1); in optimize_b()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c93 int64_t rate0, rate1; in vp9_optimize_b() local
195 rate1 = in vp9_optimize_b()
237 rd_cost1 = RDCOST(rdmult, rddiv, (rate1 + next_bits1), distortion1); in vp9_optimize_b()
244 RDCOST(rdmult, rddiv, (accu_rate + rate1 + next_eob_bits1), in vp9_optimize_b()
266 accu_rate += rate1; in vp9_optimize_b()
/external/iptables/extensions/
Dlibxt_hashlimit.t30 …-upto 40/sec --hashlimit-burst 20 --hashlimit-mode srcip --hashlimit-name rate1 --hashlimit-rate-m…
/external/deqp/external/vulkancts/modules/vulkan/fragment_shading_rate/
DvktFragmentShadingRateBasic.cpp128 deInt32 Simulate (deInt32 rate0, deInt32 rate1, deInt32 rate2);
582 deInt32 FSRTestInstance::Simulate(deInt32 rate0, deInt32 rate1, deInt32 rate2) in Simulate() argument
584 …deInt32 &cachedRate = m_simulateCache[(rate2*m_simulateValueCount + rate1)*m_simulateValueCount + … in Simulate()
589 VkExtent2D extent1 = ShadingRateEnumToExtent(rate1); in Simulate()
/external/libaom/libaom/av1/encoder/
Dencoder.c5877 int64_t rate1 = INT64_MAX; in encode_with_and_without_superres() local
5879 err = encode_with_recode_loop_and_filter(cpi, size, dest, &sse1, &rate1, in encode_with_and_without_superres()
5904 int64_t rate1 = INT64_MAX; in encode_with_and_without_superres() local
5907 (void)rate1; in encode_with_and_without_superres()
5918 rate1 = this_rate; in encode_with_and_without_superres()
5925 const double proj_rdcost1 = RDCOST_DBL(rdmult, rate1, sse1); in encode_with_and_without_superres()
5945 assert(rate1 == rate3); in encode_with_and_without_superres()
/external/wpa_supplicant_8/wpa_supplicant/
Dscan.c2293 int rate0, int rate1) in interpolate_rate() argument
2295 return rate0 + (snr - snr0) * (rate1 - rate0) / (snr1 - snr0); in interpolate_rate()