Home
last modified time | relevance | path

Searched refs:endFrame (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DAudioBufferSourceNode.cpp210 …unsigned endFrame = m_isGrain ? AudioUtilities::timeToSampleFrame(m_grainOffset + m_grainDuration,… in renderFromBuffer() local
216 endFrame += 512; in renderFromBuffer()
219 if (endFrame > bufferLength) in renderFromBuffer()
220 endFrame = bufferLength; in renderFromBuffer()
221 if (m_virtualReadIndex >= endFrame) in renderFromBuffer()
226 double virtualEndFrame = endFrame; in renderFromBuffer()
227 double virtualDeltaFrames = endFrame; in renderFromBuffer()
261 endFrame = static_cast<unsigned>(virtualEndFrame); in renderFromBuffer()
263 int framesToEnd = endFrame - readIndex; in renderFromBuffer()
275 if (readIndex >= endFrame) { in renderFromBuffer()
DAudioScheduledSourceNode.cpp77 …size_t endFrame = m_endTime == UnknownTime ? 0 : AudioUtilities::timeToSampleFrame(m_endTime, samp… in updateSchedulingInfo() local
80 if (m_endTime != UnknownTime && endFrame <= quantumStartFrame) in updateSchedulingInfo()
117 if (m_endTime != UnknownTime && endFrame >= quantumStartFrame && endFrame < quantumEndFrame) { in updateSchedulingInfo()
118 size_t zeroStartFrame = endFrame - quantumStartFrame; in updateSchedulingInfo()
/external/chromium_org/third_party/WebKit/Source/platform/audio/
DAudioChannel.cpp73 …ioChannel::copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame) in copyFromRange() argument
76 … bool isRangeSafe = sourceChannel && startFrame < endFrame && endFrame <= sourceChannel->length(); in copyFromRange()
85 size_t rangeLength = endFrame - startFrame; in copyFromRange()
DAudioBus.cpp171 …dioBus::createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame) in createBufferFromRange() argument
177 bool isRangeSafe = startFrame < endFrame && endFrame <= numberOfSourceFrames; in createBufferFromRange()
182 size_t rangeLength = endFrame - startFrame; in createBufferFromRange()
188 audioBus->channel(i)->copyFromRange(sourceBuffer->channel(i), startFrame, endFrame); in createBufferFromRange()
DAudioChannel.h122 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
DAudioBus.h107 …ioBus> createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame);
/external/chromium_org/chrome/browser/ui/cocoa/
Danimatable_image.mm13 @synthesize endFrame = endFrame_;
62 if (CGRectGetWidth([self startFrame]) != CGRectGetWidth([self endFrame]) ||
63 CGRectGetHeight([self startFrame]) != CGRectGetHeight([self endFrame])) {
70 CGRectGetWidth([self endFrame]),
71 CGRectGetHeight([self endFrame]));
84 [NSValue valueWithPoint:NSPointFromCGPoint([self endFrame].origin)]];
109 [layer setPosition:[self endFrame].origin];
Danimatable_image.h39 @property(nonatomic) CGRect endFrame;
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DSpatialTrack.java97 int endFrame = 1; in setTime() local
101 endFrame = i + 1; in setTime()
104 float blend = (time - times[startFrame]) / (times[endFrame] - times[startFrame]); in setTime()
114 rotations.get(endFrame, tempQ2); in setTime()
116 translations.get(endFrame, tempV2); in setTime()
118 scales.get(endFrame, tempS2); in setTime()
DBoneTrack.java220 int endFrame = 1; in setTime() local
225 endFrame = i + 1; in setTime()
229 / (times[endFrame] - times[startFrame]); in setTime()
236 rotations.get(endFrame, tempQ2); in setTime()
237 translations.get(endFrame, tempV2); in setTime()
239 scales.get(endFrame, tempS2); in setTime()
/external/chromium/chrome/browser/ui/cocoa/
Danimatable_image.mm19 @synthesize endFrame = endFrame_;
68 if (CGRectGetWidth([self startFrame]) != CGRectGetWidth([self endFrame]) ||
69 CGRectGetHeight([self startFrame]) != CGRectGetHeight([self endFrame])) {
76 CGRectGetWidth([self endFrame]),
77 CGRectGetHeight([self endFrame]));
90 [NSValue valueWithPoint:NSPointFromCGPoint([self endFrame].origin)]];
115 [layer setPosition:[self endFrame].origin];
Danimatable_image.h40 @property(nonatomic) CGRect endFrame;
/external/srec/portable/src/
Dpstream.c301 PortFile->endFrame = PortFile->curFrame = PortFile->startFrame; in PortFopen()
411 if (curFrame == PortFile->endFrame) /* last frame */ in PortFread()
477 PortFile->endFrame = nextFrame; in PortFwrite()
499 if (curFrame == PortFile->endFrame && PortFile->endPos < PortFile->curPos) in PortFwrite()
526 PortFile->curFrame = PortFile->endFrame; in PortFseek()
556 if (curFrame == PortFile->endFrame) /* last frame */ in PortFseek()
734 pCurRec->end = PortFile->size - PortFile->endFrame->size + in PortFflush()
735 (PortFile->endPos - PortFile->endFrame->buffer); in PortFflush()
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
DCDPlayer.h47 int LoadFile (const FSRef *ref, int startFrame, int endFrame); /* pass -1 to do nothing */
/external/chromium/chrome/browser/ui/cocoa/find_bar/
Dfind_bar_cocoa_controller.mm35 // Animates the given |view| to the given |endFrame| within |duration| seconds.
38 toFrame:(NSRect)endFrame
42 - (void)setFindBarFrame:(NSRect)endFrame
406 toFrame:(NSRect)endFrame
410 [NSValue valueWithRect:endFrame], NSViewAnimationEndFrameKey, nil];
422 - (void)setFindBarFrame:(NSRect)endFrame
432 [findBarView_ setFrame:endFrame];
446 toFrame:endFrame
/external/chromium_org/chrome/browser/ui/cocoa/find_bar/
Dfind_bar_cocoa_controller.mm44 // Animates the given |view| to the given |endFrame| within |duration| seconds.
47 toFrame:(NSRect)endFrame
51 - (void)setFindBarFrame:(NSRect)endFrame
482 toFrame:(NSRect)endFrame
486 [NSValue valueWithRect:endFrame], NSViewAnimationEndFrameKey, nil];
498 - (void)setFindBarFrame:(NSRect)endFrame
508 [findBarView_ setFrame:endFrame];
526 toFrame:endFrame
/external/srec/portable/include/
Dpstream.h40 struct FileBufferFrame *endFrame; member
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DRenderDeviceJme.java139 public void endFrame() { in endFrame() method in RenderDeviceJme
/external/chromium_org/content/child/npapi/
Dwebplugin_delegate_impl_mac.mm696 [renderer_ endFrame];
705 [renderer_ endFrame];