Searched refs:price (Results 1 - 25 of 25) sorted by relevance

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DItem.java20 private String price; field in class:Item
28 return price;
31 public void setPrice(String price) { argument
32 this.price = price;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
H A DOptimum.java20 * Cumulative price of arriving to this byte.
22 int price; field in class:Optimum
33 * Resets the price.
36 price = INFINITY_PRICE;
43 price = newPrice;
53 price = newPrice;
65 price = newPrice;
H A DLZMAEncoderNormal.java176 // Calculate the price of encoding the current byte as a literal.
192 if (shortRepPrice < opts[1].price)
207 // those price calculation functions. (The price function above
230 int price = longRepPrice + repLenEncoder.getPrice(repLen,
232 if (price < opts[repLen].price)
233 opts[repLen].set1(price, 0, rep);
252 int price = getMatchAndLenPrice(normalMatchPrice,
254 if (price < opt
[all...]
H A DLZMAEncoder.java380 int price = anyRepPrice;
383 price += RangeEncoder.getBitPrice(isRep0[state.get()], 0)
387 price += RangeEncoder.getBitPrice(isRep0[state.get()], 1);
390 price += RangeEncoder.getBitPrice(isRep1[state.get()], 0);
392 price += RangeEncoder.getBitPrice(isRep1[state.get()], 1)
397 return price;
409 int price = normalMatchPrice
414 price += fullDistPrices[distState][dist];
417 // the price of direct bits.
419 price
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeEncoder.java46 int price = 0;
52 price += Encoder.GetPrice(Models[m], bit);
55 return price;
60 int price = 0;
66 price += Encoder.GetPrice(Models[m], bit);
69 return price;
75 int price = 0;
81 price += Encoder.GetPrice(Models[startIndex + m], bit);
84 return price;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DProduct.java22 public Float price; field in class:Product
/external/lz4/lib/
H A Dlz4opt.h47 int price; member in struct:__anon15322
54 /* price in bits */
57 size_t price = 8*litlen; local
58 if (litlen >= (size_t)RUN_MASK) price+=8*(1+(litlen-RUN_MASK)/255);
59 return price;
66 size_t price = 16 + 8; /* 16-bit offset + token */ local
68 price += LZ4HC_literalsPrice(litlen);
71 if (mlen >= (size_t)ML_MASK) price+=8*(1+(mlen-ML_MASK)/255);
73 return price;
195 #define SET_PRICE(pos, mlen, offset, litlen, price) \
220 size_t i, llen, litlen, mlen, best_mlen, price, offset, best_off, match_num, last_pos; local
[all...]
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs48 UInt32 price = 0;
54 price += Models[m].GetPrice(bit);
57 return price;
62 UInt32 price = 0;
68 price += Models[m].GetPrice(bit);
71 return price;
77 UInt32 price = 0;
83 price += Models[startIndex + m].GetPrice(bit);
86 return price;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
H A DRangeEncoder.java149 int price = 0;
155 price += getBitPrice(probs[symbol], bit);
158 return price;
174 int price = 0;
181 price += getBitPrice(probs[index], bit);
185 return price;
/external/lzma/C/
H A DLzmaEnc.c181 UInt32 price; member in struct:__anon15382
688 UInt32 price = 0; local
692 price += GET_PRICEa(probs[symbol >> 8], (symbol >> 7) & 1);
696 return price;
701 UInt32 price = 0; local
707 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
712 return price;
745 UInt32 price = 0; local
749 price += GET_PRICEa(probs[symbol >> 1], symbol & 1);
752 return price;
757 UInt32 price = 0; local
920 UInt32 price; local
1113 UInt32 price; local
1377 UInt32 price; local
[all...]
/external/tensorflow/tensorflow/contrib/linear_optimizer/python/
H A Dsdca_estimator_test.py84 'price': constant_op.constant([600.0, 1000.0, 400.0]),
91 feature_column_lib.real_valued_column('price'),
112 'price':
124 price = feature_column_lib.real_valued_column('price')
129 feature_columns=[price, country],
142 'price':
158 country, 'price')
205 'price':
219 price
[all...]
/external/tensorflow/tensorflow/python/feature_column/
H A Dfeature_column_test.py247 price = fc.numeric_column('price', shape=[2])
250 'price':
256 features=fc.make_parse_example_spec([price]))
257 self.assertIn('price', features)
259 self.assertAllEqual([[20., 110.]], features['price'].eval())
262 price = fc.numeric_column('price', shape=[2], default_value=11.)
265 'price':
278 features=fc.make_parse_example_spec([price]))
[all...]
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
H A Dsvm_test.py174 'price':
183 price = feature_column.real_valued_column('price')
186 svm_classifier = svm.SVM(feature_columns=[price, country],
200 'price': constant_op.constant([[600.0], [800.0], [400.0]]),
206 feature_column.real_valued_column('price'), boundaries=[500.0, 700.0])
225 'price':
238 price = feature_column.real_valued_column('price')
247 feature_columns=[price, sq_footage_bucke
[all...]
H A Dlinear_test.py784 'price': constant_op.constant([[600.0], [1000.0], [400.0]]),
790 feature_column_lib.real_valued_column('price'),
811 'price':
822 price = feature_column_lib.real_valued_column('price')
828 feature_columns=[price, country],
842 'price':
857 country, 'price')
906 'price':
919 price
[all...]
/external/tensorflow/tensorflow/contrib/kernel_methods/python/
H A Dkernel_estimators_test.py196 'price':
205 price = layers.real_valued_column('price')
210 feature_columns=[price, country])
221 feature_columns=[price, country], kernel_mappers=kernel_mappers)
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs110 uint price = 0;
119 price += m_Encoders[((1 + matchBit) << 8) + context].GetPrice(bit);
131 price += m_Encoders[context].GetPrice(bit);
134 return price;
463 UInt32 price;
466 price = _isRepG0[state.Index].GetPrice0();
467 price += _isRep0Long[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
471 price = _isRepG0[state.Index].GetPrice1();
473 price += _isRepG1[state.Index].GetPrice0();
476 price
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java110 int price = 0;
119 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + context], bit);
131 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[context], bit);
134 return price;
463 int price;
466 price = SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRepG0[state]);
467 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep0Long[(state << Base.kNumPosStatesBitsMax) + posState]);
471 price = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRepG0[state]);
473 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRepG1[state]);
476 price
[all...]
/external/lzma/C/Util/SfxSetup/
H A DSfxSetup.c451 unsigned price = namePrice + extPrice * 64 + (nameStartPos == 0 ? 0 : (1 << 12)); local
452 if (minPrice > price)
454 minPrice = price;
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
H A DFactoryProviderTest.java241 assertEquals(50000d, grayPorshe.price);
248 private final double price; field in class:FactoryProviderTest.Porshe
253 public Porshe(@Assisted Color color, double price) { argument
255 this.price = price;
H A DFactoryProvider2Test.java206 assertEquals(50000d, grayPorsche.price);
213 private final double price; field in class:FactoryProvider2Test.Porsche
218 public Porsche(@Assisted Color color, double price) { argument
220 this.price = price;
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp902 int price; member in struct:MultilineStringTypeMap
916 io.mapRequired("price", s.price);
955 map.price = 350;
973 EXPECT_EQ(map2.price, 350);
/external/zlib/src/contrib/masmx64/
H A Dinffasx64.asm18 ; http://www.microsoft.com/whdc/Devtools/wdk/default.mspx for low price)
H A Dgvmat64.asm52 ; http://www.microsoft.com/whdc/Devtools/wdk/default.mspx for low price)
/external/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py1056 AddDescriptorField(desc_proto, 'price', fdp.TYPE_DOUBLE)
1069 self.assertTrue('price' in desc.fields_by_name)
1079 prius.price = 25134.75
1092 self.assertEqual(prius.price, new_prius.price)
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...

Completed in 752 milliseconds