/kernel/liteos_a/testsuites/unittest/net/socket/smoke/ |
H A D | net_socket_test_005.cpp | 39 uint32_t hl = ntohl(0x12345678); in ByteOrderTest() local 40 ICUNIT_ASSERT_EQUAL(hl, 0x78563412, hl); in ByteOrderTest() 51 uint32_t hl = ntohl(0x12345678); in ByteOrderTest() 52 ICUNIT_ASSERT_EQUAL(hl, 0x12345678, hl); in ByteOrderTest()
|
/kernel/liteos_m/components/net/test/ |
H A D | net_socket_test_005.c | 41 uint32_t hl = ntohl(0x12345678); in ByteOrderTest() local 42 ICUNIT_ASSERT_EQUAL(hl, 0x78563412, 1); in ByteOrderTest() 54 uint32_t hl = ntohl(0x12345678); in ByteOrderTest() local 55 ICUNIT_ASSERT_EQUAL(hl, 0x12345678, 5); in ByteOrderTest()
|
/kernel/linux/linux-5.10/net/sched/ |
H A D | act_csum.c | 137 int hl = ihl + jhl; in tcf_csum_skb_nextlayer() local 139 if (!pskb_may_pull(skb, ipl + ntkoff) || (ipl < hl) || in tcf_csum_skb_nextlayer() 140 skb_try_make_writable(skb, hl + ntkoff)) in tcf_csum_skb_nextlayer() 487 unsigned int hl, ixhl; in tcf_csum_ipv6() local 494 hl = sizeof(*ip6h); in tcf_csum_ipv6() 496 if (!pskb_may_pull(skb, hl + ntkoff)) in tcf_csum_ipv6() 511 if (!pskb_may_pull(skb, hl + sizeof(*ip6xh) + ntkoff)) in tcf_csum_ipv6() 513 ip6xh = (void *)(skb_network_header(skb) + hl); in tcf_csum_ipv6() 515 if (!pskb_may_pull(skb, hl + ixhl + ntkoff)) in tcf_csum_ipv6() 517 ip6xh = (void *)(skb_network_header(skb) + hl); in tcf_csum_ipv6() [all...] |
/kernel/linux/linux-6.6/drivers/nvme/target/ |
H A D | fabrics-cmd-auth.c | 119 pr_debug("%s: ctrl %d qid %d: data hl %d cvalid %d dhvlen %u\n", in nvmet_auth_reply() 121 data->hl, data->cvalid, dhvlen); in nvmet_auth_reply() 126 if (nvmet_auth_ctrl_sesskey(req, data->rval + 2 * data->hl, in nvmet_auth_reply() 131 response = kmalloc(data->hl, GFP_KERNEL); in nvmet_auth_reply() 141 if (nvmet_auth_host_hash(req, response, data->hl) < 0) { in nvmet_auth_reply() 148 if (memcmp(data->rval, response, data->hl)) { in nvmet_auth_reply() 158 req->sq->dhchap_c2 = kmemdup(data->rval + data->hl, data->hl, in nvmet_auth_reply() 164 __func__, ctrl->cntlid, req->sq->qid, data->hl, in nvmet_auth_reply() 374 data->hl in nvmet_auth_challenge() [all...] |
/kernel/linux/linux-6.6/net/sched/ |
H A D | act_csum.c | 138 int hl = ihl + jhl; in tcf_csum_skb_nextlayer() local 140 if (!pskb_may_pull(skb, ipl + ntkoff) || (ipl < hl) || in tcf_csum_skb_nextlayer() 141 skb_try_make_writable(skb, hl + ntkoff)) in tcf_csum_skb_nextlayer() 487 unsigned int hl, ixhl; in tcf_csum_ipv6() local 494 hl = sizeof(*ip6h); in tcf_csum_ipv6() 496 if (!pskb_may_pull(skb, hl + ntkoff)) in tcf_csum_ipv6() 511 if (!pskb_may_pull(skb, hl + sizeof(*ip6xh) + ntkoff)) in tcf_csum_ipv6() 513 ip6xh = (void *)(skb_network_header(skb) + hl); in tcf_csum_ipv6() 515 if (!pskb_may_pull(skb, hl + ixhl + ntkoff)) in tcf_csum_ipv6() 517 ip6xh = (void *)(skb_network_header(skb) + hl); in tcf_csum_ipv6() [all...] |
/kernel/linux/linux-5.10/net/802/ |
H A D | fddi.c | 52 int hl = FDDI_K_SNAP_HLEN; in fddi_header() local 56 hl=FDDI_K_8022_HLEN-3; in fddi_header() 57 fddi = skb_push(skb, hl); in fddi_header() 80 return hl; in fddi_header() 83 return -hl; in fddi_header()
|
/kernel/linux/linux-6.6/net/802/ |
H A D | fddi.c | 52 int hl = FDDI_K_SNAP_HLEN; in fddi_header() local 56 hl=FDDI_K_8022_HLEN-3; in fddi_header() 57 fddi = skb_push(skb, hl); in fddi_header() 80 return hl; in fddi_header() 83 return -hl; in fddi_header()
|
/kernel/linux/linux-5.10/lib/zlib_dfltcc/ |
H A D | dfltcc_inflate.c | 124 param->hl = state->whave; /* Software and hardware history formats match */ in dfltcc_inflate() 126 if (param->hl) in dfltcc_inflate() 139 state->whave = param->hl; in dfltcc_inflate() 140 state->write = (param->ho + param->hl) & ((1 << HB_BITS) - 1); in dfltcc_inflate()
|
H A D | dfltcc_deflate.c | 207 if (param->hl) in dfltcc_deflate() 271 param->hl = 0; /* Clear history */ in dfltcc_deflate()
|
H A D | dfltcc.h | 66 uint16_t hl; /* History Length */ member
|
/kernel/linux/linux-6.6/lib/zlib_dfltcc/ |
H A D | dfltcc_deflate.c | 137 param->hl = 0; in dfltcc_deflate() 163 param->hl = 0; in dfltcc_deflate() 302 param->hl = 0; /* Clear history */ in dfltcc_deflate()
|
H A D | dfltcc.h | 66 uint16_t hl; /* History Length */ member
|
H A D | dfltcc_inflate.c | 130 if (param->hl) in dfltcc_inflate()
|
/kernel/linux/linux-6.6/drivers/nvme/host/ |
H A D | auth.c | 157 size_t size = sizeof(*data) + data->hl + dhvlen; in nvme_auth_process_dhchap_challenge() 177 crypto_shash_digestsize(chap->shash_tfm) == data->hl) { in nvme_auth_process_dhchap_challenge() 201 if (crypto_shash_digestsize(chap->shash_tfm) != data->hl) { in nvme_auth_process_dhchap_challenge() 204 chap->qid, data->hl); in nvme_auth_process_dhchap_challenge() 212 chap->hash_len = data->hl; in nvme_auth_process_dhchap_challenge() 311 data->hl = chap->hash_len; in nvme_auth_set_dhchap_reply_data() 352 if (data->hl != chap->hash_len) { in nvme_auth_process_dhchap_success1() 355 chap->qid, data->hl); in nvme_auth_process_dhchap_success1() 371 if (memcmp(chap->response, data->rval, data->hl)) { in nvme_auth_process_dhchap_success1()
|
/kernel/linux/linux-5.10/arch/ia64/kernel/ |
H A D | mca_drv.c | 221 {slidx_list_t *hl = &slidx_pool.buffer[slidx_pool.cur_idx]; \ 222 hl->hdr = ptr; \ 223 list_add(&hl->list, &(sect)); \
|
/kernel/linux/linux-6.6/arch/ia64/kernel/ |
H A D | mca_drv.c | 221 {slidx_list_t *hl = &slidx_pool.buffer[slidx_pool.cur_idx]; \ 222 hl->hdr = ptr; \ 223 list_add(&hl->list, &(sect)); \
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nf_conntrack_proto_icmpv6.c | 138 u8 hl = ipv6_hdr(skb)->hop_limit; in nf_conntrack_icmpv6_redirect() local 156 if (hl != 255 || !(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) { in nf_conntrack_icmpv6_redirect()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_conntrack_proto_icmpv6.c | 137 u8 hl = ipv6_hdr(skb)->hop_limit; in nf_conntrack_icmpv6_redirect() local 155 if (hl != 255 || !(ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL)) { in nf_conntrack_icmpv6_redirect()
|
/kernel/linux/linux-6.6/drivers/cxl/core/ |
H A D | pci.c | 690 u32 hl[CXL_HEADERLOG_SIZE_U32]; in cxl_report_and_clear() local 714 header_log_copy(cxlds, hl); in cxl_report_and_clear() 715 trace_cxl_aer_uncorrectable_error(cxlds->cxlmd, status, fe, hl); in cxl_report_and_clear()
|
H A D | trace.h | 52 TP_PROTO(const struct cxl_memdev *cxlmd, u32 status, u32 fe, u32 *hl), 53 TP_ARGS(cxlmd, status, fe, hl), 72 memcpy(__entry->header_log, hl, CXL_HEADERLOG_SIZE);
|
/kernel/linux/linux-5.10/scripts/kconfig/lxdialog/ |
H A D | dialog.h | 87 int hl; /* highlight this item */ member
|
H A D | util.c | 55 dlg.dialog.hl = (h); \ 172 if (color->hl) in init_one_color()
|
/kernel/linux/linux-6.6/scripts/kconfig/lxdialog/ |
H A D | dialog.h | 71 int hl; /* highlight this item */ member
|
H A D | util.c | 55 dlg.dialog.hl = (h); \ 172 if (color->hl) in init_one_color()
|
/kernel/linux/linux-6.6/arch/xtensa/lib/ |
H A D | umulsidi3.S | 90 #define umul_aa_hl umul.aa.hl
|