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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 40 int remaining = value >> 7; local
43 while (remaining != 0) {
44 remaining >>= 7;
61 int remaining = value >> 7; local
67 hasMore = (remaining != end)
68 || ((remaining & 1) != ((value >> 6) & 1));
70 value = remaining;
71 remaining >>= 7;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Leb128Utils.java 48 int remaining = value >>> 7; local
51 while (remaining != 0) {
52 value = remaining;
53 remaining >>>= 7;
70 int remaining = value >> 7; local
76 hasMore = (remaining != end)
77 || ((remaining & 1) != ((value >> 6) & 1));
79 value = remaining;
80 remaining >>= 7;
94 int remaining = value >>> 7 local
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Leb128Utils.java 41 int remaining = value >> 7; local
44 while (remaining != 0) {
45 remaining >>= 7;
62 int remaining = value >> 7; local
68 hasMore = (remaining != end)
69 || ((remaining & 1) != ((value >> 6) & 1));
71 value = remaining;
72 remaining >>= 7;
133 int remaining = value >>> 7; local
135 while (remaining != 0)
149 int remaining = value >> 7; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Leb128Utils.java 41 int remaining = value >> 7; local
44 while (remaining != 0) {
45 remaining >>= 7;
62 int remaining = value >> 7; local
68 hasMore = (remaining != end)
69 || ((remaining & 1) != ((value >> 6) & 1));
71 value = remaining;
72 remaining >>= 7;
133 int remaining = value >>> 7; local
135 while (remaining != 0)
149 int remaining = value >> 7; local
    [all...]
  /external/chromium/chrome/browser/chromeos/
low_battery_observer.cc 26 const int limit_min = 15; // Notification will show when remaining number
28 const int limit_max = 30; // Notification will hid when remaining number
31 // by user when time remaining <= critical.
33 base::TimeDelta remaining = object->battery_time_to_empty(); local
34 int remaining_minutes = remaining.InMinutes();
36 // To simplify the logic - we handle the case of calculating the remaining
38 // remaining time of zero means still calculating, this is denoted by
40 bool line_power = object->line_power_on() || remaining == base::TimeDelta();
43 // goes critical. We only want to do this once even if the time remaining
51 // to line_power, we're calculating our time remaining,
    [all...]
low_battery_observer.h 30 void Show(base::TimeDelta remaining, bool urgent);
34 int remaining_; // Last displayed remaining time in minutes
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SCPInputStream.java 20 * Bytes remaining to be read from the stream
22 private long remaining; field in class:SCPInputStream
70 this.remaining = lnp.length;
76 if (!(remaining > 0))
87 remaining -= read;
95 if (!(remaining > 0))
100 int trans = (int) remaining;
101 if (remaining > len)
112 remaining -= read;
  /libcore/luni/src/main/java/java/nio/
CharBuffer.java 174 * call to {@code remaining()}.
181 if (index < 0 || index >= remaining()) {
182 throw new IndexOutOfBoundsException("index=" + index + ", remaining()=" + remaining());
190 * The remaining chars will be moved to the head of the buffer,
192 * {@code remaining()}; the limit is set to capacity; the mark is cleared.
201 * Compare the remaining chars of this buffer to another char
202 * buffer's remaining chars.
213 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining(
732 int remaining = remaining(); local
    [all...]
DoubleBuffer.java 125 * The remaining doubles will be moved to the head of the buffer, staring
126 * from position zero. Then the position is set to {@code remaining()}; the
136 * Compare the remaining doubles of this buffer to another double buffer's
137 * remaining doubles.
148 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
149 : otherBuffer.remaining();
165 return remaining() - otherBuffer.remaining();
    [all...]
FloatBuffer.java 126 * The remaining floats will be moved to the head of the buffer, starting
127 * from position zero. Then the position is set to {@code remaining()}; the
137 * Compare the remaining floats of this buffer to another float buffer's
138 * remaining floats.
149 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining()
150 : otherBuffer.remaining();
166 return remaining() - otherBuffer.remaining();
    [all...]
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...]
  /packages/apps/Email/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...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
MessageProtocol.java 76 short dataLength = (short)(buffer.remaining() - 2);
110 while( buffer.remaining() > 0 ) {
123 else if( buffer.remaining() < 2 ) {
145 if( current.remaining() <= buffer.remaining() ) {
151 int extra = buffer.remaining() - current.remaining();
152 buffer.limit( buffer.position() + current.remaining() );
  /external/elfutils/tests/
dwfl-addr-sect.c 69 int remaining; local
71 (void) argp_parse (dwfl_standard_argp (), argc, argv, 0, &remaining, &dwfl); local
75 for (; remaining < argc; ++remaining)
78 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
79 if (endp != argv[remaining])
  /external/chromium/chrome/browser/safe_browsing/
protocol_parser.cc 258 int remaining = length; local
266 while (remaining > 0) {
273 remaining -= line_len;
298 if (remaining < chunk_len)
320 remaining -= chunk_len;
321 DCHECK_LE(0, remaining);
324 DCHECK(remaining == 0);
335 int remaining = data_len; local
342 DCHECK_EQ(0, remaining % hash_len);
343 prefix_count = remaining / hash_len
372 int remaining = data_len; local
466 int remaining = chunk_length; local
    [all...]
  /external/chromium/net/url_request/
url_request_simple_job.cc 43 int remaining = static_cast<int>(data_.size()) - data_offset_; local
44 if (buf_size > remaining)
45 buf_size = remaining;
  /external/clang/test/CodeGen/
2002-07-14-MiscTests.c 30 static int remaining; variable
34 if (size>remaining)
37 remaining = 32768;
  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 156 int remaining = available - acquires; local
157 if (remaining < 0 ||
158 compareAndSetState(available, remaining))
159 return remaining;
224 int remaining = available - acquires; local
225 if (remaining < 0 ||
226 compareAndSetState(available, remaining))
227 return remaining;
  /system/core/libcutils/
buffer.c 93 buffer->remaining = buffer->size;
97 assert(buffer->remaining > 0);
98 assert(buffer->remaining <= buffer->size);
101 buffer->data + buffer->size - buffer->remaining,
102 buffer->remaining);
105 buffer->remaining -= bytesWritten;
109 ALOGD("Buffer remaining: %d", (int) buffer->remaining);
111 return buffer->remaining;
  /external/apache-http/src/org/apache/http/entity/
InputStreamEntity.java 90 long remaining = this.length; local
91 while (remaining > 0) {
92 l = instream.read(buffer, 0, (int)Math.min(BUFFER_SIZE, remaining));
97 remaining -= l;
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 206 long remaining = Math.min(n, this.contentLength - this.pos); local
209 while (remaining > 0) {
210 int l = read(buffer, 0, (int)Math.min(BUFFER_SIZE, remaining));
215 remaining -= l;
  /packages/apps/Email/src/org/apache/commons/io/input/
SwappedDataInputStream.java 136 int remaining = length; local
138 while( remaining > 0 )
140 int location = offset + ( length - remaining );
141 int count = read( data, location, remaining );
148 remaining -= count;
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLOperator.cpp 231 int remaining = half - gGlyphHeight; local
232 while (remaining > 0) {
233 if (remaining < gGlyphHeight) {
234 createGlyph(stretchyCharacters[index].extensionGlyph, remaining);
235 remaining = 0;
238 remaining -= gGlyphHeight;
245 // The remaining is the top half minus the middle glyph height.
246 remaining = half - gGlyphHeight;
249 remaining++;
252 while (remaining > 0)
267 int remaining = m_stretchHeight - 2 * gGlyphHeight; local
    [all...]

Completed in 366 milliseconds

1 2 3 4 5 6 7 8 91011>>