Home
last modified time | relevance | path

Searched refs:rest (Results 401 - 425 of 595) sorted by relevance

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

/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dlayout.h95 // array of `T` is aligned to `N` (the rest of the elements follow without
199 // array of `T` is aligned to `N` (the rest of the elements follow without
290 constexpr size_t Max(size_t a, size_t b, Ts... rest) { in Max() argument
291 return adl_barrier::Max(b < a ? a : b, rest...); in Max()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Dextension.h343 FormatConversionCharSet a, CharSet... rest) { in FormatConversionCharSetUnion()
346 static_cast<uint64_t>(FormatConversionCharSetUnion(rest...))); in FormatConversionCharSetUnion()
342 FormatConversionCharSetUnion( FormatConversionCharSet a, CharSet... rest) FormatConversionCharSetUnion() argument
/third_party/skia/fuzz/
H A DFuzzCommon.cpp20 static void fuzz_nice_float(Fuzz* fuzz, float* f, Args... rest) { in fuzz_nice_float() argument
22 fuzz_nice_float(fuzz, rest...); in fuzz_nice_float()
/third_party/rust/crates/syn/src/
H A Dlib.rs40 //! time for all the rest.
995 let rest = whitespace::skip(&content[2..]); in parse_file()
996 if !rest.starts_with('[') { in parse_file()
H A Ddata.rs212 Some((_inside, _span, rest)) => Ok((true, rest)),
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dinterval.rs297 let (last, rest) = self.ranges.split_last_mut().unwrap(); in canonicalize()
298 if let Some(union) = last.union(&rest[oldi]) { in canonicalize()
/third_party/alsa-utils/aplay/
H A Daplay.c968 * Test, if it is a .VOC file and return >=0 if ok (this is the length of rest)
2424 /* first we waste the rest of header, ugly but we don't need seek */
2448 /* move the rest of buffer to pos 0 and fill the buf up */
3257 off_t count, rest; /* number of bytes to capture */ local
3315 rest = count;
3316 if (rest > fmt_rec_table[file_type].max_filesize)
3317 rest = fmt_rec_table[file_type].max_filesize;
3318 if (max_file_size && (rest > max_file_size))
3319 rest = max_file_size;
3323 fmt_rec_table[file_type].start(fd, rest);
[all...]
/third_party/ltp/testcases/kernel/mce-test/stress/
H A Dhwpoison.sh535 local rest=0
544 rest=`expr $g_time_e - $cur`
545 let "percent= ($g_duration - $rest) * 100 / $g_duration"
/third_party/lwip/src/core/
H A Dpbuf.c1138 * in *rest.
1145 * @param rest pointer to store the remainder (after the first 64K)
1147 void pbuf_split_64k(struct pbuf *p, struct pbuf **rest) in pbuf_split_64k() argument
1149 *rest = NULL; in pbuf_split_64k()
1176 /* tot_len field in rest does not need modifications */ in pbuf_split_64k()
1178 *rest = r; in pbuf_split_64k()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser_test.cc110 StringPiece rest = json.substr(split); in RunTest() local
111 GOOGLE_LOG(INFO) << "Testing split: " << first << "><" << rest; in RunTest() local
114 result = parser.Parse(rest); in RunTest()
583 StringPiece str = "\"Forgot the rest of i"; in TEST_F()
590 StringPiece str = "\"Forgot the rest of \\"; in TEST_F()
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
H A Ddib0090.c172 u32 rest; member
863 u16 rest; in slopes_to_scale() local
867 rest = slopes[i].range; in slopes_to_scale()
869 rest = val; in slopes_to_scale()
870 ret += (rest * slopes[i].slope) / slopes[i].range; in slopes_to_scale()
871 val -= rest; in slopes_to_scale()
2138 if (state->rest == 0 || state->identity.in_soc) { /* Just for 8090P SOCS where auto captrim HW bug : TO CHECK IN ACI for SOCS !!! if 400 for 8090p SOC => tune issue !!! */ in dib0090_captrim_search()
2382 state->rest = Rest; in dib0090_tune()
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
H A Ddib0090.c172 u32 rest; member
863 u16 rest; in slopes_to_scale() local
867 rest = slopes[i].range; in slopes_to_scale()
869 rest = val; in slopes_to_scale()
870 ret += (rest * slopes[i].slope) / slopes[i].range; in slopes_to_scale()
871 val -= rest; in slopes_to_scale()
2140 if (state->rest == 0 || state->identity.in_soc) { /* Just for 8090P SOCS where auto captrim HW bug : TO CHECK IN ACI for SOCS !!! if 400 for 8090p SOC => tune issue !!! */ in dib0090_captrim_search()
2384 state->rest = Rest; in dib0090_tune()
/third_party/typescript/tests/baselines/reference/
H A DunderscoreTest1.js134 rest(index?: number): T[];
294 rest(index?: number): ChainedArray<T>;
516 rest<T>(list: T[], index?: number): T[];
714 _.rest([5, 4, 3, 2, 1]);
760 var log = _.bind((message?: string, ...rest: string[]) => { }, Date);
942 _.rest([5, 4, 3, 2, 1]);
982 var rest = [];
984 rest[_i - 1] = arguments[_i];
/kernel/linux/linux-5.10/drivers/net/ethernet/aquantia/atlantic/
H A Daq_ptp.c433 u32 rest = 0; in aq_ptp_pps_pin_configure() local
440 div_u64_rem(start, NSEC_PER_SEC, &rest); in aq_ptp_pps_pin_configure()
442 start = on ? start - rest + NSEC_PER_SEC * in aq_ptp_pps_pin_configure()
443 (rest > 990000000LL ? 2 : 1) : 0; in aq_ptp_pps_pin_configure()
/kernel/linux/linux-6.6/drivers/net/ethernet/aquantia/atlantic/
H A Daq_ptp.c433 u32 rest = 0; in aq_ptp_pps_pin_configure() local
440 div_u64_rem(start, NSEC_PER_SEC, &rest); in aq_ptp_pps_pin_configure()
442 start = on ? start - rest + NSEC_PER_SEC * in aq_ptp_pps_pin_configure()
443 (rest > 990000000LL ? 2 : 1) : 0; in aq_ptp_pps_pin_configure()
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dparams.c830 * is 4, the last fragment can be bigger than the rest only if in mlx5e_build_rq_frags_info()
892 * so we get a filler cqe for the rest of the reservation. in mlx5e_shampo_get_log_cq_size()
1132 int max_num_of_umr_per_wqe, max_hd_per_wqe, max_klm_per_umr, rest; in mlx5e_shampo_icosq_sz() local
1140 rest = max_hd_per_wqe % max_klm_per_umr; in mlx5e_shampo_icosq_sz()
1142 if (rest) in mlx5e_shampo_icosq_sz()
1143 wqebbs += MLX5E_KLM_UMR_WQEBBS(rest); in mlx5e_shampo_icosq_sz()
/third_party/icu/icu4c/source/common/
H A Dutrie2_builder.cpp747 int32_t block, rest, repeatBlock; in utrie2_setRange32() local
793 rest=limit&UTRIE2_DATA_MASK; in utrie2_setRange32()
873 if(rest>0) { in utrie2_setRange32()
881 fillBlock(newTrie->data+block, 0, rest, value, newTrie->initialValue, overwrite); in utrie2_setRange32()
/third_party/icu/icu4c/source/i18n/
H A Dalphaindex.cpp379 UChar rest = current.charAt(BASE_LENGTH); in fixLabel() local
380 if (0x2800 < rest && rest <= 0x28FF) { // stroke count in fixLabel()
381 int32_t count = rest-0x2800; in fixLabel()
/third_party/node/lib/
H A Drepl.js830 function _parseREPLKeyword(keyword, rest) {
833 ReflectApply(cmd.action, this, [rest]);
914 const rest = matches && matches[2];
915 if (ReflectApply(_parseREPLKeyword, self, [keyword, rest]) === true) {
/third_party/node/deps/icu-small/source/i18n/
H A Dalphaindex.cpp379 char16_t rest = current.charAt(BASE_LENGTH); in fixLabel() local
380 if (0x2800 < rest && rest <= 0x28FF) { // stroke count in fixLabel()
381 int32_t count = rest-0x2800; in fixLabel()
/third_party/node/deps/icu-small/source/common/
H A Dutrie2_builder.cpp747 int32_t block, rest, repeatBlock; in utrie2_setRange32() local
793 rest=limit&UTRIE2_DATA_MASK; in utrie2_setRange32()
873 if(rest>0) { in utrie2_setRange32()
881 fillBlock(newTrie->data+block, 0, rest, value, newTrie->initialValue, overwrite); in utrie2_setRange32()
/third_party/python/Lib/importlib/
H A D_bootstrap_external.py464 base, sep, rest = tail.rpartition('.')
468 almost_filename = ''.join([(base if base else rest), sep, tag])
557 rest, _, extension = bytecode_path.rpartition('.')
558 if not rest or extension.lower()[-3:-1] != 'py':
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dalphaindex.cpp378 UChar rest = current.charAt(BASE_LENGTH); in fixLabel() local
379 if (0x2800 < rest && rest <= 0x28FF) { // stroke count in fixLabel()
380 int32_t count = rest-0x2800; in fixLabel()
/third_party/skia/third_party/externals/icu/source/common/
H A Dutrie2_builder.cpp747 int32_t block, rest, repeatBlock; in utrie2_setRange32() local
793 rest=limit&UTRIE2_DATA_MASK; in utrie2_setRange32()
873 if(rest>0) { in utrie2_setRange32()
881 fillBlock(newTrie->data+block, 0, rest, value, newTrie->initialValue, overwrite); in utrie2_setRange32()
/third_party/mesa3d/src/intel/vulkan/
H A Danv_allocator.c997 uint32_t rest = chunk_size - nblocks * divisor; in anv_state_pool_return_chunk() local
1005 uint32_t offset = chunk_offset + rest; in anv_state_pool_return_chunk()
1009 chunk_size = rest; in anv_state_pool_return_chunk()
1022 rest = chunk_size - nblocks * divisor; in anv_state_pool_return_chunk()
1024 anv_state_pool_return_blocks(pool, chunk_offset + rest, in anv_state_pool_return_chunk()
1026 chunk_size = rest; in anv_state_pool_return_chunk()

Completed in 74 milliseconds

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