Lines Matching refs:trace_len
348 u32 hash, id, trace_nr, trace_len; in BPF_CALL_3() local
375 trace_len = trace_nr * sizeof(u64); in BPF_CALL_3()
377 hash = jhash2((u32 *)ips, trace_len / sizeof(u32), 0); in BPF_CALL_3()
396 trace_len = trace_nr * sizeof(struct bpf_stack_build_id); in BPF_CALL_3()
398 memcmp(bucket->data, new_bucket->data, trace_len) == 0) { in BPF_CALL_3()
408 memcmp(bucket->data, ips, trace_len) == 0) in BPF_CALL_3()
417 memcpy(new_bucket->data, ips, trace_len); in BPF_CALL_3()
516 u32 id = *(u32 *)key, trace_len; in bpf_stackmap_copy() local
525 trace_len = bucket->nr * stack_map_data_size(map); in bpf_stackmap_copy()
526 memcpy(value, bucket->data, trace_len); in bpf_stackmap_copy()
527 memset(value + trace_len, 0, map->value_size - trace_len); in bpf_stackmap_copy()