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

123

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/rangecoder/
H A Dprice.h3 /// \file price.h
4 /// \brief Probability price calculation
55 uint32_t price = 0; local
61 price += rc_bit_price(probs[symbol], bit);
64 return price;
72 uint32_t price = 0; local
78 price += rc_bit_price(probs[model_index], bit);
82 return price;
H A DMakefile.inc15 rangecoder/price.h \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/CPP/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.h47 UInt32 price = 0; local
50 price += Models[symbol >> 1].GetPrice(symbol & 1);
53 return price;
57 UInt32 price = 0; local
63 price += Models[modelIndex].GetPrice(bit);
66 return price;
128 UInt32 price = 0; local
134 price += Models[modelIndex].GetPrice(bit);
137 return price;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/CPP/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.h47 UInt32 price = 0; local
50 price += Models[symbol >> 1].GetPrice(symbol & 1);
53 return price;
57 UInt32 price = 0; local
63 price += Models[modelIndex].GetPrice(bit);
66 return price;
128 UInt32 price = 0; local
134 price += Models[modelIndex].GetPrice(bit);
137 return price;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/CPP/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.h47 UInt32 price = 0; local
50 price += Models[symbol >> 1].GetPrice(symbol & 1);
53 return price;
57 UInt32 price = 0; local
63 price += Models[modelIndex].GetPrice(bit);
66 return price;
128 UInt32 price = 0; local
134 price += Models[modelIndex].GetPrice(bit);
137 return price;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_normal.c29 uint32_t price = 0; local
32 price = rc_bittree_price(subcoder, 8, symbol);
44 price += rc_bit_price(subcoder[subcoder_index], bit);
52 return price;
60 // NOTE: Unlike the other price tables, length prices are updated
79 uint32_t price; local
82 price = rc_bit_0_price(coder->is_rep0[state]);
83 price += rc_bit_1_price(coder->is_rep0_long[state][pos_state]);
85 price = rc_bit_1_price(coder->is_rep0[state]);
88 price
115 uint32_t price; local
171 const uint32_t price = rc_bittree_reverse_price( local
398 const uint32_t price = rep_match_price + get_pure_rep_price( local
628 const uint32_t price = rep_match_price + get_pure_rep_price( local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/CPP/7zip/Compress/LZMA/
H A DLZMAEncoder.h338 UInt32 price; local
341 price = _isRepG0[state.Index].GetPrice0();
342 price += _isRep0Long[state.Index][posState].GetPrice1();
346 price = _isRepG0[state.Index].GetPrice1();
348 price += _isRepG1[state.Index].GetPrice0();
351 price += _isRepG1[state.Index].GetPrice1();
352 price += _isRepG2[state.Index].GetPrice(repIndex - 2);
355 return price;
371 UInt32 price;
374 price
383 UInt32 price; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/CPP/7zip/Compress/LZMA/
H A DLZMAEncoder.h338 UInt32 price; local
341 price = _isRepG0[state.Index].GetPrice0();
342 price += _isRep0Long[state.Index][posState].GetPrice1();
346 price = _isRepG0[state.Index].GetPrice1();
348 price += _isRepG1[state.Index].GetPrice0();
351 price += _isRepG1[state.Index].GetPrice1();
352 price += _isRepG2[state.Index].GetPrice(repIndex - 2);
355 return price;
371 UInt32 price;
374 price
383 UInt32 price; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/CPP/7zip/Compress/LZMA/
H A DLZMAEncoder.h338 UInt32 price; local
341 price = _isRepG0[state.Index].GetPrice0();
342 price += _isRep0Long[state.Index][posState].GetPrice1();
346 price = _isRepG0[state.Index].GetPrice1();
348 price += _isRepG1[state.Index].GetPrice0();
351 price += _isRepG1[state.Index].GetPrice1();
352 price += _isRepG2[state.Index].GetPrice(repIndex - 2);
355 return price;
371 UInt32 price;
374 price
383 UInt32 price; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/examples_java/src/persist/
H A DEventExample.java43 * attributes, such as price, account reps, customer name and quantity.
71 /* This example will add secondary indices on price and accountReps. */
72 private int price; field in class:EventExample.Event
78 Event(int price, argument
81 this.price = price;
93 sb.append(" price=").append(price);
107 return price;
219 * by price
[all...]
H A DEventExampleDPL.java37 * other attributes, such as price, account reps, customer name and
69 private int price; field in class:EventExampleDPL.Event
77 int price,
81 this.price = price;
96 sb.append(" price=").append(price);
116 * as well as by the rep and price fields
176 "price");
224 * Display all events, ordered by a secondary index on price
76 Event(Date time, int price, String customerName) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/examples_java/src/persist/
H A DEventExample.java43 * attributes, such as price, account reps, customer name and quantity.
71 /* This example will add secondary indices on price and accountReps. */
72 private int price; field in class:EventExample.Event
78 Event(int price, argument
81 this.price = price;
93 sb.append(" price=").append(price);
107 return price;
219 * by price
[all...]
H A DEventExampleDPL.java37 * other attributes, such as price, account reps, customer name and
69 private int price; field in class:EventExampleDPL.Event
77 int price,
81 this.price = price;
96 sb.append(" price=").append(price);
116 * as well as by the rep and price fields
176 "price");
224 * Display all events, ordered by a secondary index on price
76 Event(Date time, int price, String customerName) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/examples_java/src/persist/
H A DEventExample.java43 * attributes, such as price, account reps, customer name and quantity.
71 /* This example will add secondary indices on price and accountReps. */
72 private int price; field in class:EventExample.Event
78 Event(int price, argument
81 this.price = price;
93 sb.append(" price=").append(price);
107 return price;
219 * by price
[all...]
H A DEventExampleDPL.java37 * other attributes, such as price, account reps, customer name and
69 private int price; field in class:EventExampleDPL.Event
77 int price,
81 this.price = price;
96 sb.append(" price=").append(price);
116 * as well as by the rep and price fields
176 "price");
224 * Display all events, ordered by a secondary index on price
76 Event(Date time, int price, String customerName) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/tools/misc/lzma_src/C/
H A DLzmaEnc.c146 UInt32 price; member in struct:_COptimal
661 UInt32 price = 0; local
665 price += GET_PRICEa(probs[symbol >> 8], (symbol >> 7) & 1);
669 return price;
674 UInt32 price = 0; local
680 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
685 return price;
718 UInt32 price = 0; local
722 price += GET_PRICEa(probs[symbol >> 1], symbol & 1);
725 return price;
730 UInt32 price = 0; local
888 UInt32 price; local
1076 UInt32 price; local
1337 UInt32 price; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/examples_c/getting_started/
H A Dexample_database_read.c194 float price; local
200 price = *((float *)buf);
220 printf("\tPrice: %.2f\n", price);
H A Dexample_database_load.c211 float price; local
231 name, sku, &price, &quantity, category, vendor);
242 memcpy(databuf, &price, dataLen);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/examples_c/getting_started/
H A Dexample_database_read.c194 float price; local
200 price = *((float *)buf);
220 printf("\tPrice: %.2f\n", price);
H A Dexample_database_load.c211 float price; local
231 name, sku, &price, &quantity, category, vendor);
242 memcpy(databuf, &price, dataLen);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/examples_c/getting_started/
H A Dexample_database_read.c194 float price; local
200 price = *((float *)buf);
220 printf("\tPrice: %.2f\n", price);
H A Dexample_database_load.c211 float price; local
231 name, sku, &price, &quantity, category, vendor);
242 memcpy(databuf, &price, dataLen);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/examples_cxx/getting_started/
H A DgettingStartedCommon.hpp20 inline void setPrice(double price) {price_ = price;} argument
172 * first string in the buffer after the price (a double) and the quantity
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/examples_cxx/getting_started/
H A DgettingStartedCommon.hpp20 inline void setPrice(double price) {price_ = price;} argument
172 * first string in the buffer after the price (a double) and the quantity
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/examples_cxx/getting_started/
H A DgettingStartedCommon.hpp20 inline void setPrice(double price) {price_ = price;} argument
172 * first string in the buffer after the price (a double) and the quantity

Completed in 153 milliseconds

123