Home
last modified time | relevance | path

Searched refs:available (Results 1 – 25 of 2609) sorted by relevance

12345678910>>...105

/external/webrtc/webrtc/modules/audio_device/test/
Dfunc_test_manager.cc1023 bool available(false); in TestDeviceSelection() local
1039 EXPECT_EQ(0, audioDevice->PlayoutIsAvailable(&available)); in TestDeviceSelection()
1040 PRINT_STR(Playout, available); in TestDeviceSelection()
1041 if (available) in TestDeviceSelection()
1043 EXPECT_EQ(0, audioDevice->StereoPlayoutIsAvailable(&available)); in TestDeviceSelection()
1044 PRINT_STR(Stereo Playout, available); in TestDeviceSelection()
1050 EXPECT_EQ(0, audioDevice->SpeakerVolumeIsAvailable(&available)); in TestDeviceSelection()
1051 PRINT_STR(Speaker Volume, available); in TestDeviceSelection()
1052 EXPECT_EQ(0, audioDevice->SpeakerMuteIsAvailable(&available)); in TestDeviceSelection()
1053 PRINT_STR(Speaker Mute, available); in TestDeviceSelection()
[all …]
Daudio_device_test_api.cc465 bool available; in TEST_F() local
469 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available)); in TEST_F()
475 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available)); in TEST_F()
482 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available)); in TEST_F()
488 bool available; in TEST_F() local
492 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available)); in TEST_F()
497 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available)); in TEST_F()
504 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available)); in TEST_F()
520 bool available; in TEST_F() local
521 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available)); in TEST_F()
[all …]
/external/llvm/test/MC/Mips/
Dbranch-pseudos-bad.s7 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
9 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
11 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
13 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
15 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
17 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
19 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
21 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
24 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
26 # CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DFastStringBuffer.java489 int available = m_chunkSize - m_firstFree; in append() local
496 if (available > strlen) in append()
497 available = strlen; in append()
499 value.getChars(copyfrom, copyfrom + available, m_array[m_lastChunk], in append()
502 strlen -= available; in append()
503 copyfrom += available; in append()
541 available = m_chunkSize; in append()
547 m_firstFree += available; in append()
571 int available = m_chunkSize - m_firstFree; in append() local
578 if (available > strlen) in append()
[all …]
/external/mesa3d/src/mesa/sparc/
Dxform.S86 fmuls %f8, M0, %f9 ! FGM Group f1 available
89 fmuls %f8, M1, %f10 ! FGM Group f2 available
92 fmuls %f8, M2, %f11 ! FGM Group f3 available
95 fmuls %f8, M3, %f12 ! FGM Group f4 available
98 fadds %f9, M12, %f9 ! FGA Group f9 available
100 fadds %f10, M13, %f10 ! FGA Group f10 available
102 fadds %f11, M14, %f11 ! FGA Group f11 available
104 fadds %f12, M15, %f12 ! FGA Group f12 available
201 fadds %f1, M12, %f3 ! FGA Group f1 available
203 fadds %f2, M13, %f4 ! FGA Group f2 available
[all …]
Dnorm.S64 fmuls %f0, M8, %f7 ! FGM Group f3 available
65 fmuls %f1, M9, %f8 ! FGM Group f4 available
67 fmuls %f2, M2, %f10 ! FGM Group f5 available
68 fmuls %f2, M6, %f0 ! FGM Group f6 available
70 fmuls %f2, M10, %f4 ! FGM Group f7 available
71 fadds %f7, %f8, %f7 ! FGA Group f8,f3 available
72 fadds %f3, %f10, %f3 ! FGA Group f10 available
73 fadds %f5, %f0, %f5 ! FGA Group stall f0,f5 available
74 fadds %f7, %f4, %f7 ! FGA Group stall f4,f7 available
79 fmuls %f3, %f3, %f6 ! FGM Group f3 available
[all …]
/external/speex/libspeex/
Dbuffer.c48 int available; member
58 st->available = 0; in speex_buffer_init()
88 st->available += len; in speex_buffer_write()
89 if (st->available > st->size) in speex_buffer_write()
91 st->available = st->size; in speex_buffer_write()
120 st->available += len; in speex_buffer_writezeros()
121 if (st->available > st->size) in speex_buffer_writezeros()
123 st->available = st->size; in speex_buffer_writezeros()
136 if (len > st->available) in speex_buffer_read()
138 SPEEX_MEMSET(data+st->available, 0, st->size-st->available); in speex_buffer_read()
[all …]
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
DRandomAccessFileInputStream.java127 public int available() throws IOException { in available() method in RandomAccessFileInputStream
152 if (available() <= 0) { in read()
163 int available = available(); in read() local
164 if (available <= 0) { in read()
167 int result = raf.read(b, off, Math.min(len, available)); in read()
181 int available = available(); in skip() local
182 if (available <= 0) { in skip()
185 int skipAmount = (int) Math.min(available, n); in skip()
/external/clang/test/Modules/
Dsubmodules-preprocess.cpp8 # error HAVE_VECTOR macro is not available (but should be)
12 # error HAVE_TYPE_TRAITS_MAP macro is available (but shouldn't be)
22 # error HAVE_VECTOR macro is not available (but should be)
26 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
30 # error HAVE_HASH_MAP macro is available (but shouldn't be)
52 # error HAVE_VECTOR macro is not available (but should be)
56 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
60 # error HAVE_HASH_MAP macro is not available (but should be)
/external/webrtc/webrtc/modules/audio_device/ios/
Daudio_device_not_implemented_ios.mm55 int32_t AudioDeviceIOS::SpeakerVolumeIsAvailable(bool& available) {
56 available = false;
95 int32_t AudioDeviceIOS::SpeakerMuteIsAvailable(bool& available) {
96 available = false;
144 int32_t AudioDeviceIOS::MicrophoneMuteIsAvailable(bool& available) {
145 available = false;
159 int32_t AudioDeviceIOS::MicrophoneBoostIsAvailable(bool& available) {
160 available = false;
174 int32_t AudioDeviceIOS::StereoRecordingIsAvailable(bool& available) {
175 available = false;
[all …]
/external/valgrind/drd/tests/
Dtc22_exit_w_lock.stderr.exp-32bit10 (thread finished, call stack no longer available)
12 (thread finished, call stack no longer available)
22 (thread finished, call stack no longer available)
24 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
46 (thread finished, call stack no longer available)
48 (thread finished, call stack no longer available)
58 (thread finished, call stack no longer available)
60 (thread finished, call stack no longer available)
[all …]
Dfp_race.stderr.exp-mips32-le7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
25 (thread finished, call stack no longer available)
27 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
Dsem_open.stderr.exp-mips32-le7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
25 (thread finished, call stack no longer available)
27 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
Dsem_as_mutex.stderr.exp-mips32-le7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
25 (thread finished, call stack no longer available)
27 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
Dfp_race.stderr.exp-mips32-be7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
25 (thread finished, call stack no longer available)
27 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
Dsem_as_mutex.stderr.exp-mips32-be7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
25 (thread finished, call stack no longer available)
27 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
Dsem_open.stderr.exp-mips32-be7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
25 (thread finished, call stack no longer available)
27 (thread finished, call stack no longer available)
34 (thread finished, call stack no longer available)
36 (thread finished, call stack no longer available)
/external/icu/icu4c/source/io/
Dsprintf.c44 int32_t size = ufmt_min(count, output->available); in u_sprintf_write()
46 u_strncpy(output->str + (output->len - output->available), str, size); in u_sprintf_write()
47 output->available -= size; in u_sprintf_write()
61 resultLen = ufmt_min(resultLen, output->available); in u_sprintf_pad_and_justify()
66 int32_t outputPos = output->len - output->available; in u_sprintf_pad_and_justify()
68 if (paddingLeft + resultLen > output->available) { in u_sprintf_pad_and_justify()
69 paddingLeft = output->available - resultLen; in u_sprintf_pad_and_justify()
81 output->available -= paddingLeft; in u_sprintf_pad_and_justify()
86 output->available -= paddingLeft; in u_sprintf_pad_and_justify()
236 outStr.available = count; in u_vsnprintf_u()
[all …]
/external/webrtc/webrtc/modules/audio_device/android/
Daudio_device_template.h141 int32_t PlayoutIsAvailable(bool& available) override { in PlayoutIsAvailable() argument
142 available = true; in PlayoutIsAvailable()
154 int32_t RecordingIsAvailable(bool& available) override { in RecordingIsAvailable() argument
155 available = true; in RecordingIsAvailable()
244 int32_t SpeakerVolumeIsAvailable(bool& available) override { in SpeakerVolumeIsAvailable() argument
245 return output_.SpeakerVolumeIsAvailable(available); in SpeakerVolumeIsAvailable()
269 int32_t MicrophoneVolumeIsAvailable(bool& available) override{ in MicrophoneVolumeIsAvailable() argument
270 available = false; in MicrophoneVolumeIsAvailable()
300 int32_t SpeakerMuteIsAvailable(bool& available) override { in SpeakerMuteIsAvailable() argument
315 int32_t MicrophoneMuteIsAvailable(bool& available) override { in MicrophoneMuteIsAvailable() argument
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dbytestream.cc71 size_t available = capacity_ - size_; in Append() local
72 if (n > available) { in Append()
73 n = available; in Append()
96 size_t available = capacity_ - size_; in Append() local
103 if (n > available) { in Append()
104 Expand(n - available); in Append()
165 size_t available = source_->Available(); in Available() local
166 if (available > limit_) { in Available()
167 available = limit_; in Available()
170 return available; in Available()
/external/webrtc/webrtc/modules/audio_device/mac/
Daudio_mixer_manager_mac.h31 int32_t SpeakerVolumeIsAvailable(bool& available);
32 int32_t SpeakerMuteIsAvailable(bool& available);
35 int32_t StereoPlayoutIsAvailable(bool& available);
36 int32_t StereoRecordingIsAvailable(bool& available);
37 int32_t MicrophoneMuteIsAvailable(bool& available);
40 int32_t MicrophoneBoostIsAvailable(bool& available);
43 int32_t MicrophoneVolumeIsAvailable(bool& available);
/external/skia/src/core/
DSkData.cpp47 size_t available = fSize; in copyRange() local
48 if (offset >= available || 0 == length) { in copyRange()
51 available -= offset; in copyRange()
52 if (length > available) { in copyRange()
53 length = available; in copyRange()
162 size_t available = src->size(); in MakeSubset() local
163 if (offset >= available || 0 == length) { in MakeSubset()
166 available -= offset; in MakeSubset()
167 if (length > available) { in MakeSubset()
168 length = available; in MakeSubset()
/external/webrtc/webrtc/modules/audio_device/include/
Dfake_audio_device.h58 virtual int32_t PlayoutIsAvailable(bool* available) { return 0; } in PlayoutIsAvailable() argument
61 virtual int32_t RecordingIsAvailable(bool* available) { return 0; } in RecordingIsAvailable() argument
79 virtual int32_t SpeakerVolumeIsAvailable(bool* available) { return 0; } in SpeakerVolumeIsAvailable() argument
85 virtual int32_t MicrophoneVolumeIsAvailable(bool* available) { return 0; } in MicrophoneVolumeIsAvailable() argument
93 virtual int32_t SpeakerMuteIsAvailable(bool* available) { return 0; } in SpeakerMuteIsAvailable() argument
96 virtual int32_t MicrophoneMuteIsAvailable(bool* available) { return 0; } in MicrophoneMuteIsAvailable() argument
99 virtual int32_t MicrophoneBoostIsAvailable(bool* available) { return 0; } in MicrophoneBoostIsAvailable() argument
102 virtual int32_t StereoPlayoutIsAvailable(bool* available) const { in StereoPlayoutIsAvailable() argument
103 *available = false; in StereoPlayoutIsAvailable()
107 virtual int32_t StereoRecordingIsAvailable(bool* available) const { in StereoRecordingIsAvailable() argument
[all …]
/external/webrtc/webrtc/modules/audio_device/dummy/
Dfile_audio_device.cc136 int32_t FileAudioDevice::PlayoutIsAvailable(bool& available) { in PlayoutIsAvailable() argument
138 available = true; in PlayoutIsAvailable()
141 available = false; in PlayoutIsAvailable()
158 int32_t FileAudioDevice::RecordingIsAvailable(bool& available) { in RecordingIsAvailable() argument
160 available = true; in RecordingIsAvailable()
163 available = false; in RecordingIsAvailable()
326 int32_t FileAudioDevice::SpeakerVolumeIsAvailable(bool& available) { in SpeakerVolumeIsAvailable() argument
346 int32_t FileAudioDevice::MicrophoneVolumeIsAvailable(bool& available) { in MicrophoneVolumeIsAvailable() argument
368 int32_t FileAudioDevice::SpeakerMuteIsAvailable(bool& available) { return -1; } in SpeakerMuteIsAvailable() argument
374 int32_t FileAudioDevice::MicrophoneMuteIsAvailable(bool& available) { in MicrophoneMuteIsAvailable() argument
[all …]
/external/icu/icu4c/source/common/
Dbytestream.cpp49 int32_t available = capacity_ - size_; in Append() local
50 if (n > available) { in Append()
51 n = available; in Append()
69 int32_t available = capacity_ - size_; in GetAppendBuffer() local
70 if (available >= min_capacity) { in GetAppendBuffer()
71 *result_capacity = available; in GetAppendBuffer()

12345678910>>...105