HomeSort by relevance Sort by last modified time
    Searched refs:remain (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/ltrace/testsuite/ltrace.minor/
time-record.c 15 struct timespec request, remain; local
  /external/libmtp/src/
util.c 74 uint32_t remain = n; local
80 while (remain) {
83 ln = ( remain > 16 ) ? 16 : remain;
104 remain -= ln;
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
SDL_ndsaudio.c 147 int remain; local
154 remain = soundsystem->numsamples - (soundsystem->buffersize - soundsystem->soundcursor);
155 SoundMixCallback(soundsystem->mixbuffer,remain);
167 remain = soundsystem->numsamples - ((soundsystem->buffersize >> 1) - soundsystem->soundcursor);
168 SoundMixCallback(soundsystem->mixbuffer,remain);
  /frameworks/native/libs/binder/
Debug.cpp 210 long remain = length; local
238 if (remain-- > 0) {
247 if (remain > 0) {
259 remain--;
268 remain = length;
273 if (remain-- > 0) {
284 if (remain > 0) *c++ = ',';
  /external/mdnsresponder/mDNSPosix/
Identify.c 189 struct timeval now, remain = end; local
194 if (remain.tv_usec < now.tv_usec) { remain.tv_usec += 1000000; remain.tv_sec--; }
195 if (remain.tv_sec < now.tv_sec)
200 remain.tv_usec -= now.tv_usec;
201 remain.tv_sec -= now.tv_sec;
202 mDNSPosixGetFDSet(m, &nfds, &readfds, &remain);
203 result = select(nfds, &readfds, NULL, NULL, &remain);
  /external/chromium_org/third_party/icu/source/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /external/icu/icu4c/source/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 163 final String remain = (size - start > 0) ? text.substring(start) : null; local
165 return remain != null ? new String[] { remain } : null;
167 if (remain != null) {
168 list.add(remain);
  /art/runtime/gc/accounting/
space_bitmap_test.cc 142 size_t remain = heap_capacity - offset; variable
143 size_t end = offset + RoundDown(r.next() % (remain + 1), kAlignment);
  /external/chromium_org/third_party/icu/source/data/misc/
miscfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re-
  /external/chromium_org/third_party/icu/source/data/sprep/
sprepfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or
  /external/icu/icu4c/source/data/misc/
miscfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re-
  /external/icu/icu4c/source/data/sprep/
sprepfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or
  /external/libunwind/doc/
unw_regname.tex 23 therefore guaranteed to remain valid until the application terminates.
  /hardware/intel/img/hwcomposer/common/observers/
SoftVsyncObserver.cpp 22 struct timespec *remain);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_cpal.c 86 GLuint remain, i; local
93 remain = num_pixels % 2;
98 if (remain) {
  /external/mesa3d/src/mesa/main/
texcompress_cpal.c 86 GLuint remain, i; local
93 remain = num_pixels % 2;
98 if (remain) {
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 168 final int remain = DURATION_SEC - i; local
171 if (remain > 0) {
172 mStatus.setText(status + " Recording... " + remain);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 761 stack, remain, count = [], [], []
770 remain.append(value)
777 # `remain` is empty here, we have such a sublist.
778 if not remain:
782 remain[-1] = remain[-1] - 1
783 while remain[-1] == 0:
784 remain.pop()
787 if not remain: break
788 remain[-1] = remain[-1] -
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 761 stack, remain, count = [], [], []
770 remain.append(value)
777 # `remain` is empty here, we have such a sublist.
778 if not remain:
782 remain[-1] = remain[-1] - 1
783 while remain[-1] == 0:
784 remain.pop()
787 if not remain: break
788 remain[-1] = remain[-1] -
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_utility.cc 388 const ptrdiff_t remain = _ptrRTPDataEnd - ptr; local
389 if (remain < 4) {
402 if (remain < (4 + XLen)) {
  /external/qemu/distrib/libsparse/src/
sparse_read.c 361 int64_t remain = s->len; local
371 while (remain > 0) {
372 to_read = min(remain, s->block_size);
398 remain -= to_read;
  /external/valgrind/main/coregrind/m_syswrap/
syscall-mips32-linux.S 108 # TODO: this should remain, keep it just for now
  /system/core/libsparse/
sparse_read.c 361 int64_t remain = s->len; local
371 while (remain > 0) {
372 to_read = min(remain, s->block_size);
398 remain -= to_read;
  /build/tools/releasetools/
sparse_img.py 140 remain = chunk_len - (s - chunk_start)
141 this_read = min(remain, to_read)

Completed in 672 milliseconds

1 2 3 4 5