Searched defs:sourceChannel (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.cpp59 void AudioChannel::copyFrom(const AudioChannel* sourceChannel) argument
61 bool isSafe = (sourceChannel && sourceChannel->length() >= length());
66 if (sourceChannel->isSilent()) {
70 memcpy(mutableData(), sourceChannel->data(), sizeof(float) * length());
73 void AudioChannel::copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame) argument
75 // Check that range is safe for reading from sourceChannel.
76 bool isRangeSafe = sourceChannel && startFrame < endFrame && endFrame <= sourceChannel->length();
81 if (sourceChannel
103 sumFrom(const AudioChannel* sourceChannel) argument
[all...]
H A DReverbConvolver.cpp153 void ReverbConvolver::process(const AudioChannel* sourceChannel, AudioChannel* destinationChannel, size_t framesToProcess) argument
155 bool isSafe = sourceChannel && destinationChannel && sourceChannel->length() >= framesToProcess && destinationChannel->length() >= framesToProcess;
160 const float* source = sourceChannel->data();
H A DAudioBus.cpp281 const AudioChannel* sourceChannel = sourceBus.channel(0); local
282 channel(0)->copyFrom(sourceChannel);
283 channel(1)->copyFrom(sourceChannel);
323 const AudioChannel* sourceChannel = sourceBus.channel(0); local
324 channel(0)->sumFrom(sourceChannel);
325 channel(1)->sumFrom(sourceChannel);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPClientTransaction.java497 * @param sourceChannel Channel that received this message.
500 MessageChannel sourceChannel, SIPDialog dialog) {
535 inviteClientTransaction(transactionResponse, sourceChannel, dialog);
537 nonInviteClientTransaction(transactionResponse, sourceChannel, dialog);
604 * @param sourceChannel - source channel on which the response was received.
607 MessageChannel sourceChannel, SIPDialog sipDialog) throws IOException {
720 * @param sourceChannel - source channel on which the response was received.
724 MessageChannel sourceChannel, SIPDialog dialog) throws IOException {
499 processResponse(SIPResponse transactionResponse, MessageChannel sourceChannel, SIPDialog dialog) argument
606 nonInviteClientTransaction(SIPResponse transactionResponse, MessageChannel sourceChannel, SIPDialog sipDialog) argument
723 inviteClientTransaction(SIPResponse transactionResponse, MessageChannel sourceChannel, SIPDialog dialog) argument
H A DSIPServerTransaction.java706 * @param sourceChannel Channel that received this message.
708 public void processRequest(SIPRequest transactionRequest, MessageChannel sourceChannel) { argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_filters.c638 VGImageChannel sourceChannel,
660 if (sourceChannel != VG_RED && sourceChannel != VG_GREEN &&
661 sourceChannel != VG_BLUE && sourceChannel != VG_ALPHA) {
696 info.user_data = (void*)sourceChannel;
636 vegaLookupSingle(VGImage dst, VGImage src, const VGuint * lookupTable, VGImageChannel sourceChannel, VGboolean outputLinear, VGboolean outputPremultiplied) argument
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_filters.c638 VGImageChannel sourceChannel,
660 if (sourceChannel != VG_RED && sourceChannel != VG_GREEN &&
661 sourceChannel != VG_BLUE && sourceChannel != VG_ALPHA) {
696 info.user_data = (void*)sourceChannel;
636 vegaLookupSingle(VGImage dst, VGImage src, const VGuint * lookupTable, VGImageChannel sourceChannel, VGboolean outputLinear, VGboolean outputPremultiplied) argument

Completed in 2702 milliseconds