/external/elfutils/0.153/src/ |
findtextrel.c | 118 int remaining; local 131 (void) argp_parse (&argp, argc, argv, 0, &remaining, NULL); 149 if (remaining == argc) 153 /* Process all the remaining files. */ 154 const bool more_than_one = remaining + 1 < argc; 157 result |= process_file (argv[remaining], more_than_one); 158 while (++remaining < argc);
|
/frameworks/base/core/jni/ |
android_opengl_GLES11.cpp | 99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) 109 *remaining = (limit - position) << elementSizeShift; 305 _exceptionMessage = "remaining() < needed"; 354 _exceptionMessage = "remaining() < size < needed"; 394 _exceptionMessage = "remaining() < size < needed"; 650 _exceptionMessage = "remaining() < n < needed"; 754 _exceptionMessage = "remaining() < n < needed"; 854 _exceptionMessage = "remaining() < 1 < needed"; 941 _exceptionMessage = "remaining() < 4 < needed"; 1027 _exceptionMessage = "remaining() < 4 < needed" [all...] |
android_opengl_GLES20.cpp | 99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) 109 *remaining = (limit - position) << elementSizeShift; 305 _exceptionMessage = "remaining() < needed"; 489 _exceptionMessage = "remaining() < size < needed"; 529 _exceptionMessage = "remaining() < size < needed"; 808 _exceptionMessage = "remaining() < n < needed"; 894 _exceptionMessage = "remaining() < n < needed"; 989 _exceptionMessage = "remaining() < n < needed"; [all...] |
android_opengl_GLES10.cpp | 99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) 109 *remaining = (limit - position) << elementSizeShift; 305 _exceptionMessage = "remaining() < needed"; 484 (JNIEnv *_env, jobject _this, jint size, jint type, jint stride, jobject pointer_buf, jint remaining) { 501 (GLsizei)remaining 670 _exceptionMessage = "remaining() < n < needed"; 774 _exceptionMessage = "remaining() < count < needed"; 926 _exceptionMessage = "remaining() < needed"; 1044 _exceptionMessage = "remaining() < needed"; [all...] |
/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...] |
CharsetEncoderTest.java | 728 assertTrue(out.remaining() > 0); 743 assertTrue(out.remaining() > 0); 753 assertTrue(out.remaining() > 0); 766 assertEquals(out.remaining(), 0); 775 assertTrue(out.remaining() > 0); 785 assertEquals(out.remaining(), 0); 794 assertTrue(out.remaining() > 0); 918 assertEquals(in.remaining(), 3); 1048 char[] input = new char[in.remaining()]; 1070 int outLeft = out.remaining(); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/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...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapbMessageMms.java | 479 * remaining as plain text. 485 // We treat the remaining content as plain text. 486 StringBuilder remaining = new StringBuilder(); local 488 remaining.append(headers[i]); 490 return remaining.toString(); 645 * 3) split on boundary to split into parts (or use the remaining as a part, 651 String remaining = null; local 661 remaining = parseMmsHeaders(messageParts[0]); 663 if(remaining != null) { 664 messageBody = remaining + messageParts[1] [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
keyword_provider.cc | 169 // If somehow the cursor was before the remaining text, set it to 0, 170 // otherwise adjust it relative to the remaining text. 315 // remaining query or an extension keyword, possibly with remaining 393 // Create an edit entry of "[keyword] [remaining input]". This is helpful 394 // even when [remaining input] is empty, as the user can select the popup
|
/frameworks/base/graphics/java/android/graphics/ |
Atlas.java | 168 * The Slice algorightm divides the remaining empty space either 206 * the remaining space in two new empty cells. The split can occur 297 * Defines how the remaining empty space should be split up: 302 * Returns true if the remaining space defined by 385 // Remaining free space after packing the rectangle 389 // Split the remaining free space into two new cells
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
AnimatedStateListDrawable.java | 644 // Find the current frame and remaining time within that frame. 645 int remaining = elapsed; local 647 while (i < N && remaining >= frameTimes[i]) { 648 remaining -= frameTimes[i]; 652 // Remaining time is relative of total duration. 655 frameElapsed = remaining / (float) mTotalDuration;
|
/libcore/luni/src/main/java/java/nio/ |
DatagramChannelImpl.java | 252 receivePacket = new DatagramPacket(target.array(), target.position() + target.arrayOffset(), target.remaining()); 254 receivePacket = new DatagramPacket(new byte[target.remaining()], target.remaining()); 344 byte[] readArray = new byte[target.remaining()]; 375 int putLength = Math.min(targets[index].remaining(), left); 443 int gap = Math.min(result, source.remaining());
|
/libcore/luni/src/main/java/java/sql/ |
Timestamp.java | 440 * nanoseconds value. Strictly, this requires the remaining part of the 447 int remaining = s.length() - position; local 450 if (remaining == 0) { 455 if (remaining < 2 || remaining > 10 || s.charAt(position) != '.') { 466 for (int i = remaining - 1; i < 9; i++) {
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
drive_file_stream_reader.h | 59 // smaller than the remaining data size in the |file_reader|. 77 // The number of remaining bytes to be read. 111 // The number of bytes of remaining data (including the data not yet
|
/external/chromium_org/chrome/browser/ui/views/extensions/ |
extension_popup.cc | 131 // TODO(msw): Find any remaining crashes related to http://crbug.com/327776 150 // TODO(msw): Find any remaining crashes related to http://crbug.com/327776 163 // TODO(msw): Find any remaining crashes related to http://crbug.com/327776
|
/external/chromium_org/content/test/net/ |
url_request_slow_download_job.cc | 120 // * If there are bytes remaining in the first chunk, they are 122 // [No bytes remaining in first chunk. ] 126 // * If there are bytes remaining in the second chunk, they are filled.
|
/external/guava/guava-tests/test/com/google/common/hash/ |
AbstractStreamingHasherTest.java | 177 assertTrue(bb.remaining() >= chunkSize); 187 assertTrue(bb.remaining() > 0); 188 assertTrue(bb.remaining() < bufferSize);
|
/external/libnl/lib/ |
msg.c | 281 * check if the netlink message fits into the remaining bytes 283 * @arg remaining number of bytes remaining in message stream 285 int nlmsg_ok(const struct nlmsghdr *nlh, int remaining) 287 return (remaining >= (int)sizeof(struct nlmsghdr) && 289 nlh->nlmsg_len <= remaining); 295 * @arg remaining number of bytes remaining in message stream 298 * decrements remaining by the size of the current message. 300 struct nlmsghdr *nlmsg_next(struct nlmsghdr *nlh, int *remaining) [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
common.cpp | 77 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) 87 *remaining = (limit - position) << elementSizeShift; 283 _exceptionMessage = "remaining() < needed";
|
/hardware/intel/common/libva/va/ |
va_dec_vp8.h | 59 * it is the number of remaining bits in 'value' for decoding, range [0, 7]. 195 * partition_size[0] is remaining bytes of control partition after parsed by application. 196 * exclude current byte for the remaining bits in bool_coder_ctx.
|
/art/runtime/gc/space/ |
zygote_space.h | 32 // Returns the remaining storage in the out_map field.
|
/bionic/libc/arch-arm/bionic/ |
memcmp.S | 103 3: /* fix-up the remaining count */ 204 /* finish off the remaining bytes */ 285 /* finish off the remaining bytes */ 333 /* finish off the remaining bytes */
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
wcsncpy.c | 56 /* NUL pad the remaining n-1 bytes */
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
stpncpy.c | 48 /* NUL pad the remaining n-1 bytes */
|