• Home
  • Raw
  • Download

Lines Matching refs:value

24 	u64 value = 0;  in dccp_decode_value_var()  local
27 value += ((u64)*bf++) << 40; in dccp_decode_value_var()
29 value += ((u64)*bf++) << 32; in dccp_decode_value_var()
31 value += ((u64)*bf++) << 24; in dccp_decode_value_var()
33 value += ((u64)*bf++) << 16; in dccp_decode_value_var()
35 value += ((u64)*bf++) << 8; in dccp_decode_value_var()
37 value += *bf; in dccp_decode_value_var()
39 return value; in dccp_decode_value_var()
59 unsigned char *uninitialized_var(value); in dccp_parse_options()
71 value = NULL; in dccp_parse_options()
86 value = opt_ptr; in dccp_parse_options()
115 opt_recv->dccpor_ndp = dccp_decode_value_var(value, len); in dccp_parse_options()
125 *value, value + 1, len - 1); in dccp_parse_options()
137 opt_val = get_unaligned((__be32 *)value); in dccp_parse_options()
162 opt_val = get_unaligned((__be32 *)value); in dccp_parse_options()
172 value += 4; in dccp_parse_options()
180 __be16 opt_val2 = get_unaligned((__be16 *)value); in dccp_parse_options()
183 opt_val = get_unaligned((__be32 *)value); in dccp_parse_options()
198 __be16 opt_val2 = get_unaligned((__be16 *)value); in dccp_parse_options()
201 opt_val = get_unaligned((__be32 *)value); in dccp_parse_options()
215 pkt_type, opt, value, len)) in dccp_parse_options()
230 pkt_type, opt, value, len)) in dccp_parse_options()
258 DCCP_SKB_CB(skb)->dccpd_reset_data[1] = len > 0 ? value[0] : 0; in dccp_parse_options()
259 DCCP_SKB_CB(skb)->dccpd_reset_data[2] = len > 1 ? value[1] : 0; in dccp_parse_options()
265 void dccp_encode_value_var(const u64 value, u8 *to, const u8 len) in dccp_encode_value_var() argument
268 *to++ = (value & 0xFF0000000000ull) >> 40; in dccp_encode_value_var()
270 *to++ = (value & 0xFF00000000ull) >> 32; in dccp_encode_value_var()
272 *to++ = (value & 0xFF000000) >> 24; in dccp_encode_value_var()
274 *to++ = (value & 0xFF0000) >> 16; in dccp_encode_value_var()
276 *to++ = (value & 0xFF00) >> 8; in dccp_encode_value_var()
278 *to++ = (value & 0xFF); in dccp_encode_value_var()
289 const void *value, const unsigned char len) in dccp_insert_option() argument
302 memcpy(to, value, len); in dccp_insert_option()