/libcore/luni/src/main/java/java/nio/ |
IntBuffer.java | 122 * The remaining ints will be moved to the head of the buffer, starting from 123 * position zero. Then the position is set to {@code remaining()}; the 133 * Compares the remaining ints of this buffer to another int buffer's 134 * remaining ints. 145 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining() 146 : otherBuffer.remaining(); 160 return remaining() - otherBuffer.remaining(); [all...] |
LongBuffer.java | 124 * The remaining longs will be moved to the head of the buffer, staring from 125 * position zero. Then the position is set to {@code remaining()}; the 135 * Compare the remaining longs of this buffer to another long buffer's 136 * remaining longs. 147 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining() 148 : otherBuffer.remaining(); 162 return remaining() - otherBuffer.remaining(); [all...] |
ShortBuffer.java | 124 * The remaining shorts will be moved to the head of the buffer, starting 125 * from position zero. Then the position is set to {@code remaining()}; the 135 * Compare the remaining shorts of this buffer to another short buffer's 136 * remaining shorts. 147 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining() 148 : otherBuffer.remaining(); 162 return remaining() - otherBuffer.remaining(); [all...] |
IoVec.java | 58 int remaining = b.remaining(); local 66 byteCounts[i] = remaining; 67 totalRemaining += remaining;
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
Intersections.cpp | 119 int remaining = fUsed - index; 120 if (remaining > 0) { 121 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining); 122 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining); 123 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining); 146 int remaining = --fUsed - index; 147 if (remaining <= 0) { 150 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); 151 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining); 152 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining); [all...] |
/external/skia/experimental/Intersection/ |
Intersections.cpp | 119 int remaining = fUsed - index; 120 if (remaining > 0) { 121 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining); 122 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining); 123 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining); 146 int remaining = --fUsed - index; 147 if (remaining <= 0) { 150 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); 151 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining); 152 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining); [all...] |
/external/chromium_org/extensions/common/ |
value_counter.cc | 32 int remaining = (*it)->Decrement(); local 33 if (remaining == 0) { 37 return remaining;
|
/external/chromium_org/gin/ |
arguments.h | 49 int remaining = info_->Length() - next_; local 50 out->resize(remaining); 51 for (int i = 0; i < remaining; ++i) {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementAsyncImportMicrotaskQueue.cpp | 45 WillBeHeapVector<OwnPtrWillBeMember<CustomElementMicrotaskStep> > remaining; local 49 remaining.append(m_queue[i].release()); 52 m_queue.swap(remaining);
|
/external/chromium_org/third_party/skia/src/utils/ios/ |
SkOSFile_iOS.mm | 73 size_t remaining = rec->fLength - rec->fOffset; 74 if (byteCount > remaining) { 75 byteCount = remaining;
|
/external/skia/src/utils/ios/ |
SkOSFile_iOS.mm | 73 size_t remaining = rec->fLength - rec->fOffset; 74 if (byteCount > remaining) { 75 byteCount = remaining;
|
/external/chromium_org/chrome/browser/sessions/ |
tab_restore_service_observer.h | 17 // Sent to all remaining Observers when TabRestoreService's
|
/external/chromium_org/third_party/webrtc/base/ |
stringdigest.h | 14 // TODO: Update remaining callers to use messagedigest.h instead
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_mark_t.h | 8 * The remaining bits designate the action. By making the set
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
ItemDataBox.java | 36 content.position(content.position() + content.remaining());
|
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
MarshalQueryableArray.java | 78 int remaining = buffer.remaining(); local 79 int arraySize = remaining / elementSize; 81 if (remaining % elementSize != 0) { 84 + "; but there are " + (remaining % elementSize) + " left over bytes"); 90 + "remaining = %d) for type %s", 91 arraySize, elementSize, remaining, mClass)); 113 if (buffer.remaining() != 0) { 114 Log.e(TAG, "Trailing bytes (" + buffer.remaining() + ") left over after unpacking "
|
/frameworks/base/core/java/android/service/fingerprint/ |
FingerprintManagerReceiver.java | 24 * remaining hits 0 without {@link #onError(int)} being called. 27 * @param remaining the number of samples required to complete enrollment. It's up to 30 * different parts of the finger. The enrollment flow can use remaining to 33 public void onEnrollResult(int fingerprintId, int remaining) { }
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ByteArrayOutputStream.java | 152 int remaining = len; local 154 while (remaining > 0) { 155 int part = Math.min(remaining, currentBuffer.length - inBufferPos); 156 System.arraycopy(b, off + len - remaining, currentBuffer, inBufferPos, part); 157 remaining -= part; 158 if (remaining > 0) { 250 int remaining = count; local 253 int c = Math.min(buf.length, remaining); 255 remaining -= c; 256 if (remaining == 0) 270 int remaining = count; local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_mark_t.h | 8 * The remaining bits designate the action. By making the set
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_mark_t.h | 8 * The remaining bits designate the action. By making the set
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
GLUtils.java | 51 while (bb.remaining() > 0) { 65 while (bb.remaining() > 0) { 79 while (bb.remaining() > 0) { 97 while (bb.remaining() > 0) {
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsProvider2_AccountRemovalTest.java | 183 ArrayList<ContactIdPair> remaining = new ArrayList<ContactIdPair>(idList.size()); local 184 remaining.addAll(idList); 185 while (!remaining.isEmpty()) { 188 assertWithinTimeoutLimit(start, "Contacts " + Arrays.toString(remaining.toArray()) + 193 for (ContactIdPair ids : remaining) { 202 remaining.removeAll(toBeRemoved); 214 ArrayList<ContactIdPair> remaining = new ArrayList<ContactIdPair>(idList.size()); local 215 remaining.addAll(idList); 216 while (!remaining.isEmpty()) { 223 for (ContactIdPair ids : remaining) { [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
Timeout.java | 20 * This class holds the remaining timeout value. 43 * Return the remaining timeout value.
|
/cts/tools/signature-tools/src/signature/compare/model/ |
IUpperBoundsDelta.java | 43 * Returns a set of remaining upper bound deltas or {@code null} if no 46 * @return a set of remaining upper bound deltas, maybe {@code null}
|
/external/iptables/extensions/ |
libxt_IDLETIMER.man | 6 each timer is created in sysfs. This attribute contains the timer remaining 23 Send netlink messages in addition to sysfs notifications and show remaining
|