Symbol: lfd
arch/powerpc/include/asm/ppc_asm.h
102
#define REST_FPR(n, base) lfd n,8*TS_FPRWIDTH*(n)(base)
arch/powerpc/math-emu/math.c
243
case LFD: func = lfd; type = D; break;
arch/powerpc/math-emu/math.c
244
case LFDU: func = lfd; type = DU; break;
arch/powerpc/math-emu/math.c
254
case LFDX: func = lfd; type = XE; break;
arch/powerpc/math-emu/math.c
255
case LFDUX: func = lfd; type = XEU; break;
arch/powerpc/math-emu/math.c
62
FLOATFUNC(lfd);
drivers/gpu/drm/xe/xe_guc_log.c
268
static inline int xe_guc_log_add_lfd_header(struct guc_lfd_data *lfd)
drivers/gpu/drm/xe/xe_guc_log.c
270
lfd->header = FIELD_PREP_CONST(GUC_LFD_DATA_HEADER_MASK_MAGIC, GUC_LFD_DATA_HEADER_MAGIC);
drivers/gpu/drm/xe/xe_guc_log.c
277
struct guc_lfd_data lfd;
drivers/gpu/drm/xe/xe_guc_log.c
280
len = xe_guc_log_add_lfd_header(&lfd);
drivers/gpu/drm/xe/xe_guc_log.c
281
lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, type);
drivers/gpu/drm/xe/xe_guc_log.c
283
lfd.data_count = DIV_ROUND_UP(data_len, sizeof(u32));
drivers/gpu/drm/xe/xe_guc_log.c
284
lfd_output_binary(p, (char *)&lfd, len);
drivers/gpu/drm/xe/xe_guc_log.c
287
len += lfd.data_count * sizeof(u32);
drivers/gpu/drm/xe/xe_guc_log.c
306
if (lic_lfd_type_map[i].lfd == lfd_type)
drivers/gpu/drm/xe/xe_guc_log.c
324
struct guc_lfd_data lfd;
drivers/gpu/drm/xe/xe_guc_log.c
329
len = xe_guc_log_add_lfd_header(&lfd);
drivers/gpu/drm/xe/xe_guc_log.c
330
lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_OS_ID);
drivers/gpu/drm/xe/xe_guc_log.c
339
lfd.data_count = DIV_ROUND_UP(section_len + info_len, sizeof(u32));
drivers/gpu/drm/xe/xe_guc_log.c
340
lfd_output_binary(p, (char *)&lfd, len);
drivers/gpu/drm/xe/xe_guc_log.c
345
section_len = lfd.data_count * sizeof(u32) - section_len - info_len;
drivers/gpu/drm/xe/xe_guc_log.c
349
len += lfd.data_count * sizeof(u32);
drivers/gpu/drm/xe/xe_guc_log.c
458
struct guc_lfd_data lfd;
drivers/gpu/drm/xe/xe_guc_log.c
468
size = xe_guc_log_add_lfd_header(&lfd);
drivers/gpu/drm/xe/xe_guc_log.c
469
lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_LOG_EVENTS_BUFFER);
drivers/gpu/drm/xe/xe_guc_log.c
480
lfd.data_count = DIV_ROUND_UP(data_len, sizeof(u32));
drivers/gpu/drm/xe/xe_guc_log.c
483
lfd_output_binary(p, (char *)&lfd, size);
drivers/gpu/drm/xe/xe_guc_log.c
530
struct guc_lfd_data lfd;
drivers/gpu/drm/xe/xe_guc_log.c
532
size = xe_guc_log_add_lfd_header(&lfd);
drivers/gpu/drm/xe/xe_guc_log.c
533
lfd.header |= FIELD_PREP(GUC_LFD_DATA_HEADER_MASK_TYPE, GUC_LFD_TYPE_FW_CRASH_DUMP);
drivers/gpu/drm/xe/xe_guc_log.c
535
lfd.data_count = DIV_ROUND_UP(entry->buf_size, sizeof(u32));
drivers/gpu/drm/xe/xe_guc_log.c
537
lfd_output_binary(p, (char *)&lfd, size);
drivers/gpu/drm/xe/xe_guc_log.c
86
u32 lfd;
tools/gpio/gpio-event-mon.c
132
if (close(lfd) == -1)
tools/gpio/gpio-event-mon.c
36
int cfd, lfd;
tools/gpio/gpio-event-mon.c
56
lfd = ret;
tools/gpio/gpio-event-mon.c
63
ret = gpiotools_get_values(lfd, &values);
tools/gpio/gpio-event-mon.c
93
ret = read(lfd, &event, sizeof(event));
tools/testing/selftests/bpf/network_helpers.c
726
int send_recv_data(int lfd, int fd, uint32_t total_bytes)
tools/testing/selftests/bpf/network_helpers.c
730
.fd = lfd,
tools/testing/selftests/bpf/network_helpers.h
101
int send_recv_data(int lfd, int fd, uint32_t total_bytes);
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
149
int lfd = -1, fd = -1, tmp_stg, err;
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
164
if (!start_test(NULL, &opts, &cli_opts, &lfd, &fd))
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
172
ASSERT_OK(send_recv_data(lfd, fd, total_bytes), "send_recv_data");
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
178
if (lfd != -1)
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
179
close(lfd);
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
261
int err, lfd = -1, cli_fd = -1, srv_fd = -1;
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
292
if (!start_test("::1", &srv_opts, &cli_opts, &lfd, &cli_fd))
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
295
srv_fd = accept(lfd, NULL, 0);
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
313
if (lfd != -1)
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
314
close(lfd);
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
68
int lfd = -1, fd = -1;
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
70
if (!start_test(NULL, opts, opts, &lfd, &fd))
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
73
ASSERT_OK(send_recv_data(lfd, fd, total_bytes), "send_recv_data");
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
76
if (lfd != -1)
tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
77
close(lfd);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
119
int opt, ret, cfd, lfd;
tools/testing/selftests/gpio/gpio-mockup-cdev.c
175
lfd = request_line_v1(cfd, offset, flags_v1, val);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
177
lfd = request_line_v2(cfd, offset, flags_v2, val);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
181
if (lfd < 0) {
tools/testing/selftests/gpio/gpio-mockup-cdev.c
182
fprintf(stderr, "Failed to request %s:%d: %s\n", chip, offset, strerror(-lfd));
tools/testing/selftests/gpio/gpio-mockup-cdev.c
183
return lfd;
tools/testing/selftests/gpio/gpio-mockup-cdev.c
190
ret = get_value_v1(lfd);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
192
ret = get_value_v2(lfd);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
195
close(lfd);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
46
static int get_value_v2(int lfd)
tools/testing/selftests/gpio/gpio-mockup-cdev.c
53
ret = ioctl(lfd, GPIO_V2_LINE_GET_VALUES_IOCTL, &vals);
tools/testing/selftests/gpio/gpio-mockup-cdev.c
79
static int get_value_v1(int lfd)
tools/testing/selftests/gpio/gpio-mockup-cdev.c
85
ret = ioctl(lfd, GPIOHANDLE_GET_LINE_VALUES_IOCTL, &vals);
tools/testing/selftests/powerpc/alignment/alignment_handler.c
121
#define STORE_FLOAT_DFORM_TEST(op) TEST(op, lfd, op, DFORM, 0, 0)
tools/testing/selftests/powerpc/alignment/alignment_handler.c
535
LOAD_FLOAT_DFORM_TEST(lfd);
tools/testing/selftests/powerpc/include/fpu_asm.h
31
lfd f31,(stack_size + STACK_FRAME_MIN_SIZE)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
32
lfd f30,(stack_size + STACK_FRAME_MIN_SIZE - 8)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
33
lfd f29,(stack_size + STACK_FRAME_MIN_SIZE - 16)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
34
lfd f28,(stack_size + STACK_FRAME_MIN_SIZE - 24)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
35
lfd f27,(stack_size + STACK_FRAME_MIN_SIZE - 32)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
36
lfd f26,(stack_size + STACK_FRAME_MIN_SIZE - 40)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
37
lfd f25,(stack_size + STACK_FRAME_MIN_SIZE - 48)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
38
lfd f24,(stack_size + STACK_FRAME_MIN_SIZE - 56)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
39
lfd f23,(stack_size + STACK_FRAME_MIN_SIZE - 64)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
40
lfd f22,(stack_size + STACK_FRAME_MIN_SIZE - 72)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
41
lfd f21,(stack_size + STACK_FRAME_MIN_SIZE - 80)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
42
lfd f20,(stack_size + STACK_FRAME_MIN_SIZE - 88)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
43
lfd f19,(stack_size + STACK_FRAME_MIN_SIZE - 96)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
44
lfd f18,(stack_size + STACK_FRAME_MIN_SIZE - 104)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
45
lfd f17,(stack_size + STACK_FRAME_MIN_SIZE - 112)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
46
lfd f16,(stack_size + STACK_FRAME_MIN_SIZE - 120)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
47
lfd f15,(stack_size + STACK_FRAME_MIN_SIZE - 128)(%r1); \
tools/testing/selftests/powerpc/include/fpu_asm.h
48
lfd f14,(stack_size + STACK_FRAME_MIN_SIZE - 136)(%r1);
tools/testing/selftests/powerpc/include/fpu_asm.h
55
lfd f14,0(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
56
lfd f15,8(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
57
lfd f16,16(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
58
lfd f17,24(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
59
lfd f18,32(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
60
lfd f19,40(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
61
lfd f20,48(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
62
lfd f21,56(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
63
lfd f22,64(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
64
lfd f23,72(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
65
lfd f24,80(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
66
lfd f25,88(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
67
lfd f26,96(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
68
lfd f27,104(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
69
lfd f28,112(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
70
lfd f29,120(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
71
lfd f30,128(r3)
tools/testing/selftests/powerpc/include/fpu_asm.h
72
lfd f31,136(r3)
tools/testing/selftests/powerpc/primitives/asm/ppc_asm.h
102
#define REST_FPR(n, base) lfd n,8*TS_FPRWIDTH*(n)(base)