HomeSort by relevance Sort by last modified time
    Searched defs:temp_data (Results 1 - 8 of 8) sorted by null

  /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);
  /frameworks/base/libs/androidfw/tests/
ApkAssets_test.cpp 97 void* temp_data; local
101 overlay_path.c_str(), &temp_data, &idmap_len),
103 idmap_data.reset(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);
  /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/mesa3d/src/mesa/state_tracker/
st_texture.h 45 GLubyte *temp_data; /**< Temporary ETC texture storage. */ member in struct:st_texture_image_transfer
  /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...]
  /external/deqp/external/openglcts/modules/gl/
gl4cBufferStorageTests.cpp 2200 GLubyte temp_data[data_size]; local
2271 GLubyte temp_data[data_size]; local
    [all...]

Completed in 379 milliseconds