HomeSort by relevance Sort by last modified time
    Searched full:remaining (Results 201 - 225 of 4438) sorted by null

1 2 3 4 5 6 7 891011>>

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
RamDisk.java 127 data.limit((int) (devOffset + dest.remaining()));
137 if (devOffset + src.remaining() > getSize()) throw new
140 ", length=" + src.remaining() +
143 data.limit((int) (devOffset + src.remaining()));
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Transport.java 331 int remaining; local
334 remaining = position - next;
335 if (remaining < length) {
345 if (remaining < length) {
363 if (remaining == 0) {
368 System.arraycopy(oldBuffer.array(), next, buffer.array(), 0, remaining); local
369 buffer.position(remaining);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.cpp 178 // We need to fill in the remaining values with the pattern specified.
193 // We need to fill in the remaining values with the pattern specified.
208 // We need to fill in the remaining values with the pattern specified.
219 // We need to fill in the remaining values with the pattern specified.
230 // We need to fill in the remaining values with the pattern specified.
241 // We need to fill in the remaining values with the pattern specified.
252 // We need to fill in the remaining values with the pattern specified.
263 // We need to fill in the remaining values with the pattern specified.
274 // We need to fill in the remaining values with the pattern specified.
285 // We need to fill in the remaining values with the pattern specified
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ubidiwrt.c 97 int32_t remaining=destSize; local
102 if(--remaining<0) {
109 --remaining;
112 return destSize-remaining;
117 return destSize-remaining;
121 int32_t remaining=destSize; local
130 remaining-=i;
131 if(remaining<0) {
138 --remaining;
142 return destSize-remaining;
    [all...]
  /external/icu/icu4c/source/common/
ubidiwrt.c 98 int32_t remaining=destSize; local
103 if(--remaining<0) {
110 --remaining;
113 return destSize-remaining;
118 return destSize-remaining;
122 int32_t remaining=destSize; local
131 remaining-=i;
132 if(remaining<0) {
139 --remaining;
143 return destSize-remaining;
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 137 long remaining = 0; local
141 remaining = readTimeoutMillis;
147 } else if (remaining > 0) {
148 wait(remaining);
149 remaining = start + readTimeoutMillis - (System.nanoTime() / 1000000);
404 long remaining = 0; local
407 remaining = readTimeoutMillis;
413 } else if (remaining > 0) {
414 SpdyStream.this.wait(remaining);
415 remaining = start + readTimeoutMillis - (System.nanoTime() / 1000000)
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop_win.c 316 struct os_reltime *remaining)
323 remaining->sec = remaining->usec = 0;
332 os_reltime_sub(&timeout->time, &now, remaining);
361 struct os_reltime now, requested, remaining; local
371 os_reltime_sub(&tmp->time, &now, &remaining);
372 if (os_reltime_before(&requested, &remaining)) {
393 struct os_reltime now, requested, remaining; local
403 os_reltime_sub(&tmp->time, &now, &remaining);
404 if (os_reltime_before(&remaining, &requested))
    [all...]
  /libcore/luni/src/main/java/java/nio/
Buffer.java 170 if (byteCount > remaining()) {
182 if (byteCount > remaining()) {
192 if (end < start || start < 0 || end > remaining()) {
194 ", remaining()=" + remaining());
242 * Indicates if there are elements remaining in this buffer, that is if
245 * @return {@code true} if there are elements remaining in this buffer,
361 * Returns the number of remaining elements in this buffer, that is
364 * @return the number of remaining elements in this buffer.
366 public final int remaining() { method in class:Buffer
    [all...]
  /external/chromium_org/third_party/libpng/
pngwio.c 98 png_size_t written, remaining, err; local
100 remaining = length;
103 written = MIN(NEAR_BUF_SIZE, remaining);
118 remaining -= written;
120 while (remaining != 0);
  /external/elfutils/0.153/src/
ranlib.c 107 int remaining; local
108 (void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER, &remaining, NULL);
114 if (remaining == argc)
124 status |= handle_file (argv[remaining]);
125 while (++remaining < argc);
  /external/qemu/distrib/libpng-1.2.46/
pngwio.c 98 png_size_t written, remaining, err; local
100 remaining = length;
103 written = MIN(NEAR_BUF_SIZE, remaining);
118 remaining -= written;
120 while (remaining != 0);
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
OpReorderer.java 101 final int remaining = removeOp.positionStart + removeOp.itemCount local
103 extraRm = mCallback.obtainUpdateOp(REMOVE, moveOp.positionStart + 1, remaining);
196 final int remaining = updateOp.positionStart + updateOp.itemCount local
198 extraUp2 = mCallback.obtainUpdateOp(UPDATE, moveOp.positionStart + 1, remaining);
199 updateOp.itemCount -= remaining;
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 49 * <p>Note that this class ignores all remaining data at the end of the last
167 final int remaining = inf.getRemaining() - GZIP_TRAILER_SIZE; local
168 if (remaining > 0) {
174 // remaining when it is first created.
179 inf.getCurrentOffset() + GZIP_TRAILER_SIZE, remaining);
  /packages/apps/UnifiedEmail/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;
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 149 * This method decodes the remaining byte sequence of the given byte buffer
180 int length = (int) (in.remaining() * averageCharsPerByte);
218 * original output is full and doesn't have remaining. allocate more space
250 * is no further input and no remaining bytes in the input buffer then this
274 * remaining input to be treated as malformed input.
315 result = CoderResult.malformedForLength(in.remaining());
329 if (out.remaining() < replacementChars.length()) {
357 * intact. At most {@link ByteBuffer#remaining() in.remaining()} characters
358 * will be read, and {@link CharBuffer#remaining() out.remaining()} byte
    [all...]
CharsetEncoder.java 48 * <li>Invoke {@link #flush(ByteBuffer)} to flush remaining output.</li>
223 * This method encodes the remaining character sequence of the given
252 int length = (int) (in.remaining() * averageBytesPerChar);
320 * remaining in the input buffer. This method should be invoked again with a
336 * This would make the remaining input to be treated as malformed input.
377 result = CoderResult.malformedForLength(in.remaining());
391 if (out.remaining() < replacementBytes.length) {
419 * intact. At most {@link CharBuffer#remaining() in.remaining()} characters
420 * will be read, and {@link ByteBuffer#remaining() out.remaining()} byte
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 228 int remaining = value >> 7; local
231 while (remaining != 0) {
233 value = remaining;
234 remaining >>= 7;
244 int remaining = value >> 7; local
250 hasMore = (remaining != end)
251 || ((remaining & 1) != ((value >> 6) & 1));
254 value = remaining;
255 remaining >>= 7;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/stdio/
hist.c 74 fprintf(stderr, "Not enough memory to display remaining hits\n");
90 u64 remaining; local
95 remaining = total_samples;
104 remaining -= cumul;
110 * Except if we have remaining filtered hits. They will
114 if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
147 remaining && remaining != total_samples) {
155 remaining, left_margin);
  /external/stressapptest/src/
finelock_queue.cc 103 int64 remaining = m; local
105 if ((((remaining / 4) * 4) == remaining)) {
111 if (((remaining / i) * i) == remaining) {
112 remaining /= i;
114 while (((remaining / i) * i) == remaining)
115 remaining /= i;
  /frameworks/av/media/libnbaio/
NBLog.cpp 182 // need = number of bytes remaining to write
299 size_t remaining = avail; // remaining = number of bytes left to read local
302 if (read > remaining) {
303 read = remaining;
310 if ((remaining -= read) > 0) {
312 memcpy(&copy[read], mShared->mBuffer, remaining);
313 read += remaining;
314 // remaining = 0 but not necessary
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 95 StringRef Token, Remaining;
97 std::tie(Token, Remaining) = parseSymbol(Expr);
99 std::tie(Token, Remaining) = parseNumberString(Expr);
178 // name and expression remaining to be parsed.
194 // the expression remaining to be evaluated.
263 // expression remaining to be evaluated.
295 // Return the result, plus the expression remaining to be parsed.
313 // pair representing the number and the expression remaining to be parsed.
330 // return a pair containing the result, and the expression remaining to be
348 // remaining to be parsed
    [all...]
  /external/opencv/cxcore/src/
cxmeansdv.cpp 271 int remaining = block_size; \
343 remaining = block_size
391 int limit = MIN( remaining, size.width - x ); \
392 remaining -= limit; \
396 if( remaining == 0 ) \
451 int limit = MIN( remaining, size.width - x ); \
452 remaining -= limit; \
456 if( remaining == 0 ) \
510 int limit = MIN( remaining, size.width - x ); \
511 remaining -= limit;
    [all...]
  /frameworks/av/media/libmedia/
AudioTrackShared.cpp 175 struct timespec remaining; local
198 remaining.tv_sec = requested->tv_sec - total.tv_sec;
199 if ((remaining.tv_nsec = requested->tv_nsec - total.tv_nsec) < 0) {
200 remaining.tv_nsec += 1000000000;
201 remaining.tv_sec++;
203 if (0 < MAX_SEC && MAX_SEC < remaining.tv_sec) {
204 remaining.tv_sec = MAX_SEC;
205 remaining.tv_nsec = 0;
207 ts = &remaining;
404 struct timespec remaining; local
    [all...]
  /external/chromium_org/media/base/
vector_math.cc 93 // Handle any remaining values that wouldn't fit in an SSE pass.
107 // Handle any remaining values that wouldn't fit in an SSE pass.
177 // Handle remaining values at the end of |src|.
200 // Handle any remaining values that wouldn't fit in an NEON pass.
212 // Handle any remaining values that wouldn't fit in an NEON pass.
270 // Handle remaining values at the end of |src|.
  /external/proguard/src/proguard/shrink/
ClassShrinker.java 96 // Compact the remaining fields, methods, and attributes,
388 // Clear the remaining constant pool elements.
413 // Clear the remaining array elements.
422 * from the given array and returns the remaining objects in a an array
446 // Copy the remaining elements into a new array of the right size.
471 // Clear any remaining array elements.

Completed in 1028 milliseconds

1 2 3 4 5 6 7 891011>>