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

<<11121314151617181920>>

  /external/zlib/src/
adler32.c 116 /* do remaining bytes (less than NMAX, still just one modulo) */
117 if (len) { /* avoid modulos if none remaining */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.h 46 Int Nr; /*number of P frames remaining for encoding.*/
47 Int Rr; /*number of bits remaining for encoding this sequence (or segment).*/
  /frameworks/base/core/java/android/service/fingerprint/
FingerprintManager.java 113 public void onEnrollResult(int fingerprintId, int remaining) {
114 mHandler.obtainMessage(MSG_ENROLL_RESULT, fingerprintId, remaining).sendToTarget();
  /frameworks/base/core/java/com/android/internal/widget/
TextProgressBar.java 145 int remaining = (int) (mDurationBase - now); local
146 mProgressBar.setProgress(mDuration - remaining);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 46 * top-left corner (remaining pairs correspond clockwise).
54 * top-left corner (remaining pairs correspond clockwise).
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSimPinView.java 159 private Dialog getSimRemainingAttemptsDialog(int remaining) {
160 String msg = getPinPasswordErrorMessage(remaining);
  /frameworks/rs/
rsObjectBase.cpp 230 ALOGV("Objects remaining.");
252 ALOGV("Objects remaining.");
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 173 outEnd = out.remaining();
189 inEnd = in.remaining();
  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 151 int remaining = available - acquires; local
152 if (remaining < 0 ||
153 compareAndSetState(available, remaining))
154 return remaining;
219 int remaining = available - acquires; local
220 if (remaining < 0 ||
221 compareAndSetState(available, remaining))
222 return remaining;
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 165 if (input.remaining() == 0) {
177 if (output.remaining() != output.capacity()) {
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_hook.cpp 43 int32_t remaining = dst->outStream->getBufferSize() - dst->mgr.free_in_buffer; local
44 if (dst->outStream->write(remaining, 0) != J_SUCCESS) {
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessenger.java 81 // Send remaining fragments.
149 // Remaining fragments
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFile.java 114 final int len = dest.remaining();
151 final long lastByte = offset + srcBuf.remaining();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 113 int toRead = dest.remaining();
131 int toWrite = src.remaining();
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 203 int remaining
217 pointer.remaining()
776 int remaining
788 pointer.remaining()
968 int remaining
982 pointer.remaining()
1113 int remaining
1127 pointer.remaining()
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
keyword_provider_unittest.cc 225 // Exact keyword matches with remaining text should return nothing.
231 // Exact keyword matches with remaining text when the keyword is an
302 // Cursor before the first character of the remaining text.
307 // Trailing space without remaining text, cursor in the middle.
309 // Trailing space without remaining text, cursor at the end.
  /external/chromium_org/chrome/browser/resources/cryptotoken/
llhidgnubby.js 86 var remaining = [];
92 remaining.push(client);
99 if (changes) this.clients = remaining;
120 * @return {number} The number of remaining listeners for this device, or -1
121 * Returns number of remaining listeners for this device.
llusbgnubby.js 95 var remaining = [];
101 remaining.push(client);
108 if (changes) this.clients = remaining;
189 * @return {number} The number of remaining listeners for this device, or -1
190 * Returns number of remaining listeners for this device.
  /external/elfutils/0.153/libdw/
libdwP.h 196 size_t remaining; member in struct:Dwarf::libdw_memblock
255 /* The remaining bit fields are not flags, but hold values presumed to be
369 type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\
373 if (unlikely (_tail->remaining < _required + _padding)) \
379 _tail->remaining -= _required; \
  /external/elfutils/0.153/src/
addr2line.c 129 int remaining; local
151 (void) argp_parse (&argp, argc, argv, 0, &remaining, &dwfl);
156 if (remaining == argc)
176 result = handle_address (argv[remaining], dwfl);
177 while (++remaining < argc);
  /external/wpa_supplicant_8/src/utils/
eloop.h 202 * @remaining: Time left on the cancelled timer
206 * eloop_register_timeout() and return the remaining time left.
210 struct os_reltime *remaining);
236 * deplete the timeout if remaining time is more than the requested time.
253 * replenish the timeout if remaining time is less than the requested time.
  /frameworks/base/core/jni/
android_opengl_GLES10Ext.cpp 99 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset)
109 *remaining = (limit - position) << elementSizeShift;
305 _exceptionMessage = "remaining() < needed";
429 _exceptionMessage = "remaining() < 16 < needed";
436 _exceptionMessage = "remaining() < 16 < needed";
  /system/core/adb/
transport.c 943 size_t len, remaining = bufsize; local
945 len = snprintf(buf, remaining, "%-22s %s", serial, statename(t));
946 remaining -= len;
949 add_qual(&buf, &remaining, " ", t->devpath, 0);
950 add_qual(&buf, &remaining, " product:", t->product, 0);
951 add_qual(&buf, &remaining, " model:", t->model, 1);
952 add_qual(&buf, &remaining, " device:", t->device, 0);
954 len = snprintf(buf, remaining, "\n");
955 remaining -= len;
957 return bufsize - remaining;
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py 94 remaining = length - offset
96 if remaining <= 0:
102 if remaining < 4:
108 if remaining < 3:
114 if remaining < 2:
137 remaining = len(data) - offset
138 if remaining < size_of_size:
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_eval.c 255 /* remaining linear de Casteljau steps until the second last step */
291 /* remaining linear de Casteljau steps until the second last step */
323 /* remaining bilinear de Casteljau steps until the second last step */
355 /* remaining bilinear de Casteljau steps until the second last step */
378 /* remaining linear de Casteljau steps until the second last step */
410 /* remaining bilinear de Casteljau steps until the second last step */
433 /* remaining linear de Casteljau steps until the second last step */

Completed in 550 milliseconds

<<11121314151617181920>>