/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/pariter/ |
H A D | filter.rs | 20 base: par_iter, in filter() 34 self.base.len() in len() 39 base: self.base.reduce(len), in reduce() 46 let (left, right) = self.base.split(); in split() 49 base: left, in split() 53 base: right, in split() 60 self.base.iter().filter(self.predicate) in iter() 65 base: P,
|
H A D | map.rs | 20 base: par_iter, in map() 27 base: P, 40 self.base.len() in len() 45 base: self.base.reduce(len), in reduce() 52 let (left, right) = self.base.split(); in split() 54 Map { base: left, map_op }, in split() 56 base: right, in split() 63 self.base.iter().map(self.map_op) in iter()
|
/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/ |
H A D | decoder.rs | 46 base: usize, 58 base: 0, 252 message.base = message.require_insert_count - delta_base.0 - 1; in decode_buffered_repr() 254 message.base = message.require_insert_count + delta_base.0; in decode_buffered_repr() 256 searcher.base = message.base; in decode_buffered_repr() 441 base: usize, 454 base: 0, in new() 477 .find_field_dynamic(self.base - index - 1) in search_indexed() 488 .find_field_dynamic(self.base in search_post_indexed() [all...] |
/commonlibrary/memory_utils/libmeminfo/src/ |
H A D | meminfo.cpp | 78 const int base = 10;
in GetPssByPid() local 79 size = strtoull(valueStr.c_str(), nullptr, base);
in GetPssByPid() 106 const int base = 10;
in GetSwapPssByPid() local 107 size = strtoull(valueStr.c_str(), nullptr, base);
in GetSwapPssByPid()
|
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/uds/ |
H A D | socket_addr.rs | 22 let base = sockaddr as *const _ as usize; in sun_path_offset() 23 path - base in sun_path_offset()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/ |
H A D | schedule_io.rs | 124 let base = Bit::from_usize(self.status.load(Acquire)); in generation() 125 base.get_by_mask(GENERATION) in generation()
|
/commonlibrary/ets_utils/js_api_module/url/ |
H A D | js_url.h | 40 BIT9 = 9, // 9:Bit 9 Set to true,The URL Can not be base
120 * @param base The input parameter is a character string.
122 URL(const std::string& input, const std::string& base);
128 * @param base The input parameter is the URL object.
130 URL(const std::string& input, const URL& base);
|
H A D | js_url.cpp | 1213 URL::URL(const std::string& input, const std::string& base)
in URL() argument 1217 std::string strBase = base;
in URL() 1263 URL::URL(const std::string& input, const URL& base)
in URL() argument 1266 UrlData baseInfo = base.urlData_;
in URL() 1267 std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)> baseflags = base.flags_;
in URL()
|
H A D | native_module_url.cpp | 69 std::string base = tempType;
in UrlStructor() local 70 object = new (std::nothrow) URL(input, base);
in UrlStructor()
|
/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/format/ |
H A D | encoder.rs | 34 base: u64, 40 pub fn new(stream_id: u64, base: u64, is_huffman: bool, table: &'a mut DynamicTable) -> Self { in new() 43 base, in new() 56 let base = self.base as usize; in get_prefix() 57 if base >= required_insert_count { in get_prefix() 58 Integer::index(0x00, base - required_insert_count, 0x7f).encode(prefix_buf); in get_prefix() 60 Integer::index(0x80, required_insert_count - base - 1, 0x7f).encode(prefix_buf); in get_prefix() 176 if index as u64 >= self.base { in indexed_dynamic_field() 177 IndexedWithPost::new(index - (self.base a in indexed_dynamic_field() [all...] |
/commonlibrary/ets_utils/js_api_module/url/test/ |
H A D | test_napi.cpp | 238 OHOS::Url::URL base("http://www.example.com"); in HWTEST_F() 239 OHOS::Url::URL url("//sca/./path/./scasa#", base); in HWTEST_F() 248 OHOS::Url::URL base("http://www.example.com"); in HWTEST_F() 249 OHOS::Url::URL url("/dire/query", base); in HWTEST_F() 258 OHOS::Url::URL base("http://www.example.com"); in HWTEST_F() 259 OHOS::Url::URL url("foo/bar//fragment", base); in HWTEST_F() 268 OHOS::Url::URL base("http://www.example.com"); in HWTEST_F() 269 OHOS::Url::URL url("/../sca/./path/./s#casa", base); in HWTEST_F() 278 OHOS::Url::URL base("http://www.example.com"); in HWTEST_F() 279 OHOS::Url::URL url("/../sca/./path/./sca?sa", base); in HWTEST_F() [all...] |
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/ |
H A D | slab.rs | 408 let base = &self.slots[0] as *const _ as usize; in index_for() 416 (slot - base) / width in index_for()
|