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

1 2 3

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
reserve.asm 6 rest 0 label
13 rest 4 label
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
reserve-err1.asm 7 rest a label
14 rest a label
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 74 String rest = lexer.getRest(); local
75 callID.setCallId(rest.trim());
  /external/oprofile/libabi/tests/
abi_test.cpp 40 vector<string> rest; local
41 popt::parse_options(argc, argv, rest);
  /external/libmtp/examples/
newplaylist.c 44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
thumb.c 52 char *rest; local
63 id = strtoul(optarg, &rest, 0);
albumart.c 54 char *rest; local
70 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
pathutils.c 65 char *rest; local
70 item_id = strtoul(path, &rest, 0);
71 // really should check contents of "rest" here...
  /external/chromium_org/net/ftp/
ftp_util_unittest.cc 126 const char* rest; member in struct:__anon13865::__anon13869
169 kTestCases[i].rest));
174 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
  /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>{});
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainUtil.java 63 String[] rest = new String[remaining]; local
64 System.arraycopy(args, 1, rest, 0, remaining);
65 parameters.add(rest);
  /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/chromium_org/third_party/boringssl/src/crypto/bio/
pair.c 154 size_t rest; local
198 rest = size;
200 assert(rest > 0);
205 assert(rest <= peer_b->len);
206 if (peer_b->offset + rest <= peer_b->size) {
207 chunk = rest;
226 assert(chunk == rest);
229 rest -= chunk;
230 } while (rest);
237 size_t rest; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-options.c 209 const char *rest; local
215 rest = skip_prefix(arg, options->long_name);
217 if (!rest)
219 if (*rest == '=')
221 if (*rest)
226 if (!rest) {
255 rest = skip_prefix(arg + 3, options->long_name);
257 if (!rest && !prefixcmp(options->long_name, arg + 3))
259 if (!rest)
262 if (*rest) {
    [all...]
  /external/ltrace/sysdeps/linux-gnu/arm/
fetch.c 239 const size_t rest = (words - i) * 4; local
240 if (rest > 0) {
241 umovebytes(proc, ctx->nsaa, data, rest);
242 ctx->nsaa += rest;
  /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/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/chromium_org/third_party/webrtc/modules/utility/source/
file_player_impl.cc 608 uint32_t rest = 1000%_frameLengthMS; local
609 _accumulatedRenderTimeMs += rest;
file_recorder_impl.cc 593 uint32_t rest = 1000 % frameLengthMS; local
594 _writtenVideoMS += rest;
  /external/chromium_org/v8/src/
fast-dtoa.cc 37 // * rest = (too_high - buffer * 10^kappa).f() * unit
47 uint64_t rest,
69 // . . . . rest
120 // Conceptually rest ~= too_high - buffer
123 DCHECK(rest <= unsafe_interval);
124 while (rest < small_distance && // Negated condition 1
125 unsafe_interval - rest >= ten_kappa && // Negated condition 2
126 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
127 small_distance - rest >= rest + ten_kappa - small_distance))
418 uint64_t rest = local
533 uint64_t rest = local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Lists.java 226 * rest} array will be reflected in the returned list. Unlike {@link
236 * @param rest an array of additional elements, possibly empty
239 public static <E> List<E> asList(@Nullable E first, E[] rest) {
240 return new OnePlusArrayList<E>(first, rest);
247 final E[] rest; field in class:Lists.OnePlusArrayList
249 OnePlusArrayList(@Nullable E first, E[] rest) {
251 this.rest = checkNotNull(rest);
254 return rest.length + 1;
259 return (index == 0) ? first : rest[index - 1]
291 final E[] rest; field in class:Lists.TwoPlusArrayList
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
memcpy.S 173 #define rest R8 /* length - prolog bytes */ define
335 rest = sub(len, star3); /* whats left after the loop */ define
338 if(p0) rest = add(rest, #16);
343 p0 = cmp.gt(rest, #16);
348 rest = add(rest, #-8); define
371 rest = kernel; define
381 p3 = cmp.eq(kernel, rest);
415 rest = add(kernel, #-1) define
    [all...]
  /external/ltrace/sysdeps/linux-gnu/ia64/
fetch.c 332 /* The rest is passed in registers and on stack. */
333 size_t rest = hfa_count * hfa_sz; local
334 return copy_aggregate_part(ctx, proc, buf, rest);
  /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...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 365 const char *rest; /* start of rest of string */ local
366 const char *tail; /* string unmatched by rest of RE */
423 rest = slow(m, sp, stp, ss, es);
424 assert(rest != NULL); /* it did match */
425 /* could the rest match the rest? */
426 tail = slow(m, rest, stop, es, stopst);
430 stp = rest - 1;
436 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]

Completed in 1719 milliseconds

1 2 3