/external/eigen/unsupported/test/ |
sparse_extra.cpp | 23 std::vector<Vector2i> remaining = nonzeroCoords; local 24 while(!remaining.empty()) 26 int i = internal::random<int>(0,static_cast<int>(remaining.size())-1); 27 w(remaining[i].x(),remaining[i].y()) = ref.coeff(remaining[i].x(),remaining[i].y()); 28 remaining[i] = remaining.back(); 29 remaining.pop_back() 39 std::vector<Vector2i> remaining = nonzeroCoords; local [all...] |
/frameworks/av/media/img_utils/src/ |
Input.cpp | 32 size_t remaining = count; local 33 while (remaining > 0) { 34 size_t amt = (SKIP_BUF_SIZE > remaining) ? remaining : SKIP_BUF_SIZE; 39 if (remaining == count) { 44 return count - remaining; 50 remaining -= ret;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/ |
MemoryDeferredOutputStream.java | 40 if (remaining() == 0) { 53 int remaining = remaining(); local 56 int toWrite = Math.min(remaining, (length - written)); 61 remaining = remaining(); 62 if (remaining == 0) { 66 remaining = currentBuffer.length; 71 private int remaining() { method in class:MemoryDeferredOutputStream
|
/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...] |
/libcore/dex/src/main/java/com/android/dex/ |
Leb128.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; 132 int remaining = value >>> 7; local 134 while (remaining != 0) 148 int remaining = value >> 7; local [all...] |
/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_split_tmp.h | 74 * remaining = count - seg_start = first + N'' * incr. 76 * That is, remaining is implicitly trimmed. 100 const unsigned remaining = count - seg_start; local 102 if (remaining > seg_max) { 111 SEGMENT_SIMPLE(flags, start + seg_start, remaining); 112 seg_start += remaining; 122 const unsigned remaining = count - seg_start; local 124 if (remaining > seg_max) { 133 SEGMENT_LOOP(flags, start + seg_start, remaining, start); 134 seg_start += remaining; 145 const unsigned remaining = count - seg_start; local [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_split_tmp.h | 74 * remaining = count - seg_start = first + N'' * incr. 76 * That is, remaining is implicitly trimmed. 100 const unsigned remaining = count - seg_start; local 102 if (remaining > seg_max) { 111 SEGMENT_SIMPLE(flags, start + seg_start, remaining); 112 seg_start += remaining; 122 const unsigned remaining = count - seg_start; local 124 if (remaining > seg_max) { 133 SEGMENT_LOOP(flags, start + seg_start, remaining, start); 134 seg_start += remaining; 145 const unsigned remaining = count - seg_start; local [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_notification_container.mm | 60 NSRect remaining = [[self view] bounds]; 61 remaining.origin.y += autofill::kDetailVerticalPadding; 62 remaining.size.height -= kTopPadding + autofill::kDetailVerticalPadding; 65 remaining.size.height -= autofill::kArrowHeight; 70 NSSize size = [controller preferredSizeForWidth:NSWidth(remaining)]; 71 NSDivideRect(remaining, &viewRect, &remaining, size.height, NSMaxYEdge); 75 DCHECK_EQ(0, NSHeight(remaining));
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
MainUtil.java | 34 String[] remaining = new String[args.length - 1]; local 35 System.arraycopy(args, 1, remaining, 0, remaining.length); 37 method.invoke(main, bindParameters(method, remaining)); 61 int remaining = Math.max(0, args.length - i); local 63 String[] rest = new String[remaining]; 64 System.arraycopy(args, 1, rest, 0, remaining); 66 } else if (remaining > 0) {
|
/external/eigen/test/eigen2/ |
eigen2_sparse_basic.cpp | 19 std::vector<Vector2i> remaining = nonzeroCoords; local 20 while(!remaining.empty()) 22 int i = ei_random<int>(0,remaining.size()-1); 23 w(remaining[i].x(),remaining[i].y()) = ref.coeff(remaining[i].x(),remaining[i].y()); 24 remaining[i] = remaining.back(); 25 remaining.pop_back() 35 std::vector<Vector2i> remaining = nonzeroCoords; local [all...] |
/libcore/luni/src/main/java/java/nio/ |
CharBuffer.java | 169 * @throws IndexOutOfBoundsException if {@code index < 0} or {@code index >= remaining()}. 172 if (index < 0 || index >= remaining()) { 173 throw new IndexOutOfBoundsException("index=" + index + ", remaining()=" + remaining()); 181 * The remaining chars will be moved to the head of the buffer, 183 * {@code remaining()}; the limit is set to capacity; the mark is cleared. 192 * Compare the remaining chars of this buffer to another char 193 * buffer's remaining chars. 204 int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining( 725 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...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
PixelUtils.java | 51 if (input.remaining() != output.remaining()) { 53 } else if (input.remaining() % 4 != 0) { 55 } else if (output.remaining() % 4 != 0) { 57 } else if ((width * height * 4) != input.remaining()) { 60 } else if ((width * height * 4) != output.remaining()) {
|
/external/chromium_org/courgette/ |
simple_delta.cc | 36 VLOG(1) << "GenerateSimpleDelta " << old->Remaining() 37 << " " << target->Remaining();
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Delayed.java | 23 * Returns the remaining delay associated with this object, in the 27 * @return the remaining delay; zero or negative values indicate
|
/external/clang/test/CodeGen/ |
2007-06-18-SextAttrAggregate.c | 7 // does any extensions and remaining bits are unspecified.
|
2002-07-14-MiscTests.c | 30 static int remaining; variable 34 if (size>remaining) 37 remaining = 32768;
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkIntersections.cpp | 103 int remaining = fUsed - index; local 104 if (remaining > 0) { 105 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining); 106 memmove(&fPt2[index + 1], &fPt2[index], sizeof(fPt2[0]) * remaining); 107 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining); 108 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining); 166 int remaining = --fUsed - index; local 167 if (remaining <= 0) { 170 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); 171 memmove(&fPt2[index], &fPt2[index + 1], sizeof(fPt2[0]) * remaining); [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/ |
ByteBufferByteChannel.java | 35 int r = dst.remaining(); 36 if (byteBuffer.remaining() >= r) { 52 int r = src.remaining();
|
/external/skia/src/pathops/ |
SkIntersections.cpp | 103 int remaining = fUsed - index; local 104 if (remaining > 0) { 105 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining); 106 memmove(&fPt2[index + 1], &fPt2[index], sizeof(fPt2[0]) * remaining); 107 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining); 108 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining); 166 int remaining = --fUsed - index; local 167 if (remaining <= 0) { 170 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); 171 memmove(&fPt2[index], &fPt2[index + 1], sizeof(fPt2[0]) * remaining); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
ntstrsafe.h | 262 SIZE_T CharLength = Length / sizeof(CHAR), Remaining, LocalNewLength = 0; 275 Remaining = CharLength; 308 Remaining = CharLength - LocalNewLength; 322 *RemainingSize = (Remaining * sizeof(CHAR)) + 342 SIZE_T CharLength = Length / sizeof(CHAR), Copied = 0, Remaining; 354 Remaining = CharLength; 385 Remaining = CharLength - Copied; 399 *RemainingSize = (Remaining * sizeof(CHAR)) + 432 SIZE_T DestinationLength, Remaining, Copied = 0; 444 Remaining = CharLength - DestinationLength [all...] |
/system/media/audio_utils/ |
tinysndfile.c | 32 size_t remaining; // frames unread for SFM_READ, frames written for SFM_WRITE member in struct:SNDFILE_ 97 size_t remaining = riffSize - 4; local 100 while (remaining >= 8) { 107 remaining -= 8; 109 if (chunkSize > remaining) { 110 fprintf(stderr, "chunkSize %u > remaining %zu\n", chunkSize, remaining); 199 handle->remaining = chunkSize / handle->bytesPerFrame; 200 handle->info.frames = handle->remaining; 215 remaining -= chunkSize [all...] |
/external/chromium_org/webkit/browser/fileapi/ |
file_system_operation_context.h | 27 // Note that the remaining quota bytes (allowed_bytes_growth) may be 45 // Updates the current remaining quota. 46 // This can be called to update the remaining quota during the operation. 51 // Returns the current remaining quota. 79 // The current remaining quota, used by ObfuscatedFileUtil.
|