Home | History | Annotate | Download | only in android

Lines Matching defs:memory

100 // Reads audio samples from a PCM file where the file is stored in memory at
127 // Read samples from file stored in memory (at construction) and copy
175 // Allocate new memory, copy |num_frames| samples from |source| into memory
176 // and add pointer to the memory location to end of the list.
184 int16_t* memory = new int16_t[frames_per_buffer_];
185 memcpy(static_cast<int16_t*> (&memory[0]),
189 fifo_->push_back(memory);
199 // data into |destination| and delete the utilized memory allocation.
208 int16_t* memory = fifo_->front();
211 static_cast<int16_t*> (&memory[0]),
213 delete memory;