OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sourceChannel
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioChannel.cpp
59
void AudioChannel::copyFrom(const AudioChannel*
sourceChannel
)
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)
75
// Check that range is safe for reading from
sourceChannel
.
76
bool isRangeSafe =
sourceChannel
&& startFrame < endFrame && endFrame <=
sourceChannel
->length();
81
if (
sourceChannel
->isSilent() && isSilent()
[
all
...]
AudioChannel.h
119
void copyFrom(const AudioChannel*
sourceChannel
);
122
void copyFromRange(const AudioChannel*
sourceChannel
, unsigned startFrame, unsigned endFrame);
125
void sumFrom(const AudioChannel*
sourceChannel
);
ReverbConvolver.cpp
153
void ReverbConvolver::process(const AudioChannel*
sourceChannel
, AudioChannel* destinationChannel, size_t framesToProcess)
155
bool isSafe =
sourceChannel
&& destinationChannel &&
sourceChannel
->length() >= framesToProcess && destinationChannel->length() >= framesToProcess;
160
const float* source =
sourceChannel
->data();
ReverbConvolver.h
60
void process(const AudioChannel*
sourceChannel
, AudioChannel* destinationChannel, size_t framesToProcess);
AudioBus.cpp
281
const AudioChannel*
sourceChannel
= sourceBus.channel(0);
282
channel(0)->copyFrom(
sourceChannel
);
283
channel(1)->copyFrom(
sourceChannel
);
323
const AudioChannel*
sourceChannel
= sourceBus.channel(0);
324
channel(0)->sumFrom(
sourceChannel
);
325
channel(1)->sumFrom(
sourceChannel
);
/libcore/luni/src/test/java/libcore/java/nio/channels/
ChannelsTest.java
30
Pipe.
SourceChannel
sourceChannel
= createNonBlockingChannel("abc".getBytes("UTF-8"));
32
Channels.newInputStream(
sourceChannel
).read();
43
Pipe.
SourceChannel
sourceChannel
= createNonBlockingChannel("abc".getBytes("UTF-8"));
45
Channels.newReader(
sourceChannel
, "UTF-8").read();
51
private Pipe.
SourceChannel
createNonBlockingChannel(byte[] content) throws IOException {
55
Pipe.
SourceChannel
sourceChannel
= pipe.source();
56
sourceChannel
.configureBlocking(false)
[
all
...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_filters.c
638
VGImageChannel
sourceChannel
,
660
if (
sourceChannel
!= VG_RED &&
sourceChannel
!= VG_GREEN &&
661
sourceChannel
!= VG_BLUE &&
sourceChannel
!= VG_ALPHA) {
696
info.user_data = (void*)
sourceChannel
;
/external/mesa3d/src/gallium/state_trackers/vega/
api_filters.c
638
VGImageChannel
sourceChannel
,
660
if (
sourceChannel
!= VG_RED &&
sourceChannel
!= VG_GREEN &&
661
sourceChannel
!= VG_BLUE &&
sourceChannel
!= VG_ALPHA) {
696
info.user_data = (void*)
sourceChannel
;
/external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java
497
* @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 {
[
all
...]
SIPServerTransaction.java
706
* @param
sourceChannel
Channel that received this message.
708
public void processRequest(SIPRequest transactionRequest, MessageChannel
sourceChannel
) {
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java
[
all
...]
/external/chromium_org/third_party/mesa/src/include/VG/
openvg.h
[
all
...]
/external/mesa3d/include/VG/
openvg.h
[
all
...]
Completed in 685 milliseconds