/hardware/bsp/intel/peripheral/libmraa/src/aio/ |
aio.c | 35 static int raw_bits; variable 124 raw_bits = mraa_adc_raw_bits(); 167 if (dev->value_bit != raw_bits) { 169 if (raw_bits > dev->value_bit) { 170 shifter_value = raw_bits - dev->value_bit; 173 shifter_value = dev->value_bit - raw_bits;
|
/external/flac/libFLAC/ |
format.c | 558 object->raw_bits = 0; 568 if(0 != object->raw_bits) 569 free(object->raw_bits); 577 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits)); 582 if(0 == (object->raw_bits = safe_realloc_(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order)))) 584 memset(object->raw_bits, 0, sizeof(unsigned)*(1 << max_partition_order));
|
stream_encoder_framing.c | 44 static FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned partition_order, const FLAC__bool is_extended); 400 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits, 446 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits, 493 FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned partition_order, const FLAC__bool is_extended) 501 if(raw_bits[0] == 0) { 511 if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[0], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN)) 514 if(!FLAC__bitwriter_write_raw_int32(bw, residual[i], raw_bits[0])) 529 if(raw_bits[i] == 0) { 538 if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[i], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN)) 541 if(!FLAC__bitwriter_write_raw_int32(bw, residual[j], raw_bits[i]) [all...] |
stream_encoder.c | 4144 unsigned *parameters, *raw_bits; local [all...] |
stream_decoder.c | [all...] |
/external/flac/include/FLAC/ |
format.h | 219 unsigned *raw_bits; member in struct:__anon12625 225 /**< The capacity of the \a parameters and \a raw_bits arrays [all...] |