OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endFrame
(Results
1 - 17
of
17
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioChannel.cpp
73
void AudioChannel::copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned
endFrame
)
76
bool isRangeSafe = sourceChannel && startFrame <
endFrame
&&
endFrame
<= sourceChannel->length();
85
size_t rangeLength =
endFrame
- startFrame;
AudioChannel.h
122
void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned
endFrame
);
AudioBus.h
107
static PassRefPtr<AudioBus> createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned
endFrame
);
AudioBus.cpp
171
PassRefPtr<AudioBus> AudioBus::createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned
endFrame
)
177
bool isRangeSafe = startFrame <
endFrame
&&
endFrame
<= numberOfSourceFrames;
182
size_t rangeLength =
endFrame
- startFrame;
188
audioBus->channel(i)->copyFromRange(sourceBuffer->channel(i), startFrame,
endFrame
);
/external/chromium/chrome/browser/ui/cocoa/
animatable_image.h
40
@property(nonatomic) CGRect
endFrame
;
48
// and |
endFrame
| properties of the animation.
/external/chromium_org/chrome/browser/ui/cocoa/
animatable_image.h
39
@property(nonatomic) CGRect
endFrame
;
47
// and |
endFrame
| properties of the animation.
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
CDPlayer.h
47
int LoadFile (const FSRef *ref, int startFrame, int
endFrame
); /* pass -1 to do nothing */
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioScheduledSourceNode.cpp
73
//
endFrame
: End frame for this source.
77
size_t
endFrame
= m_endTime == UnknownTime ? 0 : AudioUtilities::timeToSampleFrame(m_endTime, sampleRate);
80
if (m_endTime != UnknownTime &&
endFrame
<= quantumStartFrame)
117
if (m_endTime != UnknownTime &&
endFrame
>= quantumStartFrame &&
endFrame
< quantumEndFrame) {
118
size_t zeroStartFrame =
endFrame
- quantumStartFrame;
AudioBufferSourceNode.cpp
210
unsigned
endFrame
= m_isGrain ? AudioUtilities::timeToSampleFrame(m_grainOffset + m_grainDuration, bufferSampleRate) : bufferLength;
216
endFrame
+= 512;
219
if (
endFrame
> bufferLength)
220
endFrame
= bufferLength;
221
if (m_virtualReadIndex >=
endFrame
)
226
double virtualEndFrame =
endFrame
;
227
double virtualDeltaFrames =
endFrame
;
261
endFrame
= static_cast<unsigned>(virtualEndFrame);
263
int framesToEnd =
endFrame
- readIndex;
275
if (readIndex >=
endFrame
) {
[
all
...]
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java
220
int
endFrame
= 1;
225
endFrame
= i + 1;
229
/ (times[
endFrame
] - times[startFrame]);
236
rotations.get(
endFrame
, tempQ2);
237
translations.get(
endFrame
, tempV2);
239
scales.get(
endFrame
, tempS2);
SpatialTrack.java
97
int
endFrame
= 1;
101
endFrame
= i + 1;
104
float blend = (time - times[startFrame]) / (times[
endFrame
] - times[startFrame]);
114
rotations.get(
endFrame
, tempQ2);
116
translations.get(
endFrame
, tempV2);
118
scales.get(
endFrame
, tempS2);
/external/srec/portable/src/
pstream.c
301
PortFile->
endFrame
= PortFile->curFrame = PortFile->startFrame;
411
if (curFrame == PortFile->
endFrame
) /* last frame */
477
PortFile->
endFrame
= nextFrame;
499
if (curFrame == PortFile->
endFrame
&& PortFile->endPos < PortFile->curPos)
526
PortFile->curFrame = PortFile->
endFrame
;
556
if (curFrame == PortFile->
endFrame
) /* last frame */
734
pCurRec->end = PortFile->size - PortFile->
endFrame
->size +
735
(PortFile->endPos - PortFile->
endFrame
->buffer);
/external/srec/portable/include/
pstream.h
40
struct FileBufferFrame *
endFrame
;
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java
139
public void
endFrame
() {
/prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar
/external/robolectric/lib/test/
mockito-core-1.8.5.jar
/external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar
Completed in 344 milliseconds