HomeSort by relevance Sort by last modified time
    Searched refs:new_b (Results 1 - 7 of 7) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c 126 const int new_b = cost_branch256(ct, newp); local
128 const int savings = old_b - new_b - update_b;
143 int i, old_b, new_b, update_b, savings, bestsavings; local
164 new_b = cost_branch256(ct + 2 * PIVOT_NODE, newp);
166 new_b += cost_branch256(ct + 2 * i, newplist[i - UNCONSTRAINED_NODES]);
168 savings = old_b - new_b - update_b;
  /art/runtime/
jvalue.h 39 void SetB(int8_t new_b) {
40 j = ((static_cast<int64_t>(new_b) << 56) >> 56); // Sign-extend to 64 bits.
  /art/compiler/optimizing/
induction_var_analysis.cc 439 InductionInfo* new_b = TransferAddSub(a->op_b, b->op_b, op); local
440 if (new_a != nullptr && new_b != nullptr) {
441 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
446 InductionInfo* new_b = TransferAddSub(a, b->op_b, op); local
452 if (new_a != nullptr && new_b != nullptr) {
453 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_);
458 InductionInfo* new_b = TransferAddSub(a->op_b, b, op); local
462 if (new_a != nullptr && new_b != nullptr) {
463 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
481 InductionInfo* new_b = TransferNeg(a->op_b) local
504 InductionInfo* new_b = TransferMul(a, b->op_b); local
512 InductionInfo* new_b = TransferMul(a->op_b, b); local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodemv.c 178 const int new_b = vp8_cost_branch(ct, new_p); local
183 if (cur_b - new_b > cost) {
bitstream.c 60 unsigned int new_b = 0, old_b = 0; local
67 new_b += vp8_cost_branch(bct[i], Pnew[i]);
71 if (new_b + (n << 8) < old_b) {
712 const int new_b = vp8_cost_branch(ct, newp); local
715 return old_b - new_b - update_b;
    [all...]
  /external/webp/src/enc/
backward_references_enc.c 182 PixOrCopyBlock* const new_b = BackwardRefsNewBlock(dst); local
183 if (new_b == NULL) return 0; // dst->error_ is set
184 memcpy(new_b->start_, b->start_, b->size_ * sizeof(*b->start_));
185 new_b->size_ = b->size_;
    [all...]
  /external/webp/src/dsp/
lossless_enc.c 507 const uint32_t new_b = (((argb >> 0) & 0xff) - green) & 0xff; local
508 argb_data[i] = (argb & 0xff00ff00u) | (new_r << 16) | new_b;
    [all...]

Completed in 151 milliseconds