HomeSort by relevance Sort by last modified time
    Searched refs:rest (Results 26 - 50 of 142) sorted by null

12 3 4 5 6

  /external/openssl/crypto/bio/
bss_bio.c 190 size_t rest; local
233 rest = size;
235 assert(rest > 0);
240 assert(rest <= peer_b->len);
241 if (peer_b->offset + rest <= peer_b->size)
242 chunk = rest;
262 assert(chunk == rest);
265 rest -= chunk;
267 while (rest);
355 size_t rest; local
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 120 String rest = lexer.getRest(); local
122 if(rest == null || rest.length() == 0){
129 int stripLen = rest.indexOf(']');
  /external/qemu/
keymaps.c 127 const char *rest = end_of_keysym + 1; local
129 int keycode = strtol(rest, &rest2, 0);
131 if (rest && strstr(rest, "numlock")) {
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 196 ($sym,$rest) = ($1,$2);
199 $rest =~ s/[\!].*//;
200 next if $rest =~ /iscombined/; #filter out combined POS
201 if ($rest =~ /.*:PROP.*mapval\s*=\s*(\d+)/) {
  /external/stlport/src/
num_get_float.cpp 345 uint64 rest; /* Remaining guard bits */ local
402 rest = value;
407 rest = value & ((ULL(1)<< 63)-1);
412 rest = value & (((ULL(1) << lead0)-1)-1);
418 if (guard && ((value & 1) || rest) ) {
429 rest = value & ((1 << 10) - 1);
434 /* value&1 guard rest Action
442 if (((value&1)!=0) || (rest!=0)) {
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); local
537 /* value&1 guard rest Actio
599 uint64_t rest; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 345 uint64 rest; /* Remaining guard bits */ local
402 rest = value;
407 rest = value & ((ULL(1)<< 63)-1);
412 rest = value & (((ULL(1) << lead0)-1)-1);
418 if (guard && ((value & 1) || rest) ) {
429 rest = value & ((1 << 10) - 1);
434 /* value&1 guard rest Action
442 if (((value&1)!=0) || (rest!=0)) {
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); local
537 /* value&1 guard rest Actio
599 uint64_t rest; local
    [all...]
  /external/grub/stage2/
fsys_fat.c 294 char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH]; local
343 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
345 *rest = 0;
370 *rest = ch;
476 *(dirname = rest) = ch;
fsys_ext2fs.c 513 char *rest; local
697 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
698 rest++);
701 /* invariant: rest points to slash after the next filename component */
702 *rest = 0;
709 printf ("dirname=%s, rest=%s, loc=%d\n", dirname, rest, loc);
725 *rest = ch;
744 *rest = ch
    [all...]
fsys_jfs.c 275 char *ptr, *rest, ch; local
332 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
333 *rest = 0;
370 *(dirname = rest) = ch;
379 *rest = ch;
fsys_xfs.c 544 char *rest, *name, ch; local
591 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
592 *rest = 0;
608 *(dirname = rest) = ch;
617 *rest = ch;
  /external/llvm/lib/Support/
regengine.inc 303 const char *rest; /* start of rest of string */
304 const char *tail; /* string unmatched by rest of RE */
354 rest = slow(m, sp, stp, ss, es);
355 assert(rest != NULL); /* it did match */
356 /* could the rest match the rest? */
357 tail = slow(m, rest, stop, es, stopst);
361 stp = rest - 1;
367 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /bionic/libc/regex/
engine.c 298 char *rest; /* start of rest of string */ local
299 char *tail; /* string unmatched by rest of RE */
350 rest = slow(m, sp, stp, ss, es);
351 assert(rest != NULL); /* it did match */
352 /* could the rest match the rest? */
353 tail = slow(m, rest, stop, es, stopst);
357 stp = rest - 1;
363 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 298 char *rest; /* start of rest of string */ local
299 char *tail; /* string unmatched by rest of RE */
350 rest = slow(m, sp, stp, ss, es);
351 assert(rest != NULL); /* it did match */
352 /* could the rest match the rest? */
353 tail = slow(m, rest, stop, es, stopst);
357 stp = rest - 1;
363 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
BodyDescriptor.java 156 String rest; local
159 rest = null;
162 rest = headerValue.substring(main.length() + 1);
166 if (rest != null) {
167 char[] chars = rest.toCharArray();
  /cts/tests/tests/text/src/android/text/style/cts/
LeadingMarginSpan_StandardTest.java 77 int rest = 5; local
79 Standard standard = new LeadingMarginSpan.Standard(first, rest);
81 assertEquals(rest, standard.getLeadingMargin(false));
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 122 String rest = nextPart.substring(position + off); local
124 if (rest == null)
126 // logger.debug("rest = [[" + rest + "]]");
128 ContentImpl content = new ContentImpl(rest, boundary);
  /external/guava/src/com/google/common/collect/
Ordering.java 145 * @param remainingValuesInOrder the rest of the values that the returned
480 * @param a value to compare, returned if greater than or equal to the rest.
483 * @param rest values to compare
487 public <E extends T> E max(E a, E b, E c, E... rest) {
490 for (E r : rest) {
540 * @param a value to compare, returned if less than or equal to the rest.
543 * @param rest values to compare
547 public <E extends T> E min(E a, E b, E c, E... rest) {
550 for (E r : rest) {
  /external/bluetooth/glib/gio/
gmemoryinputstream.c 276 gsize offset, start, rest, size; local
295 rest = count;
297 for (; l && rest > 0; l = l->next)
300 size = MIN (rest, chunk->len - start);
302 memcpy ((guint8 *)buffer + (count - rest), chunk->data + start, size);
303 rest -= size;
  /external/icu4c/common/
filterednormalizer2.cpp 141 UnicodeString rest(second.tempSubString(prefixLimit, INT32_MAX));
143 normalize(rest, first, USET_SPAN_NOT_CONTAINED, errorCode);
145 first.append(rest);
  /external/svox/pico/lib/
picodata.c 700 picoos_int16 * restdur /* in/out, rest in ms */
704 picoos_int32 fact, rest; local
706 /* calculate rest and factor in number of frames (in PICODATA_PICODATA_PRECISION) */
707 rest = (*restdur) << (PICODATA_PRECISION - frame_duration_exp);
711 rest += fact * inout[i];
712 /* instead of rounding, we carry the rest to the next state */
713 inout[i] = rest >> PICODATA_PRECISION;
714 rest -= inout[i] << PICODATA_PRECISION;
716 (*restdur) = rest >> (PICODATA_PRECISION - frame_duration_exp);
726 picoos_int16 * restdur /* in/out, rest in ms *
730 picoos_int32 fact, rest, out, weighted_sum; local
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponseParser.java 303 String rest = readUntilEol(); local
304 if (!TextUtils.isEmpty(rest)) {
305 // The rest is free-form text.
306 responseToDestroy.add(new ImapSimpleString(rest));
  /external/libffi/src/powerpc/
ffi.c 426 we use GPR registers, then continues at rest. */
429 valp rest; local
458 rest.ul = stack + 6 + NUM_GPR_ARG_REGISTERS64;
484 next_arg.ul = rest.ul;
495 next_arg.ul = rest.ul;
507 next_arg.ul = rest.ul;
514 next_arg.ul = rest.ul;
529 memcpy (rest.c, *p_argv.c + first, (*ptr)->size - first);
530 next_arg.c = rest.c + words * 8 - first;
544 next_arg.ul = rest.ul
    [all...]
  /external/bluetooth/glib/glib/
gtestutils.c 1162 gchar *rest, *old_name = test_run_name; local
1223 const char *rest, *path = test_paths->data; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 168 size_t rest = buf->Length() - length_; local
169 while (buf->Length() > rest) {
183 if (buf->Length() != rest) {
185 LOG(LERROR) << "wrong message length (" << rest << " != " << buf->Length()
  /external/icu4c/tools/genpname/
gensvpa.pl 63 ($script, $t, $name, $rest) = split(/;/,$_,4);

Completed in 407 milliseconds

12 3 4 5 6