/external/webrtc/webrtc/modules/utility/source/ |
audio_frame_operations.cc | 66 int16_t temp_data = frame->data_[i]; local 68 frame->data_[i + 1] = temp_data; 92 int32_t temp_data = 0; local 97 temp_data = static_cast<int32_t>(scale * frame.data_[i]); 98 if (temp_data < -32768) { 100 } else if (temp_data > 32767) { 103 frame.data_[i] = static_cast<int16_t>(temp_data);
|
/hardware/intel/common/libmix/videodecoder/ |
use_util_sse4.h | 82 __m128i temp_data = _mm_stream_load_si128(pWc_buff + end_position); local 84 char* psrc_buf = (char*)(&temp_data);
|
/bootable/recovery/applypatch/ |
imgpatch.cpp | 213 std::vector<unsigned char>& temp_data = expanded_source; local 228 strm.avail_out = temp_data.size(); 229 strm.next_out = temp_data.data(); 231 ssize_t have = temp_data.size() - strm.avail_out; 233 if (sink(temp_data.data(), have, token) != have) { 238 if (ctx) SHA1_Update(ctx, temp_data.data(), have);
|
/external/elfutils/libelf/ |
elf_getarsym.c | 108 void *temp_data = NULL; local 210 temp_data = malloc (sz); 211 if (unlikely (temp_data == NULL)) 216 file_data = temp_data; 253 temp_data = malloc (sz); 254 if (unlikely (temp_data == NULL)) 259 file_data = memcpy (temp_data, elf->map_address + off, sz); 315 free (temp_data);
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
merge.cc | 97 int16_t temp_data[kTempDataSize]; // TODO(hlundin) Remove this. local 98 int16_t* decoded_output = temp_data + best_correlation_index; 132 memmove(temp_data, expanded_channel, 145 memcpy(&(*output)[channel][0], temp_data, 146 sizeof(temp_data[0]) * output_length);
|
expand.cc | 72 int16_t temp_data[kTempDataSize]; // TODO(hlundin) Remove this. local 73 int16_t* voiced_vector_storage = temp_data; 229 mix_factor_increment, temp_data); 241 temp_data + temp_length, current_lag - temp_length); 260 WebRtcSpl_AffineTransformVector(temp_data, temp_data, 265 DspHelper::MuteSignal(temp_data, parameters.mute_slope, current_lag); 294 temp_data[i] = temp_data[i] + noise_vector[i]; 301 memcpy(&(*output)[channel_ix][0], temp_data, [all...] |
/device/htc/flounder/sensor_hub/libsensors/ |
CwMcuSensor.cpp | 768 int temp_data[COMPASS_CALIBRATION_DATA_SIZE]; local 829 rc = cw_read_calibrator_file(CW_MAGNETIC, fixed_sysfs_path, temp_data); 831 cw_save_calibrator_file(CW_MAGNETIC, SAVE_PATH_MAG, temp_data); [all...] |