Searched refs:x3 (Results 1 - 9 of 9) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/ |
H A D | base64.rs | 22 output.push(BASE64_TABLE[(((chunk[0] & 0x3) << 4) | ((chunk[1] >> 4) & 0xf)) as usize]); 23 output.push(BASE64_TABLE[(((chunk[1] & 0xf) << 2) | ((chunk[2] >> 6) & 0x3)) as usize]); 26 output.push(BASE64_TABLE[(((chunk[0] & 0x3) << 4) | ((chunk[1] >> 4) & 0xf)) as usize]); 30 output.push(BASE64_TABLE[((chunk[0] & 0x3) << 4) as usize]);
|
/commonlibrary/c_utils/base/test/unittest/common/ |
H A D | utils_parcel_test.cpp | 393 int16_t x3 = 1; in ReadvecTestTwoFunc01() local 394 val3.push_back(x3); in ReadvecTestTwoFunc01() 428 uint16_t x3 = 1; in ReadvecTestTwoFunc02() local 429 val3.push_back(x3); in ReadvecTestTwoFunc02() 463 double x3 = 1; in ReadvecTestTwoFunc03() local 464 val3.push_back(x3); in ReadvecTestTwoFunc03() 517 int16_t x3 = 1; in ReadvecTestThreeFunc01() local 518 val3.push_back(x3); in ReadvecTestThreeFunc01() 552 uint16_t x3 = 1; in ReadvecTestThreeFunc02() local 553 val3.push_back(x3); in ReadvecTestThreeFunc02() 587 double x3 = 1; ReadvecTestThreeFunc03() local 645 int16_t x3 = 1; WritevecTestOneFunc01() local 684 uint16_t x3 = 1; WritevecTestOneFunc02() local 723 double x3 = 1; WritevecTestOneFunc03() local [all...] |
/commonlibrary/ets_utils/js_util_module/util/ |
H A D | js_uuid.h | 44 HEX_THREE_FLG = 0x3,
|
/commonlibrary/rust/ylong_http/ylong_http/src/h3/ |
H A D | stream.rs | 25 pub const QPACK_DECODER_STREAM_TYPE: u8 = 0x3;
|
H A D | frame.rs | 21 pub const CANCEL_PUSH_FRAME_TYPE: u64 = 0x3;
|
H A D | decoder.rs | 695 0x0 | 0x2 | 0x3 | 0x4 | 0x5 => return Err(UnsupportedSetting(key).into()), in decode_settings_payload() 764 0x3 => StreamType::QpackDecoder, in decode_type() 823 0x9B, 0x8D, 0x34, 0xCF, 0xF3, 0xF6, 0xA5, 0x23, 0x81, 0xE7, 0x1A, 0x0, 0x3F, 0x2F, 0x3, in ut_decode_stream_request_with_header()
|
/commonlibrary/rust/ylong_http/ylong_http/src/h2/ |
H A D | decoder.rs | 1579 frame_type: 0x3, in ut_decode_reset_payload()
|
H A D | encoder.rs | 983 Setting::MaxConcurrentStreams(v) => (0x3, *v), in iterate_settings_payload() 1455 Setting::MaxConcurrentStreams(v) => (0x3, *v), in ut_settings_frame_encoding()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/ |
H A D | bit.rs | 917 assert_eq!(bit.get_by_mask(Mask::new(3, 20)), 0x3); in ut_bit_get_by_mask_bit32()
|
Completed in 11 milliseconds