/external/chromium_org/ui/views/controls/ |
throbber.cc | 57 void Throbber::SetFrames(const gfx::ImageSkia* frames) { 58 frames_ = frames;
|
/external/libopus/src/ |
opus_private.h | 39 const unsigned char *frames[48]; member in struct:OpusRepacketizer 121 const unsigned char *frames[48], opus_int16 size[48],
|
/frameworks/av/media/libstagefright/webm/ |
WebmFrameThread.h | 90 List<const sp<WebmFrame> >& frames, 94 void flushFrames(List<const sp<WebmFrame> >& frames, bool last);
|
/external/chromium_org/third_party/opus/src/tests/ |
test_opus_api.c | 691 frames[0]=(unsigned char *)0; \ 692 frames[1]=(unsigned char *)0; \ 695 VG_UNDEF(frames,sizeof(frames));\ 699 frames[0]=(unsigned char *)0; \ 700 frames[1]=(unsigned char *)0; \ 715 const unsigned char *frames[48]; local 722 if(opus_packet_parse(packet,1,&toc,frames,0,&payload_offset)!=OPUS_BAD_ARG)test_failed(); 729 ret=opus_packet_parse(packet,4,&toc,frames,size,&payload_offset); 733 if(frames[0]!=packet+1)test_failed() [all...] |
/external/libopus/tests/ |
test_opus_api.c | 691 frames[0]=(unsigned char *)0; \ 692 frames[1]=(unsigned char *)0; \ 695 VG_UNDEF(frames,sizeof(frames));\ 699 frames[0]=(unsigned char *)0; \ 700 frames[1]=(unsigned char *)0; \ 715 const unsigned char *frames[48]; local 722 if(opus_packet_parse(packet,1,&toc,frames,0,&payload_offset)!=OPUS_BAD_ARG)test_failed(); 729 ret=opus_packet_parse(packet,4,&toc,frames,size,&payload_offset); 733 if(frames[0]!=packet+1)test_failed() [all...] |
/external/chromium_org/net/quic/test_tools/ |
quic_test_utils.cc | 69 const QuicFrames& frames) { 72 for (size_t i = 0; i < frames.size(); ++i) { 75 bool last_frame = i == frames.size() - 1; 77 frames[i], max_plaintext_size - packet_size, first_frame, last_frame, 83 return framer->BuildDataPacket(header, frames, packet_size); 455 QuicFrames frames; local 456 frames.push_back(frame); 459 BuildUnsizedDataPacket(&framer, header, frames).packet); 534 QuicFrames frames; local 535 frames.push_back(frame) [all...] |
/bootable/recovery/minui/ |
minui.h | 98 // should have a 'Frames' text chunk whose value is the number of 99 // frames this image represents. The pixel data itself is interlaced 102 int* frames, gr_surface** pSurface);
|
/bootable/recovery/ |
screen_ui.h | 121 void LoadBitmapArray(const char* filename, int* frames, gr_surface** surface);
|
/external/chromium_org/chrome/test/chromedriver/ |
session.h | 66 std::list<FrameInfo> frames; member in struct:Session
|
/external/chromium_org/media/audio/ |
audio_power_monitor.cc | 34 DCHECK_LE(num_frames, buffer.frames());
|
/external/chromium_org/media/base/ |
audio_converter.h | 54 // frames are available to satisfy the request. The return value is the 68 // for 10 frames of data (indicated by the size of AudioBus provided) and the 89 // The maximum size in frames that guarantees we will only make a single call 105 void CreateUnmixedAudioIfNecessary(int frames);
|
test_helpers.h | 88 // Create an AudioBuffer containing |frames| frames of data, where each sample 93 // |start| + |channel| * |frames| * |increment| + index * |increment| 101 // start + frames * increment 102 // start + (frames + 1) * increment 103 // start + (frames + 2) * increment, ... 113 size_t frames,
|
audio_splicer.cc | 22 // in the source content. Unit is frames. 174 // Overlapping buffers marked as splice frames are handled by AudioSplicer, 303 // may not actually have a splice. Here we check if any frames exist before 377 // Determine crossfade frame count based on available frames in each splicer 386 // There must always be frames to crossfade, otherwise the splice should not 412 // Adjust the number of frames remaining before the splice. NOTE: This is 423 output_bus->frames() - frames_read); 445 DCHECK_EQ(output_bus->frames(), frames_read); 467 frames_read < output_bus->frames()) { 471 std::min(postroll->frame_count(), output_bus->frames() - frames_read) [all...] |
/external/chromium_org/media/filters/ |
audio_renderer_algorithm.h | 46 // Tries to fill |requested_frames| frames into |dest| with possibly scaled 52 // Returns the number of frames copied into |dest|. May request more reads via 73 // Returns the capacity of |audio_buffer_| in frames. 79 // Returns the number of frames left in |audio_buffer_|, which may be larger 82 int frames_buffered() { return audio_buffer_.frames(); } 94 // |target_block_| can be extracted from the available frames. 97 // Read a maximum of |requested_frames| frames from |wsola_output_|. Returns 98 // number of frames actually read. 102 // Fill |dest| with frames from |audio_buffer_| starting from frame 106 // for negative indices. This might happen for few first frames. This metho [all...] |
/external/chromium_org/third_party/webrtc/tools/frame_analyzer/ |
video_quality_analysis.h | 35 std::vector<AnalysisResult> frames; member in struct:webrtc::test::ResultsContainer 41 // comprises the frames that were captured during the quality measurement test. 42 // There may be missing or duplicate frames. Also the frames start at a random 45 // actual frames in the test file and their position in the reference video, so 46 // that the analysis could run with the right frames from both videos. The stats 59 // frames are exactly the same) will be 48. In the case of SSIM the max return 66 // numbers compatible format to stdout. If the results object contains no frames 74 // Calculates max repeated and skipped frames and prints them to stdout in a
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer.h | 89 // Fills at most "max_frames" elements of "frames" with descriptions 92 virtual uptr SymbolizePC(uptr address, AddressInfo *frames, uptr max_frames) {
|
/external/lldb/examples/python/ |
stacks.py | 11 description='''This command will enumerate all stack frames, print the stack size for each, and print an aggregation of which functions have the largest stack frame sizes at the end.''' 23 for frame in thread.frames:
|
/external/tinyalsa/ |
tinycap.c | 80 unsigned int frames; local 167 frames = capture_sample(file, card, device, header.num_channels, 170 printf("Captured %d frames\n", frames); 173 header.data_sz = frames * header.block_align;
|
/external/valgrind/main/gdbserver_tests/ |
mssnapshot.stderrB.exp | 15 v.set merge-recursive-frames <num> : merge recursive calls in max <num> frames
|
/frameworks/av/media/libnbaio/ |
LibsndfileSource.cpp | 29 mEstimatedFramesUntilEOF(sfinfo.frames), 55 // Detect EOF by zero frames read, not by mFramesUntilEOF as it could be inaccurate 62 // We didn't read any frames during the current loop cycle, so disable
|
/frameworks/base/cmds/bootanimation/ |
BootAnimation.h | 73 SortedVector<Frame> frames; member in struct:android::BootAnimation::Animation::Part
|
/hardware/qcom/audio/legacy/libalsa-intf/ |
alsa_pcm.c | 472 long frames) 482 frames = frames * channels *2 ; 484 while (frames-- > 0) { 493 long frames) 506 frames = frames * channels *2 ; 508 while (frames-- > 0) { 528 long frames; local 532 frames = (pcm->flags & PCM_MONO) ? (count / 2) : (count / 4) [all...] |
/system/media/audio_utils/ |
resampler.c | 37 size_t frames_in; // number of frames in input buffer 38 size_t frames_rq; // cached number of output frames 39 size_t frames_needed; // minimum number of input frames to produce 40 // frames_rq output frames 71 // outputs a number of frames less or equal to *outFrameCount and updates *outFrameCount 72 // with the actual number of frames produced. 88 // update and cache the number of frames needed at the input sampling rate to produce 89 // the number of frames requested at the output sampling rate 99 // make sure that the number of frames present in rsmp->in_buf (rsmp->frames_in) is at 100 // least the number of frames needed to produce the number of frames requested a 239 int frames = speex_resampler_get_input_latency(rsmp->speex_resampler); local [all...] |
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/ |
plasma.c | 284 FrameStats frames[ MAX_FRAME_STATS ]; member in struct:__anon1636 317 minRender = maxRender = avgRender = s->frames[nn].renderTime; 318 minFrame = maxFrame = avgFrame = s->frames[nn].frameTime; 323 double render = s->frames[nn].renderTime; 326 double frame = s->frames[nn].frameTime; 349 s->frames[nn].renderTime = renderTime; 350 s->frames[nn].frameTime = frameTime;
|
/development/ndk/platforms/android-9/samples/native-plasma/jni/ |
plasma.c | 293 FrameStats frames[ MAX_FRAME_STATS ]; member in struct:__anon1834 326 minRender = maxRender = avgRender = s->frames[nn].renderTime; 327 minFrame = maxFrame = avgFrame = s->frames[nn].frameTime; 332 double render = s->frames[nn].renderTime; 335 double frame = s->frames[nn].frameTime; 358 s->frames[nn].renderTime = renderTime; 359 s->frames[nn].frameTime = frameTime;
|