Home
last modified time | relevance | path

Searched refs:rest (Results 526 - 550 of 595) sorted by relevance

1...<<21222324

/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-generator.h321 void VisitRestArgumentsArray(Variable* rest);
/third_party/python/Lib/importlib/metadata/
H A D__init__.py971 name, sep, rest = filename.partition('-')
/third_party/python/Lib/distutils/
H A Dmsvc9compiler.py178 s, rest = sys.version[i:].split(" ", 1)
/kernel/linux/linux-5.10/drivers/net/usb/
H A Dhso.c914 /* Copy the rest of the bytes that are left in the in packetizeRx()
971 u32 rest = urb->actual_length % le16_to_cpu(max_packet_size); in fix_crc_bug() local
973 if (((rest == 5) || (rest == 6)) && in fix_crc_bug()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdkfd/
H A Dcwsr_trap_handler_gfx10.asm576 //save the rest 12 SGPR
684 s_mov_b32 s_save_mem_offset, (0+128*4) // for the rest VGPRs
688 s_mov_b32 s_save_mem_offset, (0+256*4) // for the rest VGPRs
/kernel/linux/linux-6.6/drivers/net/usb/
H A Dhso.c913 /* Copy the rest of the bytes that are left in the in packetizeRx()
970 u32 rest = urb->actual_length % le16_to_cpu(max_packet_size); in fix_crc_bug() local
972 if (((rest == 5) || (rest == 6)) && in fix_crc_bug()
/third_party/node/lib/internal/util/
H A Dinspect.js877 // Iterators and the rest are split to reduce checks.
1221 const rest = b.length - pos;
1222 if (rest > 3) {
1224 const maxLen = MathMin(a.length - i, rest);
/third_party/skia/src/core/
H A DSkVM.h959 bool allImm(Val id, T* imm, Rest... rest) const { in abs()
963 return this->allImm(rest...); in abs()
971 bool allUniform(Val id, Uniform* uni, Rest... rest) const { in abs()
975 return this->allUniform(rest...); in abs()
1335 SI F32 poly(F32 x, F32_or_float a, float b, Rest... rest) { in poly() argument
1336 if constexpr (sizeof...(rest) == 0) { in poly()
1339 return poly(x, x*a+b, rest...); in poly()
/third_party/python/PC/
H A Dlauncher2.c735 _shebangStartsWith(const wchar_t *buffer, int bufferLength, const wchar_t *prefix, const wchar_t **rest, int *firstArgumentLength) in _shebangStartsWith() argument
741 if (rest) { in _shebangStartsWith()
742 *rest = &buffer[prefixLength]; in _shebangStartsWith()
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsession.c1766 size_t hdr_sz, rest; in perf_session__peek_event() local
1797 rest = event->header.size - hdr_sz; in perf_session__peek_event()
1799 if (readn(fd, buf, rest) != (ssize_t)rest) in perf_session__peek_event()
/third_party/icu/icu4c/source/test/cintltst/
H A Dccapitst.c247 uint16_t rest = 0; in TestConvert() local
615 rest = (uint16_t)(((unsigned char)rest << 8) + (unsigned char)myptr[x]); in TestConvert()
616 if (rest==CodePagesSubstitutionChars[codepage_index]) in TestConvert()
/third_party/rust/crates/syn/src/gen/
H A Deq.rs643 && self.rest == other.rest in eq()
1481 && self.fields == other.fields && self.rest == other.rest in eq()
/kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/
H A Dtdc.py329 return rest
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9lpf_neon.S218 @ The rest of the calculation of flat8out is interleaved below
220 @ The rest of the calculation of flat8in is interleaved below
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DDemo.java1184 UnicodeSet rest = new UnicodeSet("[a-z]").removeAll(target); in setTransliterator()
1186 System.out.println(rest.toPattern(true)); in setTransliterator()
/third_party/skia/include/private/
H A DSkVx.h587 auto map(Fn&& fn, const Vec<N,T>& first, const Rest&... rest) { in map() argument
589 return map(std::make_index_sequence<N>{}, fn, first,rest...); in map()
/third_party/rust/crates/serde/serde/src/private/
H A Dde.rs856 let rest = de::value::SeqAccessDeserializer::new(seq); in visit_seq()
857 Ok((tag, tri!(Content::deserialize(rest)))) in visit_seq()
/third_party/python/Python/
H A DPython-ast.c243 Py_CLEAR(state->rest); in _PyAST_Fini()
341 if ((state->rest = PyUnicode_InternFromString("rest")) == NULL) return 0; in init_identifiers()
735 "rest",
1790 " | MatchMapping(expr* keys, pattern* patterns, identifier? rest)\n" in init_types()
1816 "MatchMapping(expr* keys, pattern* patterns, identifier? rest)"); in init_types()
1818 if (PyObject_SetAttr(state->MatchMapping_type, state->rest, Py_None) == -1) in init_types()
3490 identifier rest, int lineno, int col_offset, int in _PyAST_MatchMapping()
3500 p->v.MatchMapping.rest = rest; in _PyAST_MatchMapping()
3489 _PyAST_MatchMapping(asdl_expr_seq * keys, asdl_pattern_seq * patterns, identifier rest, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchMapping() argument
11458 identifier rest; obj2ast_pattern() local
[all...]
H A Dsymtable.c1760 if (p->v.MatchMapping.rest) { in symtable_visit_pattern()
1761 symtable_add_def(st, p->v.MatchMapping.rest, DEF_LOCAL, LOCATION(p)); in symtable_visit_pattern()
2019 /* Create comprehension scope for the rest */ in symtable_handle_comprehension()
2053 /* Visit the rest of the comprehension body */ in symtable_handle_comprehension()
/third_party/python/Lib/test/
H A Dtest_ast.py1748 rest='True'
1753 rest='legit'
1819 ast.MatchMapping([], [], rest="_"),
/kernel/linux/linux-5.10/tools/power/x86/turbostat/
H A Dturbostat.c641 * HIDE_LIST - hide this list of counters, show the rest [default]
642 * SHOW_LIST - show this list of counters, hide the rest
3186 struct timespec rest; in do_sleep() local
3212 /* Sleep the rest of the time */ in do_sleep()
3213 rest.tv_sec = (tout.tv_sec + tout.tv_usec / 1000000); in do_sleep()
3214 rest.tv_nsec = (tout.tv_usec % 1000000) * 1000; in do_sleep()
3215 nanosleep(&rest, NULL); in do_sleep()
/kernel/linux/linux-6.6/tools/power/x86/turbostat/
H A Dturbostat.c709 * HIDE_LIST - hide this list of counters, show the rest [default]
710 * SHOW_LIST - show this list of counters, hide the rest
3358 struct timespec rest; in do_sleep() local
3384 /* Sleep the rest of the time */ in do_sleep()
3385 rest.tv_sec = (tout.tv_sec + tout.tv_usec / 1000000); in do_sleep()
3386 rest.tv_nsec = (tout.tv_usec % 1000000) * 1000; in do_sleep()
3387 nanosleep(&rest, NULL); in do_sleep()
/kernel/linux/linux-6.6/scripts/
H A Dcheckpatch.pl3957 my $rest = $2;
3959 my $pos = pos_last_openparen($rest);
5739 my $rest = rtrim($4);
5740 if ($rest =~ /;$/) {
5742 fix_insert_line($fixlinenr + 1, "$indent\t$rest");
5910 my ($off, $dstat, $dcond, $rest);
5969 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
6077 my ($off, $dstat, $dcond, $rest);
/third_party/python/Modules/_decimal/libmpdec/
H A Dmpdecimal.c811 * Cut off the most significant digits so that the rest fits in ctx->prec.
840 * Cut off the most significant digits of a NaN payload so that the rest
2533 mpd_uint_t rnd = 0, rest = 0, word; in _mpd_get_rnd() local
2538 _mpd_divmod_pow10(&rnd, &rest, word, mpd_word_digits(word)-1); in _mpd_get_rnd()
2539 if (len > 1 && rest == 0) { in _mpd_get_rnd()
2540 rest = !_mpd_isallzero(data, len-1); in _mpd_get_rnd()
2544 rest = !_mpd_isallzero(data, len); in _mpd_get_rnd()
2547 return (rnd == 0 || rnd == 5) ? rnd + !!rest : rnd; in _mpd_get_rnd()
2735 /* scan the rest of y for digits > 1 */ in mpd_qand()
2743 /* scan the rest o in mpd_qand()
[all...]
/third_party/ffmpeg/libavutil/x86/
H A Dx86inc.asm30 ; Unlike the rest of x264, this file is available under an ISC license, as it
456 ; Use the shadow space to store XMM6 and XMM7, the rest needs stack space allocated.

Completed in 86 milliseconds

1...<<21222324