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

  /external/chromium_org/third_party/libwebp/enc/
histogram.c 195 static double ExtraCost(const int* const population, int length) {
209 + ExtraCost(p->literal_ + 256, NUM_LENGTH_CODES)
210 + ExtraCost(p->distance_, NUM_DISTANCE_CODES);
219 + ExtraCost(p->literal_ + 256, NUM_LENGTH_CODES)
220 + ExtraCost(p->distance_, NUM_DISTANCE_CODES);
268 cost += ExtraCost(out->literal_ + 256, NUM_LENGTH_CODES);
283 cost += ExtraCost(out->distance_, NUM_DISTANCE_CODES);
309 cost += ExtraCost(tmp + 256, NUM_LENGTH_CODES);
324 cost += ExtraCost(tmp, NUM_DISTANCE_CODES);
  /external/webp/src/enc/
histogram.c 195 static double ExtraCost(const int* const population, int length) {
209 + ExtraCost(p->literal_ + 256, NUM_LENGTH_CODES)
210 + ExtraCost(p->distance_, NUM_DISTANCE_CODES);
219 + ExtraCost(p->literal_ + 256, NUM_LENGTH_CODES)
220 + ExtraCost(p->distance_, NUM_DISTANCE_CODES);
268 cost += ExtraCost(out->literal_ + 256, NUM_LENGTH_CODES);
283 cost += ExtraCost(out->distance_, NUM_DISTANCE_CODES);
309 cost += ExtraCost(tmp + 256, NUM_LENGTH_CODES);
324 cost += ExtraCost(tmp, NUM_DISTANCE_CODES);
  /external/llvm/lib/CodeGen/
IfConversion.cpp 98 /// ExtraCost - Extra cost for multi-cycle instructions.
115 unsigned ExtraCost;
126 ExtraCost(0), ExtraCost2(0), BB(0), TrueBB(0), FalseBB(0) {}
655 BBI.ExtraCost = 0;
676 BBI.ExtraCost += NumCycles-1;
806 TrueBBI.ExtraCost), TrueBBI.ExtraCost2,
808 FalseBBI.ExtraCost),FalseBBI.ExtraCost2,
826 MeetIfcvtSizeLimit(*TrueBBI.BB, TrueBBI.NonPredSize + TrueBBI.ExtraCost,
841 MeetIfcvtSizeLimit(*TrueBBI.BB, TrueBBI.NonPredSize + TrueBBI.ExtraCost,
849 MeetIfcvtSizeLimit(*TrueBBI.BB, TrueBBI.NonPredSize + TrueBBI.ExtraCost,
    [all...]

Completed in 657 milliseconds