HomeSort by relevance Sort by last modified time
    Searched refs:entropy (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/jpeg/
jcphuff.c 8 * This file contains Huffman entropy encoding routines for progressive JPEG.
22 /* Expanded entropy encoder object for progressive Huffman encoding. */
108 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
113 entropy->cinfo = cinfo;
114 entropy->gather_statistics = gather_statistics;
123 entropy->pub.encode_mcu = encode_mcu_DC_first;
125 entropy->pub.encode_mcu = encode_mcu_AC_first;
128 entropy->pub.encode_mcu = encode_mcu_DC_refine;
130 entropy->pub.encode_mcu = encode_mcu_AC_refine
379 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
466 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
573 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
620 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
748 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
769 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
816 phuff_entropy_ptr entropy; local
    [all...]
jdphuff.c 8 * This file contains Huffman entropy decoding routines for progressive JPEG.
26 * Expanded entropy decoder object for progressive Huffman decoding.
93 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
150 entropy->pub.decode_mcu = decode_mcu_DC_first;
152 entropy->pub.decode_mcu = decode_mcu_AC_first;
155 entropy->pub.decode_mcu = decode_mcu_DC_refine;
157 entropy->pub.decode_mcu = decode_mcu_AC_refine;
169 & entropy->derived_tbls[tbl]);
174 & entropy->derived_tbls[tbl])
229 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
287 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
358 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
443 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
492 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
643 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
659 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
688 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
702 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
724 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
744 phuff_entropy_ptr entropy; local
    [all...]
jdhuff.c 8 * This file contains Huffman entropy decoding routines.
26 * Expanded entropy decoder object for Huffman decoding.
89 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
108 & entropy->dc_derived_tbls[dctbl]);
110 & entropy->ac_derived_tbls[actbl]);
112 entropy->saved.last_dc_val[ci] = 0;
120 entropy->dc_cur_tbls[blkn] = entropy->dc_derived_tbls[compptr->dc_tbl_no];
121 entropy->ac_cur_tbls[blkn] = entropy->ac_derived_tbls[compptr->ac_tbl_no]
471 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
509 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
526 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
553 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
569 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
605 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
724 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
803 huff_entropy_ptr entropy; local
879 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
    [all...]
jchuff.c 8 * This file contains Huffman entropy encoding routines.
23 /* Expanded entropy encoder object for Huffman encoding.
108 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
114 entropy->pub.encode_mcu = encode_mcu_gather;
115 entropy->pub.finish_pass = finish_pass_gather;
120 entropy->pub.encode_mcu = encode_mcu_huff;
121 entropy->pub.finish_pass = finish_pass_huff;
138 if (entropy->dc_count_ptrs[dctbl] == NULL)
139 entropy->dc_count_ptrs[dctbl] = (long *
478 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
535 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
647 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
848 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
893 huff_entropy_ptr entropy; local
    [all...]
jdcoefct.c 10 * The coefficient buffer lies between entropy decoding and inverse-DCT steps.
41 * and let the entropy decoder write into that workspace each time.
172 /* Try to fetch an MCU. Entropy decoder expects buffer to be zeroed. */
174 (*cinfo->entropy->decode_mcu_discard_coef) (cinfo);
179 if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
272 /* Note: entropy decoder expects buffer to be zeroed,
290 * cinfo->entropy->index->MCU_sample_size * iMCU_width_To_MCU_width);
301 cinfo->entropy->index->scan[cinfo->input_scan_number];
303 (*cinfo->entropy->configure_huffman_decoder) (cinfo,
334 if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer))
    [all...]
jdapistd.c 242 (*cinfo->entropy->start_pass) (cinfo);
254 cinfo->entropy->index = index;
292 (*cinfo->entropy->configure_huffman_decoder) (cinfo, offset_data);
jcmaster.c 418 (*cinfo->entropy->start_pass) (cinfo, cinfo->optimize_coding);
437 (*cinfo->entropy->start_pass) (cinfo, TRUE);
456 (*cinfo->entropy->start_pass) (cinfo, FALSE);
507 /* The entropy coder always needs an end-of-pass call,
510 (*cinfo->entropy->finish_pass) (cinfo);
  /external/qemu/distrib/jpeg-6b/
jcphuff.c 8 * This file contains Huffman entropy encoding routines for progressive JPEG.
22 /* Expanded entropy encoder object for progressive Huffman encoding. */
108 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
113 entropy->cinfo = cinfo;
114 entropy->gather_statistics = gather_statistics;
123 entropy->pub.encode_mcu = encode_mcu_DC_first;
125 entropy->pub.encode_mcu = encode_mcu_AC_first;
128 entropy->pub.encode_mcu = encode_mcu_DC_refine;
130 entropy->pub.encode_mcu = encode_mcu_AC_refine
379 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
466 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
573 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
620 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
748 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
769 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
816 phuff_entropy_ptr entropy; local
    [all...]
jdphuff.c 8 * This file contains Huffman entropy decoding routines for progressive JPEG.
26 * Expanded entropy decoder object for progressive Huffman decoding.
97 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
154 entropy->pub.decode_mcu = decode_mcu_DC_first;
156 entropy->pub.decode_mcu = decode_mcu_AC_first;
159 entropy->pub.decode_mcu = decode_mcu_DC_refine;
161 entropy->pub.decode_mcu = decode_mcu_AC_refine;
173 & entropy->derived_tbls[tbl]);
178 & entropy->derived_tbls[tbl])
233 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
291 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
362 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
447 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
496 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
647 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
663 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
692 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
706 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
728 phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy; local
748 phuff_entropy_ptr entropy; local
    [all...]
jdhuff.c 8 * This file contains Huffman entropy decoding routines.
26 * Expanded entropy decoder object for Huffman decoding.
89 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
108 & entropy->dc_derived_tbls[dctbl]);
110 & entropy->ac_derived_tbls[actbl]);
112 entropy->saved.last_dc_val[ci] = 0;
120 entropy->dc_cur_tbls[blkn] = entropy->dc_derived_tbls[compptr->dc_tbl_no];
121 entropy->ac_cur_tbls[blkn] = entropy->ac_derived_tbls[compptr->ac_tbl_no]
471 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
509 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
526 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
553 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
569 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
605 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
724 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
803 huff_entropy_ptr entropy; local
879 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
    [all...]
jchuff.c 8 * This file contains Huffman entropy encoding routines.
23 /* Expanded entropy encoder object for Huffman encoding.
108 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
114 entropy->pub.encode_mcu = encode_mcu_gather;
115 entropy->pub.finish_pass = finish_pass_gather;
120 entropy->pub.encode_mcu = encode_mcu_huff;
121 entropy->pub.finish_pass = finish_pass_huff;
138 if (entropy->dc_count_ptrs[dctbl] == NULL)
139 entropy->dc_count_ptrs[dctbl] = (long *
478 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
535 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
647 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
848 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy; local
893 huff_entropy_ptr entropy; local
    [all...]
jdcoefct.c 10 * The coefficient buffer lies between entropy decoding and inverse-DCT steps.
41 * and let the entropy decoder write into that workspace each time.
172 /* Try to fetch an MCU. Entropy decoder expects buffer to be zeroed. */
174 (*cinfo->entropy->decode_mcu_discard_coef) (cinfo);
179 if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
272 /* Note: entropy decoder expects buffer to be zeroed,
290 * cinfo->entropy->index->MCU_sample_size * iMCU_width_To_MCU_width);
301 cinfo->entropy->index->scan[cinfo->input_scan_number];
303 (*cinfo->entropy->configure_huffman_decoder) (cinfo,
334 if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer))
    [all...]
jdapistd.c 242 (*cinfo->entropy->start_pass) (cinfo);
254 cinfo->entropy->index = index;
292 (*cinfo->entropy->configure_huffman_decoder) (cinfo, offset_data);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.device/
entropy.pass.cpp 14 // double entropy() const;
22 double e = r.entropy();
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/
EntropyComputeUtil.java 16 * Computes the entropy value ? (delta) for a given terrain block and
49 float entropy = 0; local
64 entropy = Math.max(delta, entropy);
72 return entropy;
  /ndk/sources/cxx-stl/llvm-libc++/src/
random.cpp 43 random_device::entropy() const _NOEXCEPT
  /external/openssl/crypto/rand/
md_rand.c 143 static double entropy=0; variable
189 entropy=0;
315 * much entropy as fits into md. */
320 if (entropy < ENTROPY_NEEDED) /* stop counting when we have enough */
321 entropy += add;
401 ok = (entropy >= ENTROPY_NEEDED);
406 * state; thus we have to decrease the entropy estimate.
408 * adjust the entropy count, though, because we're not ambitious
412 * we have enough entropy. Entropy should be collecte
    [all...]
rand.h 86 void (*add)(const void *buf, int num, double entropy);
105 void RAND_add(const void *buf,int num,double entropy);
rand_lib.c 153 void RAND_add(const void *buf, int num, double entropy)
157 meth->add(buf,num,entropy);
190 /* Entropy gatherer: use standard OpenSSL PRNG to seed (this will gather
191 * entropy internally through RAND_poll().
195 int entropy, size_t min_len, size_t max_len)
239 double entropy)
241 RAND_SSLeay()->add(in, inlen, entropy);
  /external/openssl/include/openssl/
rand.h 86 void (*add)(const void *buf, int num, double entropy);
105 void RAND_add(const void *buf,int num,double entropy);
  /external/wpa_supplicant_8/src/crypto/
random.c 8 * This random number generator is used to provide additional entropy to the
60 static unsigned int entropy = 0; variable
132 if (entropy > MIN_COLLECT_ENTROPY && (count & 0x3ff) != 0) {
134 * No need to add more entropy at this point, so save CPU and
139 wpa_printf(MSG_EXCESSIVE, "Add randomness: count=%u entropy=%u",
140 count, entropy);
149 entropy++;
160 wpa_printf(MSG_MSGDUMP, "Get randomness: len=%u entropy=%u",
161 (unsigned int) len, entropy);
168 /* Mix in additional entropy extracted from the internal pool *
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_pax_common.c 22 * @entropy: Exchanged entropy to seed the KDF (Z)
23 * @entropy_len: Length of the entropy in bytes
32 const u8 *entropy, size_t entropy_len,
51 addr[1] = entropy;
120 * @e: Entropy
eap_pax_common.h 81 const u8 *entropy, size_t entropy_len,
  /system/security/keystore/
keystore.cpp 335 class Entropy {
337 Entropy() : mRandom(-1) {}
338 ~Entropy() {
477 ResponseCode writeBlob(const char* filename, AES_KEY *aes_key, State state, Entropy* entropy) {
485 if (!entropy->generate_random_data(mBlob.vector, AES_BLOCK_SIZE)) {
663 ResponseCode initialize(const android::String8& pw, Entropy* entropy) {
664 if (!generateMasterKey(entropy)) {
667 ResponseCode response = writeMasterKey(pw, entropy);
2162 Entropy entropy; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse4.asm 159 ; in vp8_default_zig_zag1d order: see vp8/common/entropy.c
254 ; vp8/common/entropy.c: vp8_default_zig_zag1d

Completed in 1984 milliseconds

1 2 3