OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:destinationLength
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBufferSourceNode.cpp
181
size_t
destinationLength
= bus->length();
183
bool isLengthGood =
destinationLength
<= 4096 && numberOfFrames <= 4096;
188
bool isOffsetGood = destinationFrameOffset <=
destinationLength
&& destinationFrameOffset + numberOfFrames <=
destinationLength
;
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioBus.cpp
571
int
destinationLength
= sourceLength / sampleRateRatio;
575
RefPtr<AudioBus> destinationBus = create(numberOfDestinationChannels,
destinationLength
);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp
343
static void normalizeCharacters(const TextRun& run, unsigned length, UChar* destination, unsigned*
destinationLength
)
355
*
destinationLength
= 0;
367
U16_APPEND(destination, *
destinationLength
, length, character, error);
[
all
...]
Completed in 210 milliseconds