HomeSort by relevance Sort by last modified time
    Searched refs:remaining (Results 1 - 25 of 1733) 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;
  /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;
  /dalvik/dx/src/com/android/dex/
Leb128.java 40 int remaining = value >> 7; local
43 while (remaining != 0) {
44 remaining >>= 7;
105 int remaining = value >>> 7; local
107 while (remaining != 0) {
109 value = remaining;
110 remaining >>>= 7;
121 int remaining = value >> 7; local
126 hasMore = (remaining != end)
127 || ((remaining & 1) != ((value >> 6) & 1))
    [all...]
  /external/turbine/java/com/google/turbine/binder/lookup/
LookupResult.java 28 * for {@code java.util.HashMap}, and the remaining nested type name {@code Entry}.
38 /** The remaining nested type names. */
39 public ImmutableList<String> remaining() { method in class:LookupResult
40 return remaining;
44 private final ImmutableList<String> remaining; field in class:LookupResult
46 public LookupResult(Symbol sym, LookupKey remaining) {
48 this.remaining =
49 remaining.hasNext() ? remaining.rest().simpleNames() : ImmutableList.<String>of();
  /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()) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
loc-4.s 1 # Hit a few remaining code-paths.
loc-5.s 1 # Hit a few remaining code-paths.
  /external/tensorflow/tensorflow/tools/graph_transforms/
transform_graph.cc 41 StringPiece remaining(transforms_string);
47 while (!remaining.empty()) {
52 Scanner(remaining).AnySpace().GetResult(&remaining, &match);
53 if (remaining.empty()) {
60 Scanner(remaining)
62 .GetResult(&remaining, &transform_name);
65 remaining.ToString().c_str());
67 if (Scanner(remaining).OneLiteral("(").GetResult(&remaining, &match))
    [all...]
  /external/tensorflow/tensorflow/core/lib/strings/
scanner_test.cc 39 StringPiece remaining, match; local
44 .GetResult(&remaining, &match));
46 EXPECT_EQ("0123", remaining.ToString());
52 .GetResult(&remaining, &match));
53 EXPECT_EQ("", remaining.ToString());
60 .GetResult(&remaining, &match));
61 EXPECT_EQ("----", remaining.ToString());
66 StringPiece remaining, match; local
71 .GetResult(&remaining, &match));
73 EXPECT_EQ("b ", remaining.ToString())
77 StringPiece remaining, match; local
86 StringPiece remaining, match; local
102 StringPiece remaining, match; local
118 StringPiece remaining, match; local
140 StringPiece remaining, match; local
167 StringPiece remaining, match; local
187 StringPiece remaining, match; local
208 StringPiece remaining, match; local
241 StringPiece remaining, match; local
258 StringPiece remaining = "rem"; local
268 StringPiece remaining = "rem"; local
    [all...]
scanner.cc 44 bool Scanner::GetResult(StringPiece* remaining, StringPiece* capture) {
48 if (remaining != nullptr) {
49 *remaining = cur_;
  /frameworks/av/media/libstagefright/timedtext/
TextDescriptions.cpp 111 size_t remaining = chunkSize - 8; local
119 if (remaining < 2) {
126 remaining -= 2;
129 if (remaining < 12) {
156 remaining -= 12;
166 if (remaining < 6) {
178 remaining -= 6;
182 if (remaining < 8) {
196 remaining -= 8;
204 if (remaining < 4)
384 size_t remaining = size - 8; local
    [all...]
  /device/generic/goldfish/include/
qemu_pipe.h 35 size_t remaining = byte_count; local
36 while (remaining > 0) {
37 ssize_t n = TEMP_FAILURE_RETRY(read(fd, p, remaining));
40 remaining -= n;
47 size_t remaining = byte_count; local
48 while (remaining > 0) {
49 ssize_t n = TEMP_FAILURE_RETRY(write(fd, p, remaining));
52 remaining -= n;
  /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...]
  /external/libese/libese/
ese_sg.c 42 uint32_t remaining = length; local
46 while (remaining && buf < src + src_cnt) {
52 uint32_t copy_len = min_u32(remaining, buf->len - start_at);
55 remaining -= copy_len;
59 return length - remaining;
66 uint32_t remaining = length; local
71 while (remaining && buf < dst + dst_cnt) {
77 uint32_t copy_len = min_u32(remaining, buf->len - start_at);
80 remaining -= copy_len;
84 return length - remaining;
    [all...]
  /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
  /cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
BusyWaitUtils.java 62 for (long remaining = timeout; remaining > 0; remaining -= POLLING_INTERVAL) {
  /external/chromium-trace/catapult/devil/devil/utils/
watchdog_timer.py 34 """Returns the remaining time of the watchdog."""
50 remaining = self.GetRemaining()
51 return remaining is not None and remaining < 0
  /external/libmojo/third_party/catapult/devil/devil/utils/
watchdog_timer.py 34 """Returns the remaining time of the watchdog."""
46 remaining = self.GetRemaining()
47 return remaining is not None and remaining < 0
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_split_tmp.h 73 * remaining = count - seg_start = first + N'' * incr.
75 * That is, remaining is implicitly trimmed.
99 const unsigned remaining = count - seg_start; local
101 if (remaining > seg_max) {
110 SEGMENT_SIMPLE(flags, start + seg_start, remaining);
111 seg_start += remaining;
121 const unsigned remaining = count - seg_start; local
123 if (remaining > seg_max) {
132 SEGMENT_LOOP(flags, start + seg_start, remaining, start);
133 seg_start += remaining;
144 const unsigned remaining = count - seg_start; local
    [all...]
  /external/google-breakpad/src/processor/
tokenize.cc 52 int remaining = max_tokens; local
58 while (token && --remaining > 0) {
60 if (remaining > 1)
65 if (remaining == 0 && (token = strtok_r(NULL, "\r\n", &save_ptr))) {
  /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...]
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferUtils.java 25 * Returns the remaining data of the provided buffer as a new byte array and advances the
29 byte[] result = new byte[buf.remaining()];
  /external/elfutils/tests/
dwfl-addr-sect.c 61 int remaining; local
63 (void) argp_parse (dwfl_standard_argp (), argc, argv, 0, &remaining, &dwfl); local
67 for (; remaining < argc; ++remaining)
70 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
71 if (endp != argv[remaining])
  /frameworks/base/core/java/android/hardware/fingerprint/
IFingerprintServiceReceiver.aidl 27 void onEnrollResult(long deviceId, int fingerId, int groupId, int remaining);
32 void onRemoved(long deviceId, int fingerId, int groupId, int remaining);
33 void onEnumerated(long deviceId, int fingerId, int groupId, int remaining);
  /hardware/interfaces/biometrics/fingerprint/2.1/
IBiometricsFingerprintClientCallback.hal 28 * @param remaining the number of remaining steps before enrolllment is complete
30 oneway onEnrollResult(uint64_t deviceId, uint32_t fingerId, uint32_t groupId, uint32_t remaining);
64 * @param remaining the number of remaining templates that will be removed.
66 oneway onRemoved(uint64_t deviceId, uint32_t fingerId, uint32_t groupId, uint32_t remaining);
73 * @param remaining the number of remaining steps before enumeration is complete
75 oneway onEnumerate(uint64_t deviceId, uint32_t fingerId, uint32_t groupId, uint32_t remaining);

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>