Lines Matching refs:input
456 uint32_t input[HAL_FST_HASH_KEY_SIZE_WORDS]; in hal_flow_toeplitz_hash() local
459 qdf_mem_zero(input, HAL_FST_HASH_KEY_SIZE_BYTES); in hal_flow_toeplitz_hash()
460 *(uint32_t *)&input[0] = qdf_htonl(flow->tuple_info.src_ip_127_96); in hal_flow_toeplitz_hash()
461 *(uint32_t *)&input[1] = qdf_htonl(flow->tuple_info.src_ip_95_64); in hal_flow_toeplitz_hash()
462 *(uint32_t *)&input[2] = qdf_htonl(flow->tuple_info.src_ip_63_32); in hal_flow_toeplitz_hash()
463 *(uint32_t *)&input[3] = qdf_htonl(flow->tuple_info.src_ip_31_0); in hal_flow_toeplitz_hash()
464 *(uint32_t *)&input[4] = qdf_htonl(flow->tuple_info.dest_ip_127_96); in hal_flow_toeplitz_hash()
465 *(uint32_t *)&input[5] = qdf_htonl(flow->tuple_info.dest_ip_95_64); in hal_flow_toeplitz_hash()
466 *(uint32_t *)&input[6] = qdf_htonl(flow->tuple_info.dest_ip_63_32); in hal_flow_toeplitz_hash()
467 *(uint32_t *)&input[7] = qdf_htonl(flow->tuple_info.dest_ip_31_0); in hal_flow_toeplitz_hash()
468 *(uint32_t *)&input[8] = (flow->tuple_info.dest_port << 16) | in hal_flow_toeplitz_hash()
470 *(uint32_t *)&input[9] = flow->tuple_info.l4_protocol; in hal_flow_toeplitz_hash()
472 tuple = (uint8_t *)input; in hal_flow_toeplitz_hash()
474 tuple, sizeof(input)); in hal_flow_toeplitz_hash()