Home
last modified time | relevance | path

Searched refs:BUF_SIZE (Results 1 – 25 of 26) sorted by relevance

12

/linux-6.3-rc2/tools/testing/selftests/bpf/
A Durandom_read.c16 #define BUF_SIZE 256 macro
29 char buf[BUF_SIZE]; in urandom_read()
33 read(fd, buf, BUF_SIZE); in urandom_read()
36 urand_read_without_sema(i, count, BUF_SIZE); in urandom_read()
37 STAP_PROBE3(urand, read_with_sema, i, count, BUF_SIZE); in urandom_read()
40 urandlib_read_without_sema(i, count, BUF_SIZE); in urandom_read()
41 urandlib_read_with_sema(i, count, BUF_SIZE); in urandom_read()
/linux-6.3-rc2/tools/testing/selftests/net/
A Dtcp_inq.c29 #define BUF_SIZE 8192 macro
68 buf = malloc(BUF_SIZE); in start_server()
77 r = send(fd, buf, BUF_SIZE, 0); in start_server()
81 if (r != BUF_SIZE) in start_server()
157 buf = malloc(BUF_SIZE); in main()
159 iov[0].iov_len = BUF_SIZE / 2; in main()
170 if (inq != BUF_SIZE - iov[0].iov_len) { in main()
/linux-6.3-rc2/lib/
A Dtest_printf.c29 #define BUF_SIZE 256 macro
55 memset(alloced_buffer, FILL_CHAR, BUF_SIZE + 2*PAD_SIZE); in do_test()
72 if (memchr_inv(test_buffer, FILL_CHAR, BUF_SIZE + PAD_SIZE)) { in do_test()
113 if (elen >= BUF_SIZE) { in __test()
128 failed_tests += do_test(BUF_SIZE, expect, elen, fmt, ap); in __test()
620 size = scnprintf(cmp_buf, BUF_SIZE, "%#lx(", flags); in page_flags_test()
631 size += scnprintf(cmp_buf + size, BUF_SIZE - size, "|"); in page_flags_test()
633 size += scnprintf(cmp_buf + size, BUF_SIZE - size, "%s=", in page_flags_test()
640 snprintf(cmp_buf + size, BUF_SIZE - size, ")"); in page_flags_test()
652 cmp_buffer = kmalloc(BUF_SIZE, GFP_KERNEL); in flags()
[all …]
A Dtest_scanf.c20 #define BUF_SIZE 1024 macro
198 snprintf(test_buffer, BUF_SIZE, gen_fmt, expect_val); \
361 append_delim(test_buffer, &pos, BUF_SIZE, \
362 fmt_buffer, &fmt_pos, BUF_SIZE, \
389 append_delim(test_buffer, &pos, BUF_SIZE, \
390 fmt_buffer, &fmt_pos, BUF_SIZE, field_sep);\
392 val_len = append_fmt(test_buffer, &pos, BUF_SIZE, gen_fmt, \
394 append_fmt(fmt_buffer, &fmt_pos, BUF_SIZE, \
690 len = snprintf(test_buffer, BUF_SIZE, gen_fmt, expect); \
788 test_buffer = kmalloc(BUF_SIZE, GFP_KERNEL); in selftest()
[all …]
/linux-6.3-rc2/tools/perf/util/
A Dperf_event_attr_fprintf.c74 #define BUF_SIZE 1024 macro
76 #define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val))
77 #define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val))
78 #define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val))
79 #define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val)
80 #define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val)
81 #define p_read_format(val) __p_read_format(buf, BUF_SIZE, val)
96 char buf[BUF_SIZE]; in perf_event_attr__fprintf()
/linux-6.3-rc2/sound/parisc/
A Dharmony.h64 #define BUF_SIZE PAGE_SIZE macro
66 #define MAX_BUF_SIZE (MAX_BUFS * BUF_SIZE)
71 #define GRAVEYARD_BUFSZ (GRAVEYARD_BUFS*BUF_SIZE)
73 #define SILENCE_BUFSZ (SILENCE_BUFS*BUF_SIZE)
A Dharmony.c264 .period_bytes_min = BUF_SIZE,
265 .period_bytes_max = BUF_SIZE,
285 .period_bytes_min = BUF_SIZE,
286 .period_bytes_max = BUF_SIZE,
615 BUF_SIZE*GRAVEYARD_BUFS, in snd_harmony_pcm_init()
625 BUF_SIZE*SILENCE_BUFS, in snd_harmony_pcm_init()
/linux-6.3-rc2/drivers/tty/
A Dehv_bytechan.c41 #define BUF_SIZE 2048 macro
52 unsigned char buf[BUF_SIZE]; /* transmit circular buffer */
416 CIRC_CNT_TO_END(bc->head, bc->tail, BUF_SIZE), in ehv_bc_tx_dequeue()
423 bc->tail = (bc->tail + len) & (BUF_SIZE - 1); in ehv_bc_tx_dequeue()
425 count = CIRC_CNT(bc->head, bc->tail, BUF_SIZE); in ehv_bc_tx_dequeue()
430 if (CIRC_CNT(bc->head, bc->tail, BUF_SIZE)) in ehv_bc_tx_dequeue()
479 len = CIRC_SPACE_TO_END(bc->head, bc->tail, BUF_SIZE); in ehv_bc_tty_write()
484 bc->head = (bc->head + len) & (BUF_SIZE - 1); in ehv_bc_tty_write()
546 count = CIRC_SPACE(bc->head, bc->tail, BUF_SIZE); in ehv_bc_tty_write_room()
/linux-6.3-rc2/drivers/input/joystick/
A Djoydump.c23 #define BUF_SIZE 256 macro
64 buf = kmalloc_array(BUF_SIZE, sizeof(struct joydump), GFP_KERNEL); in joydump_connect()
83 while (i < BUF_SIZE && t < timeout) { in joydump_connect()
/linux-6.3-rc2/arch/um/drivers/
A Dslip_common.h5 #define BUF_SIZE 1500 macro
8 #define ENC_BUF_SIZE (2 * BUF_SIZE + 2)
A Dslirp_user.c123 .mtu = BUF_SIZE,
124 .max_packet = BUF_SIZE,
A Dslip_user.c250 .mtu = BUF_SIZE,
251 .max_packet = BUF_SIZE,
/linux-6.3-rc2/samples/watch_queue/
A Dwatch_test.c30 #define BUF_SIZE 256 macro
164 if (ioctl(fd, IOC_WATCH_QUEUE_SET_SIZE, BUF_SIZE) == -1) { in main()
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx4/
A Dmcg.c903 #define BUF_SIZE 256 in mlx4_err_rule() macro
905 char buf[BUF_SIZE]; in mlx4_err_rule()
909 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
916 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
919 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
923 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
930 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
952 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
954 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
960 len += scnprintf(buf + len, BUF_SIZE - len, in mlx4_err_rule()
[all …]
/linux-6.3-rc2/Documentation/usb/
A Dgadget_printer.rst167 #define BUF_SIZE 512
221 static char buf[BUF_SIZE];
231 bytes_read = read(fd[0].fd, buf, BUF_SIZE);
272 static char buf[BUF_SIZE];
274 int bytes_read = fread(buf, 1, BUF_SIZE, stdin);
318 static char buf[BUF_SIZE];
331 bytes_read = read(fd, buf, BUF_SIZE);
/linux-6.3-rc2/drivers/platform/chrome/
A Dcros_usbpd_logger.c26 #define BUF_SIZE 80 macro
56 i = vsnprintf(buf + pos, BUF_SIZE - pos, fmt, args); in append_str()
87 char buf[BUF_SIZE + 1]; in cros_usbpd_print_log_entry()
/linux-6.3-rc2/drivers/media/rc/
A Diguanair.c17 #define BUF_SIZE 152 macro
60 #define MAX_OUT_PACKET (sizeof(struct send_packet) + BUF_SIZE)
241 if (ir->bufsize > BUF_SIZE) { in iguanair_get_features()
244 ir->bufsize = BUF_SIZE; in iguanair_get_features()
A Dimon.c43 #define BUF_SIZE 128 macro
/linux-6.3-rc2/drivers/media/usb/airspy/
A Dairspy.c125 #define BUF_SIZE 128 macro
978 s->buf = kzalloc(BUF_SIZE, GFP_KERNEL); in airspy_probe()
981 buf = kzalloc(BUF_SIZE, GFP_KERNEL); in airspy_probe()
1000 buf, BUF_SIZE); in airspy_probe()
1006 buf[BUF_SIZE - 1] = '\0'; in airspy_probe()
/linux-6.3-rc2/tools/mm/
A Dpage_owner_sort.c670 #define BUF_SIZE (128 * 1024) macro
812 buf = malloc(BUF_SIZE); in main()
813 ext_buf = malloc(BUF_SIZE); in main()
820 int buf_len = read_block(buf, ext_buf, BUF_SIZE, fin); in main()
/linux-6.3-rc2/drivers/atm/
A Dsolos-pci.c57 #define BUF_SIZE 2048 macro
470 if (size > (BUF_SIZE - sizeof(*header))) { in send_command()
1091 data = card->dma_bounce + (BUF_SIZE * port); in fpga_tx()
1144 if (pktlen > (BUF_SIZE - sizeof(*header))) { in psend()
1252 card->buffer_size = BUF_SIZE; in fpga_probe()
1281 BUF_SIZE, GFP_KERNEL); in fpga_probe()
A Diphase.h542 #define BUF_SIZE 0x42 macro
/linux-6.3-rc2/scripts/kconfig/lxdialog/
A Ddialog.h42 #define BUF_SIZE (10*1024) macro
/linux-6.3-rc2/drivers/media/usb/hackrf/
A Dhackrf.c140 #define BUF_SIZE 24 macro
141 u8 buf[BUF_SIZE];
1350 u8 u8tmp, buf[BUF_SIZE]; in hackrf_probe()
1381 buf, BUF_SIZE); in hackrf_probe()
1387 buf[BUF_SIZE - 1] = '\0'; in hackrf_probe()
/linux-6.3-rc2/drivers/scsi/
A Dscsi_transport_sas.c1236 #define BUF_SIZE 64 macro
1240 char *buffer = kzalloc(BUF_SIZE, GFP_KERNEL), *msdata; in sas_read_port_mode_page()
1248 error = scsi_mode_sense(sdev, 1, 0x19, buffer, BUF_SIZE, 30*HZ, 3, in sas_read_port_mode_page()
1257 if (msdata - buffer > BUF_SIZE - 8) in sas_read_port_mode_page()

Completed in 99 milliseconds

12