HomeSort by relevance Sort by last modified time
    Searched defs:frames (Results 101 - 125 of 299) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/opus/src/tests/
test_opus_api.c 671 frames[0]=(unsigned char *)0; \
672 frames[1]=(unsigned char *)0; \
675 VG_UNDEF(frames,sizeof(frames));\
679 frames[0]=(unsigned char *)0; \
680 frames[1]=(unsigned char *)0; \
695 const unsigned char *frames[48]; local
702 if(opus_packet_parse(packet,1,&toc,frames,0,&payload_offset)!=OPUS_BAD_ARG)test_failed();
708 ret=opus_packet_parse(packet,4,&toc,frames,size,&payload_offset);
712 if(frames[0]!=packet+1)test_failed()
    [all...]
test_opus_encode.c 337 const unsigned char *frames[48]; local
365 if(opus_packet_parse(packet,len,&toc,frames,size,&payload_offset)<=0)test_failed();
367 for(j=(frames[0]-packet);j<len;j++)for(jj=0;jj<8;jj++)packet[j]^=((!no_fuzz)&&((fast_rand()&1023)==0))<<jj;
394 fprintf(stdout," All framesize pairs switching encode, %d frames OK.\n",count);
  /external/chromium_org/v8/src/
platform-solaris.cc 206 Vector<OS::StackFrame>& frames; member in struct:v8::internal::StackWalker
217 walker->frames[i].address = reinterpret_cast<void*>(pc);
220 walker->frames[i].text[OS::kStackWalkMaxTextLen - 1] = '\0';
222 Vector<char> text = MutableCStrVector(walker->frames[i].text,
243 int OS::StackWalk(Vector<OS::StackFrame> frames) {
245 struct StackWalker walker = { frames, 0 };
  /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...]
  /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...]
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestRenderToMemory.java 94 private int frames; field in class:TestRenderToMemory.ImageDisplay
115 frames ++;
119 fps = frames;
121 frames = 0;
  /external/libvorbis/lib/
codec_internal.h 153 long frames; member in struct:__anon22889
res0.c 55 long frames; member in struct:__anon22898
115 (float)look->phrasebits/look->frames,
116 (float)look->postbits/look->frames,
117 (float)(look->postbits+look->phrasebits)/look->frames);*/
124 "%ld frames encoded in %ld phrasebits and %ld residue bits "
125 "(%g/frame) \n",look->frames,look->phrasebits,
127 (look->phrasebits+look->resbitsflat)/(float)look->frames);
472 look->frames++;
530 look->frames++;
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 199 static vector <vector <sp<GraphicBuffer> > > frames; variable
396 // Regenerate a new set of test frames when this pass is
413 list = hwcTestCreateLayerList(testRandMod(frames.size()) + 1);
419 // Prandomly select a subset of frames to be used by this pass.
421 selectedFrames = vectorRandSelect(frames, list->numHwLayers);
542 * Initialize Frames
545 * named frames. The graphic buffers are contained within a vector of
562 frames.clear();
563 frames.resize(rows);
566 // All frames within a row have to have the same format an
    [all...]
  /frameworks/wilhelm/tests/sandbox/
playbq.c 220 fprintf(stderr, " -f# frames per buffer (default 512)\n");
430 sf_count_t frames = framesPerBuffer; local
432 count = sf_readf_short(sndfile, buffer, frames);
playbq.cpp 220 fprintf(stderr, " -f# frames per buffer (default 512)\n");
430 sf_count_t frames = framesPerBuffer; local
432 count = sf_readf_short(sndfile, buffer, frames);
  /hardware/qcom/audio/legacy/libalsa-intf/
aplay.c 173 long frames; local
281 frames = (pcm->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4);
325 fprintf(stderr, "Aplay:avail = %d frames = %d\n",avail, frames);
341 frames = (pcm->flags & PCM_MONO) ? (remainingData / 2) : (remainingData / 4);
361 pcm->sync_ptr->c.control.appl_ptr += frames;
410 offset += frames;
arec.c 185 long frames; local
269 frames = bufsize / 2;
271 frames = bufsize / 8;
273 frames = bufsize / 12;
275 frames = bufsize / 4;
277 x.frames = frames;
300 fprintf(stderr, "Arec:avail 1 = %d frames = %ld\n",avail, frames);
307 if (x.frames > avail
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
Vp8EncoderTest.java 38 * frames are at least decodable.
216 * @param frameRate Frame rate of input file in frames per second
327 * Request Sync Frames
332 * This presumes a file with 28 frames. Under normal circumstances there
343 * @param frameRate Frame rate of input file in frames per second
466 * @param frameRate Frame rate of input file in frames per second
575 // 29 frames per run
578 int frames = 29; local
579 for(i = 0; i < frames; i++)
581 int midBitrateAvg = sum / frames;
    [all...]
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 284 FrameStats frames[ MAX_FRAME_STATS ]; member in struct:__anon1343
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:__anon1539
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;
  /external/chromium_org/chrome/test/perf/rendering/
throughput_tests.cc 364 TraceEventVector* frames = NULL; local
366 frames = &events_gpu;
369 frames = &events_sw;
372 ASSERT_GT(frames->size(), 20u);
374 TraceEventVector rate_events(frames->begin() + kIgnoreSomeFrames,
375 frames->end() - kIgnoreSomeFrames);
529 // Failing with insufficient frames: crbug.com/127595
  /external/chromium_org/net/quic/
quic_framer_test.cc 2388 QuicFrames frames; local
2434 QuicFrames frames; local
2479 QuicFrames frames; local
2524 QuicFrames frames; local
2575 QuicFrames frames; local
2628 QuicFrames frames; local
2715 QuicFrames frames; local
2775 QuicFrames frames; local
2834 QuicFrames frames; local
2897 QuicFrames frames; local
2943 QuicFrames frames; local
2993 QuicFrames frames; local
3026 QuicFrames frames; local
3097 QuicFrames frames; local
3328 QuicFrames frames; local
3384 QuicFrames frames; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 69 Vector<RefPtr<Frame> > frames; local
71 // Get all the frames of all the pages in all the page groups
75 frames.append(frame);
80 for (unsigned i = 0; i < frames.size(); i++)
81 frames[i]->document()->dispatchWindowEvent(Event::create(eventName, false, false));
622 // Objects inside sub-frames are not considered to be relevant.
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.cc 110 snd_pcm_sframes_t frames; local
115 frames = symbol_table()->snd_pcm_avail_update()(handle_);
116 if (frames < 0) {
117 LOG(LS_ERROR) << "snd_pcm_avail_update(): " << GetError(frames);
118 Recover(frames);
120 } else if (frames > 0) {
122 return frames;
138 frames = symbol_table()->snd_pcm_avail_update()(handle_);
139 if (frames < 0) {
140 LOG(LS_ERROR) << "snd_pcm_avail_update(): " << GetError(frames);
390 snd_pcm_uframes_t frames = size \/ stream_.frame_size(); local
401 LOG(LS_ERROR) << "Stream wrote only " << written << " of " << frames local
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.c 375 const uint32_t frames = (marker & 0x7) + 1; local
377 const size_t index_sz = 2 + mag * frames;
384 for (i = 0; i < frames; i++) {
392 *count = frames;
416 const uint32_t frames = (marker & 0x7) + 1; local
418 const uint32_t index_sz = 2 + mag * frames;
  /external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h 50 size_t EOSD; /* num of frames of speech before EOSS (frames) */
51 size_t EOSS; /* frame where end of speech signal occurred (frames) */
52 size_t BOSS; /* frame where start of speech signal occurred (frames) */
100 #define DEFAULT_WAVEFORM_WINDBACK_FRAMES 50 /* will convert frames to bytes, will not grow */
213 * Total number of frames pushed by SR_RecognizerPutAudio().
215 size_t frames; member in struct:SR_RecognizerImpl_t
217 * Number of processed frames.
221 * The number of frames up until the windback point (where -pau- starts).
253 * Max number of frames to process before BOS timeou
    [all...]
  /external/tinyalsa/
pcm.c 234 unsigned int pcm_frames_to_bytes(struct pcm *pcm, unsigned int frames)
236 return frames * pcm->config.channels *
312 unsigned int frames)
314 int size_bytes = pcm_frames_to_bytes(pcm, frames);
335 unsigned int pcm_offset, frames, count = 0; local
338 frames = size;
339 pcm_mmap_begin(pcm, &pcm_areas, &pcm_offset, &frames);
340 pcm_areas_copy(pcm, pcm_offset, buf, offset, frames);
341 commit = pcm_mmap_commit(pcm, pcm_offset, frames);
343 oops(pcm, commit, "failed to commit %d frames\n", frames)
357 int frames; local
942 int err = 0, frames, avail; local
    [all...]
  /hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp 49 // 3 * 5ms = 15ms < 1024 frames * 1000 / 48000 = 21.333ms
58 unsigned int period_size; // size of the audio pipe is period_size * period_count in frames
94 // how many frames have been requested to be read
235 const size_t frames = bytes / frame_size; local
248 usleep(frames * 1000000 / out_get_sample_rate(&stream->common));
260 written_frames = sink->write(buffer, frames);
275 written_frames = sink->write(buffer, frames);
438 //ALOGV(" in_read (att=%d) got %ld frames, remaining=%u",
472 // read_counter_frames contains the number of frames that have been read since the beginning
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUsbALSA.cpp 383 long frames; local
432 frames = (musbRecordingHandle->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4);
433 x.frames = (musbRecordingHandle->flags & PCM_MONO) ? (bufsize / 2) : (bufsize / 4);
492 if (x.frames > avail)
493 frames = avail;
537 musbRecordingHandle->sync_ptr->c.control.appl_ptr += frames;
549 mproxyRecordingHandle->sync_ptr->c.control.appl_ptr += frames;
772 long frames; local
839 frames = (mproxyPlaybackHandle->flags & PCM_MONO) ? (proxyPeriod / 2) : (proxyPeriod / 4);
840 x.frames = (mproxyPlaybackHandle->flags & PCM_MONO) ? (proxyPeriod / 2) : (proxyPeriod / 4)
    [all...]

Completed in 1264 milliseconds

1 2 3 45 6 7 8 91011>>