Searched refs:temp_data (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/webrtc/modules/utility/source/ |
D | audio_frame_operations.cc | 66 int16_t temp_data = frame->data_[i]; in SwapStereoChannels() local 68 frame->data_[i + 1] = temp_data; in SwapStereoChannels() 92 int32_t temp_data = 0; in ScaleWithSat() local 97 temp_data = static_cast<int32_t>(scale * frame.data_[i]); in ScaleWithSat() 98 if (temp_data < -32768) { in ScaleWithSat() 100 } else if (temp_data > 32767) { in ScaleWithSat() 103 frame.data_[i] = static_cast<int16_t>(temp_data); in ScaleWithSat()
|
/external/elfutils/libelf/ |
D | elf_getarsym.c | 108 void *temp_data = NULL; in elf_getarsym() local 210 temp_data = malloc (sz); in elf_getarsym() 211 if (unlikely (temp_data == NULL)) in elf_getarsym() 216 file_data = temp_data; in elf_getarsym() 253 temp_data = malloc (sz); in elf_getarsym() 254 if (unlikely (temp_data == NULL)) in elf_getarsym() 259 file_data = memcpy (temp_data, elf->map_address + off, sz); in elf_getarsym() 315 free (temp_data); in elf_getarsym()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | expand.cc | 72 int16_t temp_data[kTempDataSize]; // TODO(hlundin) Remove this. in Process() local 73 int16_t* voiced_vector_storage = temp_data; in Process() 229 mix_factor_increment, temp_data); in Process() 241 temp_data + temp_length, current_lag - temp_length); in Process() 260 WebRtcSpl_AffineTransformVector(temp_data, temp_data, in Process() 265 DspHelper::MuteSignal(temp_data, parameters.mute_slope, current_lag); in Process() 294 temp_data[i] = temp_data[i] + noise_vector[i]; in Process() 301 memcpy(&(*output)[channel_ix][0], temp_data, in Process() 302 sizeof(temp_data[0]) * current_lag); in Process()
|
D | merge.cc | 97 int16_t temp_data[kTempDataSize]; // TODO(hlundin) Remove this. in Process() local 98 int16_t* decoded_output = temp_data + best_correlation_index; in Process() 132 memmove(temp_data, expanded_channel, in Process() 145 memcpy(&(*output)[channel][0], temp_data, in Process() 146 sizeof(temp_data[0]) * output_length); in Process()
|
/external/webrtc/webrtc/p2p/base/ |
D | stun.cc | 175 rtc::scoped_ptr<char[]> temp_data(new char[current_pos]); in ValidateMessageIntegrity() local 176 memcpy(temp_data.get(), data, current_pos); in ValidateMessageIntegrity() 190 rtc::SetBE16(temp_data.get() + 2, static_cast<uint16_t>(new_adjusted_len)); in ValidateMessageIntegrity() 196 temp_data.get(), mi_pos, in ValidateMessageIntegrity()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_texture.h | 45 GLubyte *temp_data; /**< Temporary ETC texture storage. */ member
|
D | st_cb_texture.c | 271 *mapOut = itransfer->temp_data = in st_MapTextureImage() 309 itransfer->temp_data, in st_UnmapTextureImage() 315 itransfer->temp_data, itransfer->temp_stride, in st_UnmapTextureImage() 321 itransfer->temp_data = NULL; in st_UnmapTextureImage()
|