HomeSort by relevance Sort by last modified time
    Searched refs:remaining (Results 451 - 475 of 1733) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiZeroMemSSE2.c 103 ; Zero out remaining as bytes
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLMac.java 131 // MAC the contents between Buffer's position and limit (remaining() number of bytes)
137 int len = input.remaining();
139 throw new RuntimeException("Negative remaining amount");
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
TestSessionBuilder.java 163 byte[] output = new byte[buf.remaining()];
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedSet.java 195 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
196 Comparable[] contents = new Comparable[6 + remaining.length];
203 System.arraycopy(remaining, 0, contents, 6, remaining.length);
  /external/guava/guava/src/com/google/common/hash/
SipHashFunction.java 134 b += buffer.remaining();
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetEncoderICU.java 329 if (target.remaining() == 0) {
352 if (!flush && source.remaining() == 0 && preFromULength >= 0) {
454 && source.remaining() == 0 && fromUChar32 == 0);
474 int length = target.remaining();
591 length = source.remaining();
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FileTypeBox.java 63 int compatibleBrandsCount = content.remaining() / 4;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
SegmentTypeBox.java 62 int compatibleBrandsCount = content.remaining() / 4;
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_helpers.cc 416 size_t remaining = input.size(); local
418 while (remaining > 2) {
423 remaining -= 3;
426 switch (remaining) {
  /external/python/cpython2/Lib/compiler/
pyassem.py 108 remaining = set()
112 if b in remaining:
114 remaining.add(b)
116 if c not in remaining:
122 for b in remaining:
142 for b in remaining:
144 if c in remaining:
145 break # can't emit yet, dominated by a remaining block
153 remaining.discard(b)
159 if not remaining
    [all...]
  /external/tensorflow/tensorflow/core/grappler/
utils.cc 138 StringPiece remaining; local
139 if (scan.Peek(':') != ':' || !scan.GetResult(&remaining, &capture)) {
145 } else if (remaining.empty()) {
149 CHECK(strings::safe_strto32(remaining.substr(1), position));
  /frameworks/base/core/java/android/nfc/
NdefMessage.java 100 if (buffer.remaining() > 0) {
  /frameworks/base/opengl/java/android/opengl/
GLES11Ext.java 886 int remaining
900 pointer.remaining()
921 int remaining
935 pointer.remaining()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardSecurityContainer.java 218 private void showAlmostAtWipeDialog(int attempts, int remaining, int userType) {
223 attempts, remaining);
227 attempts, remaining);
231 attempts, remaining);
  /frameworks/base/services/net/java/android/net/netlink/
StructNdMsg.java 103 return byteBuffer != null && byteBuffer.remaining() >= STRUCT_SIZE;
StructNlMsgHdr.java 78 return byteBuffer != null && byteBuffer.remaining() >= STRUCT_SIZE;
  /frameworks/base/tests/net/java/android/net/netlink/
NetlinkSocketTest.java 81 while (response.remaining() > 0) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
NAIRealmData.java 71 if (length > payload.remaining()) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
EAPMethod.java 59 if (length > payload.remaining()) {
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
I18NameTest.java 106 buffer.limit(buffer.remaining() - 1);
  /hardware/libhardware_legacy/audio/
A2dpAudioInterface.cpp 282 size_t remaining = bytes; local
302 while (remaining > 0 && retries) {
303 status = a2dp_write(mData, buffer, remaining);
311 remaining -= status;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoderTest.java 222 assertEquals(getString().length(), out.remaining());
230 assertEquals(out.remaining(), getString().length());
247 assertTrue(buffer.remaining() > 0);
331 assertEquals(out.remaining(), 100 - getString().length());
344 assertEquals(out.remaining(), 100 - getString().length());
358 assertEquals(out.remaining(), out.capacity() - out.position());
801 byte[] input = new byte[in.remaining()];
826 int outLeft = out.remaining();
842 if (out.remaining() >= 5) {
847 // out.put("flush", 0, out.remaining());
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
Adler32Test.java 167 assertEquals(0, byteBuffer.remaining());
CRC32Test.java 184 assertEquals(0, byteBuffer.remaining());
  /libcore/ojluni/src/main/java/java/nio/
Buffer.java 387 * out.write(buf); // Write remaining data
403 * @return The number of elements remaining in this buffer
405 public final int remaining() { method in class:Buffer
414 * remaining in this buffer

Completed in 2652 milliseconds

<<11121314151617181920>>