Searched refs:available (Results 1 - 25 of 547) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tests/
H A DObjectPoolTest.cpp24 int available, int blocks) {
25 if (available != pool.available()) {
26 ERRORF(reporter, "%s - Pool available is %d not %d",
27 stage, pool.available(), available);
46 int available = (blocks * kNumItemsPerBlock) - (index + 1); local
47 if (!verifyPool(reporter, pool, "acquire", available, blocks)) {
51 int available = pool.available(); local
21 verifyPool(skiatest::Reporter* reporter, const ObjectPoolType& pool, const char* stage, int available, int blocks) argument
[all...]
/external/skia/tests/
H A DObjectPoolTest.cpp24 int available, int blocks) {
25 if (available != pool.available()) {
26 ERRORF(reporter, "%s - Pool available is %d not %d",
27 stage, pool.available(), available);
46 int available = (blocks * kNumItemsPerBlock) - (index + 1); local
47 if (!verifyPool(reporter, pool, "acquire", available, blocks)) {
51 int available = pool.available(); local
21 verifyPool(skiatest::Reporter* reporter, const ObjectPoolType& pool, const char* stage, int available, int blocks) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DThreadLocalOutputBufferProvider.java25 private final ThreadLocal<Boolean> available; field in class:ThreadLocalOutputBufferProvider
33 available = new ThreadLocal<Boolean>() {
42 if (!available.get()) {
46 available.set(false);
57 available.set(true);
/external/clang/test/Modules/
H A 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)
16 # error HAVE_HASH_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)
38 # error HAVE_VECTOR macro is not available (but should be)
42 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
46 # error HAVE_HASH_MAP macro is available (but shouldn't be)
52 # error HAVE_VECTOR macro is not available (bu
[all...]
/external/chromium_org/chrome/browser/extensions/api/braille_display_private/
H A Dmock_braille_controller.cc16 state->available = available_;
32 void MockBrailleController::SetAvailable(bool available) { argument
33 available_ = available;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DCharCache.java33 int available = cache.length - pos;
34 int toWrite = chars.length < available ? chars.length : available;
/external/arduino/hardware/arduino/cores/arduino/
H A DStream.h29 virtual int available() = 0;
/external/chromium_org/net/disk_cache/
H A Dcache_util.cc52 int64 PreferredCacheSizeInternal(int64 available) { argument
54 // Return 80% of the available space if there is not enough space to use
56 if (available < kDefaultCacheSize * 10 / 8)
57 return available * 8 / 10;
59 // Return kDefaultCacheSize if it uses 10% to 80% of the available space.
60 if (available < kDefaultCacheSize * 10)
63 // Return 10% of the available space if the target size
65 if (available < static_cast<int64>(kDefaultCacheSize) * 25)
66 return available / 10;
69 // of the available spac
144 PreferredCacheSize(int64 available) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dbytestream.cpp43 int32_t available = capacity_ - size_; local
44 if (n > available) {
45 n = available;
63 int32_t available = capacity_ - size_; local
64 if (available >= min_capacity) {
65 *result_capacity = available;
/external/icu/icu4c/source/common/
H A Dbytestream.cpp47 int32_t available = capacity_ - size_; local
48 if (n > available) {
49 n = available;
67 int32_t available = capacity_ - size_; local
68 if (available >= min_capacity) {
69 *result_capacity = available;
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_query_unittest.cc40 GLuint available; local
61 available = 0;
65 &available);
66 EXPECT_TRUE(available);
73 available = 0;
76 &available);
77 EXPECT_TRUE(available);
113 GLuint available = 0; local
129 available = 0;
130 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &available);
[all...]
/external/speex/libspeex/
H A Dbuffer.c48 int available; member in struct:SpeexBuffer_
58 st->available = 0;
88 st->available += len;
89 if (st->available > st->size)
91 st->available = st->size;
120 st->available += len;
121 if (st->available > st->size)
123 st->available = st->size;
136 if (len > st->available)
138 SPEEX_MEMSET(data+st->available,
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_device/mac/
H A Daudio_mixer_manager_mac.h32 int32_t SpeakerVolumeIsAvailable(bool& available);
33 int32_t SpeakerMuteIsAvailable(bool& available);
36 int32_t StereoPlayoutIsAvailable(bool& available);
37 int32_t StereoRecordingIsAvailable(bool& available);
38 int32_t MicrophoneMuteIsAvailable(bool& available);
41 int32_t MicrophoneBoostIsAvailable(bool& available);
44 int32_t MicrophoneVolumeIsAvailable(bool& available);
/external/chromium_org/third_party/webrtc/modules/audio_device/test/
H A Dfunc_test_manager.cc989 (b == true) ? (sprintf(str, " %-17s: available\n", #a)) : (sprintf(str, " %-17s: NA\n", #a)); \
998 bool available(false);
1014 EXPECT_EQ(0, audioDevice->PlayoutIsAvailable(&available));
1015 PRINT_STR(Playout, available);
1016 if (available)
1018 EXPECT_EQ(0, audioDevice->StereoPlayoutIsAvailable(&available));
1019 PRINT_STR(Stereo Playout, available);
1025 EXPECT_EQ(0, audioDevice->SpeakerVolumeIsAvailable(&available));
1026 PRINT_STR(Speaker Volume, available);
1027 EXPECT_EQ(0, audioDevice->SpeakerMuteIsAvailable(&available));
[all...]
H A Daudio_device_test_api.cc295 FAIL() << "API Test is not available on ALSA on Linux!";
487 bool available; local
491 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
497 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
504 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
510 bool available; local
514 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
519 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
526 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
542 bool available; local
593 bool available; local
632 bool available; local
689 bool available; local
811 bool available; local
845 bool available; local
868 bool available; local
906 bool available; local
1012 bool available; local
1050 bool available; local
1140 bool available; local
1166 bool available; local
1192 bool available; local
1218 bool available; local
1276 bool available; local
1325 bool available; local
1401 bool available; local
1470 bool available; local
1521 bool available; local
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLStreamedInputTest.java38 assertEquals(bis.available(), sslsi.available());
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Daudio_device_template.h106 bool& available) { // NOLINT
107 return output_.PlayoutIsAvailable(available);
119 bool& available) { // NOLINT
120 return input_.RecordingIsAvailable(available);
195 bool& available) { // NOLINT
196 return output_.SpeakerVolumeIsAvailable(available);
224 bool& available) { // NOLINT
225 return input_.MicrophoneVolumeIsAvailable(available);
253 bool& available) { // NOLINT
254 return output_.SpeakerMuteIsAvailable(available);
105 PlayoutIsAvailable( bool& available) argument
118 RecordingIsAvailable( bool& available) argument
194 SpeakerVolumeIsAvailable( bool& available) argument
223 MicrophoneVolumeIsAvailable( bool& available) argument
252 SpeakerMuteIsAvailable( bool& available) argument
266 MicrophoneMuteIsAvailable( bool& available) argument
280 MicrophoneBoostIsAvailable( bool& available) argument
294 StereoPlayoutIsAvailable( bool& available) argument
308 StereoRecordingIsAvailable( bool& available) argument
[all...]
/external/llvm/test/MC/Mips/mips32r6/
H A Dinvalid.s1 # Instructions that are available for the current ISA but should be rejected by
/external/llvm/test/MC/Mips/mips64r6/
H A Dinvalid.s1 # Instructions that are available for the current ISA but should be rejected by
/external/valgrind/main/drd/tests/
H A Dfp_race.stderr.exp7 (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)
H A Dsem_as_mutex.stderr.exp7 (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)
H A Dsem_open.stderr.exp7 (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)
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvreader.hpp27 virtual int Length(long long* total, long long* available);
/external/clang/test/SemaCXX/
H A Dlibstdcxx_is_pod_hack.cpp40 # error __is_pod should still be available.
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.hpp31 virtual int Length(long long* total, long long* available);

Completed in 3959 milliseconds

1234567891011>>