Home
last modified time | relevance | path

Searched refs:BUFFER_LEN (Results 1 – 13 of 13) sorted by relevance

/external/igt-gpu-tools/lib/tests/
Digt_audio.c35 #define BUFFER_LEN 2048 macro
47 double buf[BUFFER_LEN]; in test_signal_detect_untampered()
50 audio_signal_fill(signal, buf, BUFFER_LEN / CHANNELS); in test_signal_detect_untampered()
51 ok = audio_signal_detect(signal, SAMPLING_RATE, 0, buf, BUFFER_LEN); in test_signal_detect_untampered()
57 double buf[BUFFER_LEN] = {0}; in test_signal_detect_silence()
60 ok = audio_signal_detect(signal, SAMPLING_RATE, 0, buf, BUFFER_LEN); in test_signal_detect_silence()
67 double buf[BUFFER_LEN]; in test_signal_detect_noise()
74 for (i = 0; i < BUFFER_LEN; i++) { in test_signal_detect_noise()
79 ok = audio_signal_detect(signal, SAMPLING_RATE, 0, buf, BUFFER_LEN); in test_signal_detect_noise()
86 double buf[BUFFER_LEN]; in test_signal_detect_with_missing_freq()
[all …]
/external/mbedtls/programs/test/
Dzeroize.c36 #define BUFFER_LEN 1024 macro
43 mbedtls_printf( "prints the first %d characters. Usage:\n\n", BUFFER_LEN ); in usage()
51 char buf[BUFFER_LEN]; in main()
53 char *end = p + BUFFER_LEN; in main()
/external/openthread/third_party/mbedtls/repo/programs/test/
Dzeroize.c48 #define BUFFER_LEN 1024 macro
55 mbedtls_printf( "prints the first %d characters. Usage:\n\n", BUFFER_LEN ); in usage()
63 char buf[BUFFER_LEN]; in main()
65 char *end = p + BUFFER_LEN; in main()
/external/ltp/testcases/kernel/device-drivers/agp/user_space/
Duser_tagp.h24 #ifndef BUFFER_LEN
25 #define BUFFER_LEN 32 macro
Duser_tagp.c140 char read_buf[BUFFER_LEN]; in agpgart_io_test()
/external/minijail/rust/minijail/tests/
Dfork_remap.rs92 const BUFFER_LEN: usize = 16; in main() constant
93 let mut buffer = [0xffu8; BUFFER_LEN]; in main()
95 assert_eq!(&buffer, &[0u8; BUFFER_LEN]); in main()
/external/crosvm/devices/src/virtio/
Dqueue.rs924 const BUFFER_LEN: u32 = 0x400; constant
985 len: Le32::from(BUFFER_LEN), in setup_vq()
1020 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_fast()
1038 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_fast()
1056 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_fast()
1089 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_slow()
1106 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_slow()
1116 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_slow()
1130 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_slow()
1139 queue.add_used(&mem, 0x0, BUFFER_LEN); in queue_event_id_guest_slow()
[all …]
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
DInplaceFileConverter.java44 final static int BUFFER_LEN = 8 * 1024; field in InplaceFileConverter
59 byte[] buffer = new byte[BUFFER_LEN]; in readIntoByteArray()
/external/icu/icu4c/source/test/cintltst/
Dunumberformattertst.c347 #define BUFFER_LEN 256 in TestPerUnitInArabic() macro
348 char buffer[BUFFER_LEN]; in TestPerUnitInArabic()
349 UChar ubuffer[BUFFER_LEN]; in TestPerUnitInArabic()
363 … u_strFromUTF8(ubuffer, BUFFER_LEN, &outputlen, buffer, (int32_t)strlen(buffer), &status); in TestPerUnitInArabic()
/external/cronet/third_party/icu/source/test/cintltst/
Dunumberformattertst.c347 #define BUFFER_LEN 256 in TestPerUnitInArabic() macro
348 char buffer[BUFFER_LEN]; in TestPerUnitInArabic()
349 UChar ubuffer[BUFFER_LEN]; in TestPerUnitInArabic()
363 … u_strFromUTF8(ubuffer, BUFFER_LEN, &outputlen, buffer, (int32_t)strlen(buffer), &status); in TestPerUnitInArabic()
/external/ppp/pppd/plugins/radius/
Dsendserver.c211 char recv_buffer[BUFFER_LEN]; in rc_send_server()
212 char send_buffer[BUFFER_LEN]; in rc_send_server()
344 result = rc_check_reply (recv_auth, BUFFER_LEN, secret, vector, data->seq_nbr); in rc_send_server()
Dradiusclient.h36 #define BUFFER_LEN 8192 macro
/external/python/cpython2/Python/
Dgetargs.c618 #define BUFFER_LEN ((flags & FLAG_SIZE_T) ? *q2:*q) in convertsimple() macro
1147 if (size + 1 > BUFFER_LEN) { in convertsimple()
1152 (Py_ssize_t)size, (Py_ssize_t)(BUFFER_LEN-1)); in convertsimple()