/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
D | AudioBufferSourceNode.cpp | 210 …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()
|
D | AudioScheduledSourceNode.cpp | 77 …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/ |
D | AudioChannel.cpp | 73 …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()
|
D | AudioBus.cpp | 171 …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()
|
D | AudioChannel.h | 122 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
|
D | AudioBus.h | 107 …ioBus> createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | animatable_image.mm | 13 @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];
|
D | animatable_image.h | 39 @property(nonatomic) CGRect endFrame;
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
D | SpatialTrack.java | 97 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()
|
D | BoneTrack.java | 220 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/ |
D | animatable_image.mm | 19 @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];
|
D | animatable_image.h | 40 @property(nonatomic) CGRect endFrame;
|
/external/srec/portable/src/ |
D | pstream.c | 301 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/ |
D | CDPlayer.h | 47 int LoadFile (const FSRef *ref, int startFrame, int endFrame); /* pass -1 to do nothing */
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
D | find_bar_cocoa_controller.mm | 35 // 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/ |
D | find_bar_cocoa_controller.mm | 44 // 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/ |
D | pstream.h | 40 struct FileBufferFrame *endFrame; member
|
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
D | RenderDeviceJme.java | 139 public void endFrame() { in endFrame() method in RenderDeviceJme
|
/external/chromium_org/content/child/npapi/ |
D | webplugin_delegate_impl_mac.mm | 696 [renderer_ endFrame]; 705 [renderer_ endFrame];
|