Home
last modified time | relevance | path

Searched full:price (Results 1 – 25 of 202) sorted by relevance

123456789

/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
DLZMAEncoderNormal.java176 // Calculate the price of encoding the current byte as a literal. in getNextSymbol()
192 if (shortRepPrice < opts[1].price) in getNextSymbol()
207 // those price calculation functions. (The price function above in getNextSymbol()
230 int price = longRepPrice + repLenEncoder.getPrice(repLen, in getNextSymbol() local
232 if (price < opts[repLen].price) in getNextSymbol()
233 opts[repLen].set1(price, 0, rep); in getNextSymbol()
252 int price = getMatchAndLenPrice(normalMatchPrice, in getNextSymbol() local
254 if (price < opts[len].price) in getNextSymbol()
255 opts[len].set1(price, 0, dist + REPS); in getNextSymbol()
283 anyMatchPrice = opts[optCur].price in getNextSymbol()
[all …]
DLZMAEncoder.java380 int price = anyRepPrice; in getLongRepPrice() local
383 price += RangeEncoder.getBitPrice(isRep0[state.get()], 0) in getLongRepPrice()
387 price += RangeEncoder.getBitPrice(isRep0[state.get()], 1); in getLongRepPrice()
390 price += RangeEncoder.getBitPrice(isRep1[state.get()], 0); in getLongRepPrice()
392 price += RangeEncoder.getBitPrice(isRep1[state.get()], 1) in getLongRepPrice()
397 return price; in getLongRepPrice()
409 int price = normalMatchPrice in getMatchAndLenPrice() local
414 price += fullDistPrices[distState][dist]; in getMatchAndLenPrice()
417 // the price of direct bits. in getMatchAndLenPrice()
419 price += distSlotPrices[distState][distSlot] in getMatchAndLenPrice()
[all …]
DOptimum.java20 * Cumulative price of arriving to this byte.
22 int price; field in Optimum
33 * Resets the price.
36 price = INFINITY_PRICE; in reset()
43 price = newPrice; in set1()
53 price = newPrice; in set2()
65 price = newPrice; in set3()
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java110 int price = 0; in GetPrice() local
119price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + conte… in GetPrice()
131 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[context], bit); in GetPrice()
134 return price; in GetPrice()
290 public int Price; field in Encoder.Optimal
463 int price; in GetPureRepPrice() local
466 price = SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRepG0[state]); in GetPureRepPrice()
467price += SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep0Long[(state << Base.kNumPosState… in GetPureRepPrice()
471 price = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRepG0[state]); in GetPureRepPrice()
473 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRepG1[state]); in GetPureRepPrice()
[all …]
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs110 uint price = 0; in GetPrice()
119 price += m_Encoders[((1 + matchBit) << 8) + context].GetPrice(bit); in GetPrice()
131 price += m_Encoders[context].GetPrice(bit); in GetPrice()
134 return price; in GetPrice()
290 public UInt32 Price; field in SevenZip.Compression.LZMA.Encoder.Optimal
463 UInt32 price; in GetPureRepPrice()
466 price = _isRepG0[state.Index].GetPrice0(); in GetPureRepPrice()
467 price += _isRep0Long[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1(); in GetPureRepPrice()
471 price = _isRepG0[state.Index].GetPrice1(); in GetPureRepPrice()
473 price += _isRepG1[state.Index].GetPrice0(); in GetPureRepPrice()
[all …]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
DBitTreeEncoder.java46 int price = 0; in GetPrice() local
52 price += Encoder.GetPrice(Models[m], bit); in GetPrice()
55 return price; in GetPrice()
60 int price = 0; in ReverseGetPrice() local
66 price += Encoder.GetPrice(Models[m], bit); in ReverseGetPrice()
69 return price; in ReverseGetPrice()
75 int price = 0; in ReverseGetPrice() local
81 price += Encoder.GetPrice(Models[startIndex + m], bit); in ReverseGetPrice()
84 return price; in ReverseGetPrice()
/external/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoderBitTree.cs48 UInt32 price = 0; in GetPrice()
54 price += Models[m].GetPrice(bit); in GetPrice()
57 return price; in GetPrice()
62 UInt32 price = 0; in ReverseGetPrice()
68 price += Models[m].GetPrice(bit); in ReverseGetPrice()
71 return price; in ReverseGetPrice()
77 UInt32 price = 0; in ReverseGetPrice()
83 price += Models[startIndex + m].GetPrice(bit); in ReverseGetPrice()
86 return price; in ReverseGetPrice()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
Dtest_connection.py53 <price>0.045</price>
102 self.assertEqual(instance.pricing_details[0].price, '0.045')
229 <price>166.64</price>
235 <price>133.32</price>
241 <price>99.99</price>
247 <price>66.66</price>
253 <price>33.33</price>
279 self.assertEqual(schedule.price, '166.64')
318 <price>2.5</price>
324 <price>2.5</price>
[all …]
/external/lzma/C/
DLzmaEnc.c156 UInt32 price; member
648 UInt32 price = 0; in LitEnc_GetPrice() local
652 price += GET_PRICEa(probs[symbol >> 8], (symbol >> 7) & 1); in LitEnc_GetPrice()
656 return price; in LitEnc_GetPrice()
661 UInt32 price = 0; in LitEnc_GetPriceMatched() local
667 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1); in LitEnc_GetPriceMatched()
672 return price; in LitEnc_GetPriceMatched()
705 UInt32 price = 0; in RcTree_GetPrice() local
709 price += GET_PRICEa(probs[symbol >> 1], symbol & 1); in RcTree_GetPrice()
712 return price; in RcTree_GetPrice()
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DItem.java20 private String price; field in Item
28 return price; in getPrice()
31 public void setPrice(String price) { in setPrice() argument
32 this.price = price; in setPrice()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
Dreservedinstance.py88 print('\tFixed Price=%s' % self.fixed_price)
89 print('\tUsage Price=%s' % self.usage_price)
113 def __init__(self, connection=None, price=None, count=None): argument
114 self.price = price
214 def __init__(self, connection=None, term=None, price=None, argument
218 self.price = price
228 elif name == 'price':
229 self.price = value
Dspotpricehistory.py33 self.price = 0.0
40 return 'SpotPriceHistory(%s):%2f' % (self.instance_type, self.price)
46 self.price = float(value)
Dspotinstancerequest.py90 :ivar price: The maximum hourly price for any Spot Instance launched to
125 self.price = None
164 self.price = float(value)
Dconnection.py1351 :param start_time: An indication of how far back to provide price
1355 :param end_time: An indication of how far forward to provide price
1398 :return: A list tuples containing price and timestamp.
1422 def request_spot_instances(self, price, image_id, count=1, type='one-time', argument
1438 Request instances on the spot market at a particular price.
1440 :type price: str
1441 :param price: The maximum price of your bid
1576 'SpotPrice': price}
3662 :param instance_count: Limit the price on the total order.
3702 upfront price you want to receive for them. Your Reserved Instance
[all …]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
DRangeEncoder.java149 int price = 0; in getBitTreePrice() local
155 price += getBitPrice(probs[symbol], bit); in getBitTreePrice()
158 return price; in getBitTreePrice()
174 int price = 0; in getReverseBitTreePrice() local
181 price += getBitPrice(probs[index], bit); in getReverseBitTreePrice()
185 return price; in getReverseBitTreePrice()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
Dconnection.py27 from boto.mturk.price import Price
73 [('AvailableBalance', Price),
74 ('OnHoldBalance', Price)])
81 reward is a Price object
232 # Handle price argument
583 Price object.
876 Returns a Price data structure from either a float or a Price
878 if isinstance(reward, Price):
881 final_price = Price(reward)
/external/snakeyaml/src/test/resources/compactnotation/
Dexample11.yaml2 top: Item(id003, price=25.0, name=parrot)
3 bottom: Item(id004, price=3.5, name=sweet)
/external/snakeyaml/src/test/resources/specification/
Dexample2_27.yaml19 price : 450.00
23 price : 2392.00
Dexample2_27_dumped.yaml16 - {description: Basketball, price: 450.0, quantity: 4, sku: BL394D}
17 - {description: Super Hoop, price: 2392.0, quantity: 1, sku: BL4438H}
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-02-27.data19 price : 450.00
23 price : 2392.00
/external/llvm/test/YAMLParser/
Dspec-02-27.test21 price : 450.00
25 price : 2392.00
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
Dresponse.py506 class Price(ResponseElement): class
513 Price = Element(Price) variable in CompetitivePrice
532 Price = Element(Price) variable in LowestOfferListing
536 BuyingPrice = Element(Price)
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DFactoryProviderTest.java241 assertEquals(50000d, grayPorshe.price); in testMethodsAndFieldsGetInjected()
248 private final double price; field in FactoryProviderTest.Porshe
253 public Porshe(@Assisted Color color, double price) { in Porshe() argument
255 this.price = price; in Porshe()
/external/lzma/C/Util/SfxSetup/
DSfxSetup.c445 unsigned price = namePrice + extPrice * 64 + (nameStartPos == 0 ? 0 : (1 << 12)); in main() local
446 if (minPrice > price) in main()
448 minPrice = price; in main()
/external/proguard/docs/
Dtestimonials.html104 Its friendly license, attractive price tag, compelling performance, and
115 And, of course, the price is stunning:

123456789