Searched refs:probs (Results 1 – 4 of 4) sorted by relevance
| /OK3568_Linux_fs/u-boot/lib/lzma/ |
| H A D | LzmaDec.c | 30 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); } argument 31 #define TREE_DECODE(probs, limit, i) \ argument 32 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } 37 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument 39 #define TREE_6_DECODE(probs, i) \ argument 41 TREE_GET_BIT(probs, i); \ 42 TREE_GET_BIT(probs, i); \ 43 TREE_GET_BIT(probs, i); \ 44 TREE_GET_BIT(probs, i); \ 45 TREE_GET_BIT(probs, i); \ [all …]
|
| H A D | LzmaDec.h | 49 CLzmaProb *probs; member 67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
|
| /OK3568_Linux_fs/kernel/lib/xz/ |
| H A D | xz_dec_lzma2.c | 537 uint16_t *probs, uint32_t limit) in rc_bittree() argument 542 if (rc_bit(rc, &probs[symbol])) in rc_bittree() 553 uint16_t *probs, in rc_bittree_reverse() argument 560 if (rc_bit(rc, &probs[symbol])) { in rc_bittree_reverse() 600 uint16_t *probs; in lzma_literal() local 607 probs = lzma_literal_probs(s); in lzma_literal() 610 symbol = rc_bittree(&s->rc, probs, 0x100); in lzma_literal() 621 if (rc_bit(&s->rc, &probs[i])) { in lzma_literal() 639 uint16_t *probs; in lzma_len() local 643 probs = l->low[pos_state]; in lzma_len() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/ |
| H A D | ml.hpp | 911 CV_WRAP virtual Vec2d predict2(InputArray sample, OutputArray probs) const = 0; 944 OutputArray probs=noArray()) = 0; 978 OutputArray probs=noArray()) = 0; 1001 OutputArray probs=noArray()) = 0;
|