Home
last modified time | relevance | path

Searched refs:rest (Results 276 - 300 of 600) sorted by relevance

1...<<11121314151617181920>>...24

/third_party/backends/backend/
H A Dkvs20xx.c457 int rest = s->side_size - s->read - s->dummy_size; in sane_read() local
460 if (!s->scanning || !rest) in sane_read()
470 *len = max_len < rest ? max_len : rest; in sane_read()
/third_party/node/test/parallel/
H A Dtest-stream-duplex-from.js129 let rest = '';
131 const lines = (rest + chunk.toString()).split('\n');
132 rest = lines.pop();
137 yield rest;
/third_party/node/test/common/
H A Dreport.js79 function checkLoop(actual, rest, expect) {
80 actual = actual[rest.shift()];
81 if (rest.length === 0 && actual !== undefined) {
85 checkLoop(actual, rest, expect);
/third_party/python/Lib/unittest/test/testmock/
H A Dtestwith.py316 rest = h.readlines()
318 self.assertEqual(rest, ['bar\n', 'baz\n'])
324 rest = h.read()
326 self.assertEqual(rest, 'bar\nbaz\n')
/third_party/rust/crates/syn/tests/
H A Dtest_precedence.rs254 rest, in librustc_parenthesize()
259 if let StructRest::Base(rest) = rest { in librustc_parenthesize()
260 vis.visit_expr(rest); in librustc_parenthesize()
/third_party/rust/crates/rust-cexpr/src/
H A Dexpr.rs415 rest, in identifier()
418 Ok((rest, r.clone())) in identifier()
439 rest, in literal()
441 Ok((_, result)) => Ok((rest, result)), in literal()
/third_party/python/Lib/http/
H A Dcookiejar.py770 rest,
801 self._rest = copy.copy(rest)
836 args.append("rest=%s" % repr(self._rest))
1395 Tuples are name, value, standard, rest, where name and value are the
1398 domain, path and port) and rest is a dictionary containing the rest of
1414 # dictionary of other cookie-attributes (rest).
1426 rest = {}
1477 rest[k] = v
1482 cookie_tuples.append((name, value, standard, rest))
[all...]
/kernel/linux/linux-5.10/drivers/net/hamradio/
H A D6pack.c913 unsigned char checksum = 0, rest = 0; in decode_std_command() local
928 rest = sp->rx_count; in decode_std_command()
929 if (rest != 0) in decode_std_command()
930 for (i = rest; i <= 3; i++) in decode_std_command()
932 if (rest == 2) in decode_std_command()
934 else if (rest == 3) in decode_std_command()
/kernel/linux/linux-5.10/fs/ext2/
H A Dxattr.c294 size_t rest = buffer_size; in ext2_xattr_list() local
345 if (size > rest) { in ext2_xattr_list()
355 rest -= size; in ext2_xattr_list()
358 error = buffer_size - rest; /* total size */ in ext2_xattr_list()
567 size_t rest = (char *)last - (char *)here; in ext2_xattr_set() local
568 memmove((char *)here + size, here, rest); in ext2_xattr_set()
/kernel/linux/linux-6.6/fs/ext2/
H A Dxattr.c294 size_t rest = buffer_size; in ext2_xattr_list() local
344 if (size > rest) { in ext2_xattr_list()
354 rest -= size; in ext2_xattr_list()
357 error = buffer_size - rest; /* total size */ in ext2_xattr_list()
566 size_t rest = (char *)last - (char *)here; in ext2_xattr_set() local
567 memmove((char *)here + size, here, rest); in ext2_xattr_set()
/kernel/linux/linux-6.6/drivers/net/hamradio/
H A D6pack.c903 unsigned char checksum = 0, rest = 0; in decode_std_command() local
919 rest = sp->rx_count; in decode_std_command()
920 if (rest != 0) in decode_std_command()
921 for (i = rest; i <= 3; i++) in decode_std_command()
923 if (rest == 2) in decode_std_command()
925 else if (rest == 3) in decode_std_command()
/third_party/rust/crates/proc-macro2/src/
H A Dfallback.rs150 return Cursor { rest: src, off: 1 }; in get_cursor()
158 rest: src, in get_cursor()
166 Cursor { rest: src } in get_cursor()
1112 if let Ok((rest, mut literal)) = parse::literal(cursor) { in from_str()
1113 if rest.is_empty() { in from_str()
1121 hi: rest.off, in from_str()
/third_party/rust/crates/syn/src/
H A Dpat.rs168 pub rest: Option<PatRest>,
493 let mut rest = None; in pat_struct() variables
497 rest = Some(PatRest { in pat_struct()
519 rest, in pat_struct()
850 if !self.fields.empty_or_trailing() && self.rest.is_some() { in to_tokens()
853 self.rest.to_tokens(tokens); in to_tokens()
/third_party/rust/crates/bitflags/src/
H A Dlib.rs846 $(? #[$rest:ident $($restargs:tt)*])*
852 $(? #[$rest $($restargs)*])*
860 $(? #[$rest:ident $($restargs:tt)*])*
866 $(? #[$rest $($restargs)*])*
901 $(? #[$rest:ident $($restargs:tt)*])*
907 $(? #[$rest $($restargs)*])*
915 $(? #[$rest:ident $($restargs:tt)*])*
921 $(? #[$rest $($restargs)*])*
/third_party/node/benchmark/es/
H A Dspread-assign.js12 function main({ n, context, count, rest, method }) {
/third_party/curl/tests/
H A Dtest1173.pl220 my ($format, $rest) = ($1, $2);
221 if($rest !~ /\\fP/) {
/third_party/ltp/pan/cgi/
H A Dreconsile.cgi44 # an associative array. Take the rest of the input file and store
54 # advance past the header then read in the rest
65 # grab the rest and stop the while loop;
66 @rest = <F>;
78 foreach $line (@rest) {
/third_party/node/deps/npm/test/lib/commands/
H A Dhelp.js59 const { npm, ...rest } = await loadMockNpm(t, {
73 ...rest,
/third_party/node/deps/v8/src/inspector/
H A Dstring-16.h138 void appendAll(T first, R... rest) { in appendAll() argument
140 appendAll(rest...); in appendAll()
/third_party/python/Lib/
H A Dstring.py297 first, rest = _string.formatter_field_name_split(field_name)
301 # loop through the rest of the field_name, doing
303 for is_attr, i in rest:
/third_party/skia/infra/bots/recipe_modules/flavor/
H A Dios.py133 def _run_ios_script(self, script, first, *rest):
139 cmd = [full, first] + list(rest),
/third_party/rust/crates/rust-openssl/openssl-sys/src/
H A Dmacros.rs40 (@__items ($($not:meta,)*) ; ( ($($m:meta),*) ($($it:item)*) ), $($rest:tt)*) => {
46 // Recurse to emit all other items in `$rest`, and when we do so add all
49 cfg_if! { @__items ($($not,)* $($m,)*) ; $($rest)* }
/third_party/python/Lib/test/
H A Dtest_ftplib.py115 self.rest = None
240 self.rest = arg
241 self.push('350 rest ok')
245 if self.rest is not None:
246 offset = int(self.rest)
251 self.rest = None
604 for rest in (0, 10, 20):
606 self.client.retrbinary('retr', callback, rest=rest)
607 self.check_data(''.join(received), RETR_DATA[rest
[all...]
H A Dtest_grammar.py551 def v0(*rest): pass
552 def v1(a, *rest): pass
553 def v2(a, b, *rest): pass
610 def d01v(a=1, *rest): pass
617 def d11v(a, b=1, *rest): pass
621 def d21v(a, b, c=1, *rest): pass
627 def d02v(a=1, b=2, *rest): pass
634 def d12v(a, b=1, c=2, *rest): pass
642 def d22v(a, b, c=1, d=2, *rest): pass
1172 def g(): rest
[all...]
/kernel/linux/linux-5.10/drivers/s390/char/
H A Dvmur.h53 char rest[200]; member

Completed in 22 milliseconds

1...<<11121314151617181920>>...24