HomeSort by relevance Sort by last modified time
    Searched refs:available (Results 1 - 25 of 1179) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/tests/
ObjectPoolTest.cpp 24 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
    [all...]
  /external/skia/tests/
ObjectPoolTest.cpp 24 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
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
Stream.h 29 virtual int available() = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
RenderingRequestCaller.java 20 public void available(RenderingRequest request); method in interface:RenderingRequestCaller
  /libcore/luni/src/main/java/java/io/
BufferedWriter.java 195 int available = this.buf.length - pos; local
196 if (count < available) {
197 available = count;
199 if (available > 0) {
200 System.arraycopy(buffer, offset, this.buf, pos, available);
201 pos += available;
206 if (count > available) {
207 offset += available;
208 available = count - available;
279 int available = buf.length - pos; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/output/
ThreadLocalOutputBufferProvider.java 25 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);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BitmapCaller.java 22 public void available(Bitmap bmap); method in interface:BitmapCaller
  /external/clang/test/Modules/
submodules-preprocess.cpp 8 # 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 (but should be
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.h 32 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/chrome/browser/extensions/api/braille_display_private/
mock_braille_controller.cc 16 state->available = available_;
32 void MockBrailleController::SetAvailable(bool available) {
33 available_ = available;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 33 int available = cache.length - pos; local
34 int toWrite = chars.length < available ? chars.length : available;
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareMonitorCallback.java 40 * @param available Indicates whether the system is currently available or not.
44 public void onMonitoringSystemChange(int monitoringType, boolean available, Location location) {
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 60 int available = len - pos; local
61 if (available > 0) {
62 int readable = (available < count ? available : count);
  /external/chromium_org/net/disk_cache/
cache_util.cc 52 int64 PreferredCacheSizeInternal(int64 available) {
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 space
    [all...]
  /external/chromium_org/third_party/icu/source/common/
bytestream.cpp 43 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/
bytestream.cpp 47 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;
  /frameworks/av/media/libstagefright/
SkipCutBuffer.cpp 107 size_t available = mCapacity - sizeused - 32; local
108 if (available < num) {
109 int32_t newcapacity = mCapacity + (num - available);
135 int32_t available = (mWriteHead - mReadHead); local
136 if (available < 0) available += mCapacity;
138 available -= mBackPadding;
139 if (available <=0) {
142 if (available < int32_t(num)) {
143 num = available;
164 int32_t available = (mWriteHead - mReadHead); local
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_query_unittest.cc 40 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/
buffer.c 48 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, 0, st->size-st->available)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.h 34 int32_t SpeakerVolumeIsAvailable(bool& available);
35 int32_t SpeakerMuteIsAvailable(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/
func_test_manager.cc 989 (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...]
  /libcore/luni/src/main/java/java/util/zip/
DeflaterInputStream.java 39 private boolean available = true; field in class:DeflaterInputStream
121 if (!available) {
144 available = false;
148 available = false;
170 * {@link InputStream#available()}, and violates the <a
174 * @return 0 if no further bytes are available. Otherwise returns 1,
176 * available.
180 public int available() throws IOException { method in class:DeflaterInputStream
182 return available ? 1 : 0;
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLStreamedInputTest.java 38 assertEquals(bis.available(), sslsi.available());
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
audio_device_template.h 106 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);
    [all...]
  /external/llvm/test/MC/Mips/mips32r6/
invalid.s 1 # Instructions that are available for the current ISA but should be rejected by

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011>>