/external/chromium_org/media/audio/cras/ |
cras_input.h | 50 size_t frames, 62 void ReadAudio(size_t frames, uint8* buffer, const timespec* sample_ts);
|
/external/chromium_org/media/audio/ |
simple_sources.cc | 41 std::min(audio_bus->frames(), cap_ - time_state_) : audio_bus->frames();
|
/external/chromium_org/media/base/ |
sinc_resampler.h | 37 // Callback type for providing more data into the resampler. Expects |frames| 38 // of data to be rendered into |destination|; zero padded if not enough frames 40 typedef base::Callback<void(int frames, float* destination)> ReadCB; 45 // frames of the buffer requested by each |read_cb| call. The value must be 53 // Resample |frames| of data from |read_cb_| into |destination|. 54 void Resample(int frames, float* destination); 56 // The maximum size in frames that guarantees Resample() will only make a 110 // The number of source frames processed per pass.
|
/external/chromium_org/media/filters/ |
decrypting_audio_decoder.h | 28 // encrypted audio buffers and return decrypted and decompressed audio frames. 84 const Decryptor::AudioBuffers& frames); 93 // Sets timestamps for |frames| and then passes them to |output_cb_|. 94 void ProcessDecodedFrames(const Decryptor::AudioBuffers& frames);
|
wsola_internals.cc | 48 DCHECK_LE(frame_offset_a + num_frames, a->frames()); 49 DCHECK_LE(frame_offset_b + num_frames, b->frames()); 64 int num_blocks = input->frames() - (frames_per_block - 1); 115 int block_size = target_block->frames(); 116 int num_candidate_blocks = search_segment->frames() - (block_size - 1); 194 int block_size = target_block->frames(); 225 int target_size = target_block->frames(); 226 int num_candidate_blocks = search_block->frames() - (target_size - 1); 240 // Energy of all candid frames.
|
audio_file_reader_unittest.cc | 35 ASSERT_LE(actual_frames, decoded_audio_data->frames()); 44 base::TimeDelta duration, int frames, int trimmed_frames) { 51 EXPECT_EQ(frames, reader_->GetNumberOfFrames());
|
/external/chromium_org/net/websockets/ |
websocket_stream.h | 44 // WebSocket frames. This class provides an abstraction for WebSocket streams 116 // |frames| remains owned by the caller and must be valid until the 117 // operation completes or Close() is called. |frames| must be empty on 125 // frames->size() >= 1 if the result is OK. 127 // Only frames with complete header information are inserted into |frames|. If 155 virtual int ReadFrames(ScopedVector<WebSocketFrame>* frames, 160 // |frames| must be valid until the operation completes or Close() is called. 165 // This method will only return OK if all frames were written completely. 172 virtual int WriteFrames(ScopedVector<WebSocketFrame>* frames, [all...] |
/external/chromium_org/third_party/webrtc/common_audio/resampler/ |
sinc_resampler.h | 25 // Callback class for providing more data into the resampler. Expects |frames| 26 // of data to be rendered into |destination|; zero padded if not enough frames 31 virtual void Run(int frames, float* destination) = 0; 57 // frames of the buffer requested by each |read_cb| call. The value must be 65 // Resample |frames| of data from |read_cb_| into |destination|. 66 void Resample(int frames, float* destination); 68 // The maximum size in frames that guarantees Resample() will only make a 132 // The number of source frames processed per pass.
|
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
AnalyzerTest.java | 72 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info); local 73 assertNotNull(frames); 75 Frame frame = frames[pos]; 106 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info); local 107 assertNotNull(frames); 108 Frame frame = frames[pos]; 126 Frame[] frames = analyzer.analyze(clazz, info); local 127 assertNotNull(frames); 128 Frame frame = frames[pos]; 135 frame = frames[pos] 151 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2()); local [all...] |
/system/core/libbacktrace/ |
UnwindCurrent.cpp | 103 std::vector<backtrace_frame_data_t>* frames = GetFrames(); local 104 frames->reserve(MAX_BACKTRACE_FRAMES); 125 frames->resize(num_frames+1); 126 backtrace_frame_data_t* frame = &frames->at(num_frames); 134 backtrace_frame_data_t* prev = &frames->at(num_frames-1);
|
/external/chromium_org/net/quic/ |
quic_session.cc | 36 virtual void OnStreamFrames(const vector<QuicStreamFrame>& frames) OVERRIDE { 37 session_->OnStreamFrames(frames); 50 virtual void OnWindowUpdateFrames(const vector<QuicWindowUpdateFrame>& frames) 52 session_->OnWindowUpdateFrames(frames); 56 virtual void OnBlockedFrames(const vector<QuicBlockedFrame>& frames) 58 session_->OnBlockedFrames(frames); 146 void QuicSession::OnStreamFrames(const vector<QuicStreamFrame>& frames) { 147 for (size_t i = 0; i < frames.size(); ++i) { 149 const QuicStreamFrame& frame = frames[i]; 165 stream->OnStreamFrame(frames[i]) [all...] |
/bootable/recovery/minui/ |
resources.c | 234 int res_create_multi_display_surface(const char* name, int* frames, gr_surface** pSurface) { 244 *frames = -1; 249 *frames = 1; 254 if (text[i].key && strcmp(text[i].key, "Frames") == 0 && text[i].text) { 255 *frames = atoi(text[i].text); 259 printf(" found frames = %d\n", *frames); 262 if (height % *frames != 0) { 263 printf("bad height (%d) for frame count (%d)\n", height, *frames); 268 surface = malloc(*frames * sizeof(gr_surface)) [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
Analyzer.java | 66 private Frame[] frames;
field in class:Analyzer 102 frames = new Frame[0];
103 return frames;
108 frames = new Frame[n];
174 Frame f = frames[insn];
237 if (frames[call] != null) {
239 frames[call],
297 return frames;
378 return frames;
452 Frame oldFrame = frames[insn]; [all...] |
/external/chromium_org/media/audio/alsa/ |
alsa_input.cc | 175 snd_pcm_sframes_t frames = wrapper_->PcmAvailUpdate(device_handle_); local 176 if (frames < 0) { // Potentially recoverable error? 177 LOG(WARNING) << "PcmAvailUpdate(): " << wrapper_->StrError(frames); 178 Recover(frames); 181 if (frames < params_.frames_per_buffer()) { 199 int num_buffers = frames / params_.frames_per_buffer(); 214 audio_bus_->frames(), 219 LOG(WARNING) << "PcmReadi returning less than expected frames: "
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer_libbacktrace.cc | 87 AddressInfo *frames; member in struct:__sanitizer::__anon23444::SymbolizeCodeData 100 AddressInfo *info = &cdata->frames[cdata->n_frames++]; 118 AddressInfo *info = &cdata->frames[0]; 151 uptr LibbacktraceSymbolizer::SymbolizeCode(uptr addr, AddressInfo *frames, 156 data.frames = frames; 182 uptr LibbacktraceSymbolizer::SymbolizeCode(uptr addr, AddressInfo *frames,
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
HprofData.java | 181 StringBuilder frames = new StringBuilder(); local 183 frames.append('\n'); 185 frames.append("\t at "); 186 frames.append(stackFrame); 187 frames.append('\n'); 190 frames.append("<empty>"); 194 + ", frames=" + frames + "]";
|
/frameworks/wilhelm/tools/permute/ |
permute.c | 75 /** Split the specified range of frames, using the allowed budget of segments. 202 switch (sfinfo_in.frames) { 205 fprintf(stderr, "%s: unsupported frames %d\n", path_in, (int) sfinfo_in.frames); 212 double durationSeconds = (double) sfinfo_in.frames / (double) sfinfo_in.samplerate; 224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax); 241 void *ptr = malloc(sfinfo_in.frames * frameSizeRead); 244 count = sf_readf_short(sf_in, ptr, sfinfo_in.frames); 245 if (count != sfinfo_in.frames) { 246 fprintf(stderr, "%s: expected to read %d frames but actually read %d frames\n", path_in [all...] |
/external/chromium_org/content/renderer/media/ |
webaudio_capturer_source.cc | 103 int available = fifo_->max_frames() - fifo_->frames(); 123 while (fifo_->frames() >= capture_frames) { 126 capture_bus_->ToInterleaved(capture_bus_->frames(),
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebImageSkia.cpp | 62 // Frames are arranged by decreasing size, then decreasing bit depth. 77 break; // No more frames that are large enough. 110 // Frames are arranged by decreasing size, then decreasing bit depth. 115 Vector<WebImage> frames; local 128 frames.append(WebImage(image->bitmap())); 131 return frames;
|
/external/chromium_org/tools/tcmalloc/ |
print-live-objects.py | 36 "frames": matches.group(3).strip().split(" ")} 44 for frame in trace["frames"]: 62 frames = [] 63 for frame in trace["frames"]: 64 frames.append(table[frame]) 65 trace["frames"] = frames 85 for frame in trace["frames"]:
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Analyzer.java | 74 * Frame[] frames = analyzer.analyze(clazz, method); 75 * frames[0].getLocal(0).getCtClass(); // returns clazz; 76 * frames[0].getLocal(1).getCtClass(); // returns java.lang.String 77 * frames[1].peek(); // returns Type.INTEGER 78 * frames[27].peek().getCtClass(); // returns java.lang.Number 89 private Frame[] frames; field in class:Analyzer 139 frames = new Frame[codeLength]; 140 frames[iter.lookAhead()] = firstFrame(method, maxLocals, maxStack); 146 return frames; 173 Frame frame = frames[pos].copy() [all...] |
FramePrinter.java | 85 Frame[] frames; 87 frames = (new Analyzer()).analyze(method.getDeclaringClass(), info); 106 Frame frame = frames[pos];
|
/bionic/libc/kernel/uapi/linux/can/ |
bcm.h | 32 struct can_frame frames[0]; member in struct:bcm_msg_head
|
/cts/tests/tests/textureview/src/android/textureview/cts/ |
GLProducerThread.java | 59 int frames, int delayMs, Semaphore semaphore) { 61 mFrames = frames; 68 GLProducerThread(SurfaceTexture surfaceTexture, GLRenderer renderer, int frames, int delayMs, 70 this(surfaceTexture, renderer, null, frames, delayMs, semaphore);
|
/development/ndk/platforms/android-L/include/linux/can/ |
bcm.h | 32 struct can_frame frames[0]; member in struct:bcm_msg_head
|