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

1 2 3 4 5 6 7 8 9

  /external/chromium/base/third_party/nspr/
prtime.cc 534 const char *rest = string; local
541 while (*rest)
549 switch (*rest)
553 (rest[1] == 'p' || rest[1] == 'P') &&
554 (rest[2] == 'r' || rest[2] == 'R'))
557 (rest[1] == 's' || rest[1] == 'S') &&
558 (rest[2] == 't' || rest[2] == 'T')
    [all...]
  /external/iproute2/ip/
routel 18 while read network rest
19 do set xx $rest
  /external/libppp/src/
timer.c 99 * need to adjust TimerList->rest (yet).
102 ticks = RESTVAL(itimer) - TimerList->rest;
106 if (ticks + t->rest >= tp->load)
108 ticks += t->rest;
113 tp->rest = tp->load - ticks;
117 "timer[%p], delta = %ld\n", tp->name, tp, t->name, t, tp->rest);
130 t->rest -= tp->rest;
164 t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */
166 t->next->rest += t->rest
239 long rest; local
    [all...]
timer.h 37 u_long rest; /* Ticks to expire */ member in struct:pppTimer
  /dalvik/vm/mterp/armv5te/
OP_BREAKPOINT.S 11 FETCH(rINST, 0) @ reload OP_BREAKPOINT + rest of inst
  /dalvik/vm/mterp/mips/
OP_BREAKPOINT.S 11 FETCH(rINST, 0) # reload OP_BREAKPOINT + rest of inst
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 74 String rest = lexer.getRest(); local
75 callID.setCallId(rest.trim());
  /external/v8/src/
fast-dtoa.cc 60 // * rest = (too_high - buffer * 10^kappa).f() * unit
70 uint64_t rest,
92 // . . . . rest
143 // Conceptually rest ~= too_high - buffer
146 ASSERT(rest <= unsafe_interval);
147 while (rest < small_distance && // Negated condition 1
148 unsafe_interval - rest >= ten_kappa && // Negated condition 2
149 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
150 small_distance - rest >= rest + ten_kappa - small_distance))
441 uint64_t rest = local
556 uint64_t rest = local
    [all...]
  /external/chromium/net/ftp/
ftp_util.cc 159 const string16& rest,
172 if (!base::StringToInt(rest, &time_exploded.year)) {
174 if (rest.length() == 5 && rest[2] == ':') {
175 if (!base::StringToInt(rest.begin(),
176 rest.begin() + 2,
180 if (!base::StringToInt(rest.begin() + 3,
181 rest.begin() + 5,
184 } else if (rest.length() == 4 && rest[1] == ':')
    [all...]
ftp_util.h 41 const string16& rest,
  /external/grub/stage2/
fsys_ffs.c 185 char *rest, ch; local
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
230 *rest = 0;
247 *rest = ch;
261 *rest = ch;
286 *(dirname = rest) = ch;
fsys_ufs2.c 209 char *rest, ch; local
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
255 *rest = 0;
268 *rest = ch;
282 *rest = ch;
307 *(dirname = rest) = ch;
fsys_minix.c 311 char * rest; local
442 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
443 rest++);
446 /* invariant: rest points to slash after the next filename component */
447 *rest = 0;
453 printf ("dirname=`%s', rest=`%s', loc=%d\n", dirname, rest, loc);
469 *rest = ch;
488 *rest = ch
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
runrc.cmd 21 parse arg name path rest
28 if rest \= '' then do
  /external/icu4c/common/
unisetspan.cpp 647 int32_t pos=spanLength, rest=length-pos; local
671 if(inc>rest) {
676 if(inc==rest) {
710 if(inc>rest || overlap<maxOverlap) {
730 rest-=maxInc;
731 if(rest==0) {
755 spanLength=spanSet.span(s+pos, rest, USET_SPAN_CONTAINED);
756 if( spanLength==rest || // Reached the end of the string, or
762 rest-=spanLength;
768 spanLength=spanOne(spanSet, s+pos, rest);
969 int32_t pos=spanLength, rest=length-pos; local
1340 int32_t pos=0, rest=length; local
1424 int32_t pos=0, rest=length; local
    [all...]
  /external/clang/test/SemaCXX/
discrim-union.cpp 27 either_impl<Ts...> rest; member in union:detail::either_impl
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
39 return decltype(rest)::index(t) + 1;
44 rest.destroy(elem - 1);
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
  /bionic/libc/tools/
genserv.py 56 rest = string.strip(m.group(4))
59 m = re_alias.match(rest)
63 rest = string.strip(m.group(2))
  /cts/tests/tests/text/src/android/text/style/cts/
LeadingMarginSpan_StandardTest.java 46 int rest = 5; local
48 Standard standard = new LeadingMarginSpan.Standard(first, rest);
50 assertEquals(rest, standard.getLeadingMargin(false));
  /external/guava/guava/src/com/google/common/collect/
ReverseNaturalOrdering.java 52 @Override public <E extends Comparable> E min(E a, E b, E c, E... rest) {
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest);
68 @Override public <E extends Comparable> E max(E a, E b, E c, E... rest) {
69 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
ReverseOrdering.java 52 @Override public <E extends T> E min(E a, E b, E c, E... rest) {
53 return forwardOrder.max(a, b, c, rest);
68 @Override public <E extends T> E max(E a, E b, E c, E... rest) {
69 return forwardOrder.min(a, b, c, rest);
  /external/mksh/src/
check.pl 456 local($type, $perm, $rest, $c, $len, $name);
462 ($type, $perm, $rest) =
464 $c = substr($rest, 0, 1);
465 $len = index($rest, $c, 1) - 1;
466 $name = substr($rest, 1, $len);
467 $rest = substr($rest, 2 + $len);
470 return undef if !&write_file($name, $rest);
484 local($ret) = symlink($rest, $name);
976 local($type, $perm, $rest, $c, $len, $name)
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p23.cpp 6 void print(T first, Ts... rest) {
8 print(rest...);
  /external/libmtp/examples/
newplaylist.c 44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
  /external/oprofile/libabi/tests/
abi_test.cpp 40 vector<string> rest; local
41 popt::parse_options(argc, argv, rest);
  /frameworks/base/core/java/android/text/style/
LeadingMarginSpan.java 100 * @param rest the indent for the remaining lines of the paragraph
102 public Standard(int first, int rest) {
104 mRest = rest;

Completed in 4097 milliseconds

1 2 3 4 5 6 7 8 9