Home
last modified time | relevance | path

Searched refs:LEN (Results 1 – 25 of 135) sorted by relevance

123456

/third_party/ffmpeg/tests/checkasm/
Dfloat_dsp.c30 #define LEN 256 macro
37 for (i = 0; i < LEN; i += 2) { \
46 LOCAL_ALIGNED_32(float, cdst, [LEN]); in test_vector_fmul()
47 LOCAL_ALIGNED_32(float, odst, [LEN]); in test_vector_fmul()
53 call_ref(cdst, src0, src1, LEN); in test_vector_fmul()
54 call_new(odst, src0, src1, LEN); in test_vector_fmul()
55 for (i = 0; i < LEN; i++) { in test_vector_fmul()
64 bench_new(odst, src0, src1, LEN); in test_vector_fmul()
69 LOCAL_ALIGNED_32(double, cdst, [LEN]); in test_vector_dmul()
70 LOCAL_ALIGNED_32(double, odst, [LEN]); in test_vector_dmul()
[all …]
Daf_afir.c29 #define LEN 256 macro
36 for (i = 0; i < LEN*2+8; i += 2) { \
45 LOCAL_ALIGNED_32(float, cdst, [LEN*2+8]); in test_fcmul_add()
46 LOCAL_ALIGNED_32(float, odst, [LEN*2+8]); in test_fcmul_add()
52 memcpy(cdst, src0, (LEN*2+8) * sizeof(float)); in test_fcmul_add()
53 memcpy(odst, src0, (LEN*2+8) * sizeof(float)); in test_fcmul_add()
54 call_ref(cdst, src1, src2, LEN); in test_fcmul_add()
55 call_new(odst, src1, src2, LEN); in test_fcmul_add()
56 for (i = 0; i <= LEN*2; i++) { in test_fcmul_add()
76 memcpy(odst, src0, (LEN*2+8) * sizeof(float)); in test_fcmul_add()
[all …]
/third_party/ffmpeg/libavutil/tests/
Dpca.c32 #define LEN 8 in main() macro
33 double eigenvector[LEN*LEN]; in main()
34 double eigenvalue[LEN]; in main()
39 pca= ff_pca_init(LEN); in main()
42 double v[2*LEN+100]; in main()
44 int pos = av_lfg_get(&prng) % LEN; in main()
65 for(i=0; i<LEN; i++){ in main()
73 for(j=i; j<LEN; j++){ in main()
74 printf("%f ", pca->covariance[i + j*LEN]); in main()
79 for(i=0; i<LEN; i++){ in main()
[all …]
Dadler32.c28 #define LEN 7001 macro
35 uint8_t data[LEN]; in main()
39 for (i = 0; i < LEN; i++) in main()
45 checksum = av_adler32_update(1, data, LEN); in main()
49 checksum = av_adler32_update(1, data, LEN); in main()
/third_party/mesa3d/src/gallium/auxiliary/rbug/
Drbug_texture.c50 LEN(8); /* header */ in rbug_send_texture_list()
86 LEN(8); /* header */ in rbug_send_texture_info()
87 LEN(8); /* texture */ in rbug_send_texture_info()
134 LEN(8); /* header */ in rbug_send_texture_write()
135 LEN(8); /* texture */ in rbug_send_texture_write()
136 LEN(4); /* face */ in rbug_send_texture_write()
137 LEN(4); /* level */ in rbug_send_texture_write()
138 LEN(4); /* zslice */ in rbug_send_texture_write()
139 LEN(4); /* x */ in rbug_send_texture_write()
140 LEN(4); /* y */ in rbug_send_texture_write()
[all …]
Drbug_context.c48 LEN(8); /* header */ in rbug_send_context_list()
84 LEN(8); /* header */ in rbug_send_context_info()
85 LEN(8); /* context */ in rbug_send_context_info()
123 LEN(8); /* header */ in rbug_send_context_draw_block()
124 LEN(8); /* context */ in rbug_send_context_draw_block()
125 LEN(4); /* block */ in rbug_send_context_draw_block()
164 LEN(8); /* header */ in rbug_send_context_draw_step()
165 LEN(8); /* context */ in rbug_send_context_draw_step()
166 LEN(4); /* step */ in rbug_send_context_draw_step()
205 LEN(8); /* header */ in rbug_send_context_draw_unblock()
[all …]
Drbug_shader.c49 LEN(8); /* header */ in rbug_send_shader_list()
50 LEN(8); /* context */ in rbug_send_shader_list()
88 LEN(8); /* header */ in rbug_send_shader_info()
89 LEN(8); /* context */ in rbug_send_shader_info()
90 LEN(8); /* shader */ in rbug_send_shader_info()
130 LEN(8); /* header */ in rbug_send_shader_disable()
131 LEN(8); /* context */ in rbug_send_shader_disable()
132 LEN(8); /* shader */ in rbug_send_shader_disable()
133 LEN(1); /* disable */ in rbug_send_shader_disable()
175 LEN(8); /* header */ in rbug_send_shader_replace()
[all …]
Drbug_core.c48 LEN(8); /* header */ in rbug_send_noop()
83 LEN(8); /* header */ in rbug_send_ping()
119 LEN(8); /* header */ in rbug_send_error()
120 LEN(4); /* error */ in rbug_send_error()
157 LEN(8); /* header */ in rbug_send_ping_reply()
158 LEN(4); /* serial */ in rbug_send_ping_reply()
196 LEN(8); /* header */ in rbug_send_error_reply()
197 LEN(4); /* serial */ in rbug_send_error_reply()
198 LEN(4); /* error */ in rbug_send_error_reply()
/third_party/musl/libc-test/src/functionalext/supplement/linux/
Dremap_file_pages.c22 #define LEN 8192 macro
105 char str[LEN] = {0}; in remap_file_pages_0100()
112 if (ret != LEN) { in remap_file_pages_0100()
121 char *start = mmap(NULL, LEN, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); in remap_file_pages_0100()
142 int result = remap_file_pages(start, LEN >> 1, 0, 1, MAP_SHARED); in remap_file_pages_0100()
144 munmap(start, LEN); in remap_file_pages_0100()
149 result = remap_file_pages(start + 4096, LEN >> 1, 0, 0, MAP_SHARED); in remap_file_pages_0100()
151 munmap(start, LEN); in remap_file_pages_0100()
171 munmap(start, LEN); in remap_file_pages_0100()
/third_party/ltp/testcases/kernel/syscalls/mmap/
Dmmap19.c24 #define LEN 64 macro
40 mm1 = SAFE_MMAP(0, LEN, PROT_READ, MAP_PRIVATE, f1, 0); in run()
41 mm2 = SAFE_MMAP(0, LEN, PROT_READ, MAP_PRIVATE, f2, 0); in run()
52 SAFE_MUNMAP(mm1, LEN); in run()
53 SAFE_MUNMAP(mm2, LEN); in run()
55 mm1 = SAFE_MMAP(save_mm2, LEN, PROT_READ, MAP_PRIVATE, f1, 0); in run()
56 mm2 = SAFE_MMAP(save_mm1, LEN, PROT_READ, MAP_PRIVATE, f2, 0); in run()
82 SAFE_MUNMAP(mm1, LEN); in cleanup()
85 SAFE_MUNMAP(mm2, LEN); in cleanup()
/third_party/libxml2/os400/
Dxmlcatalog.cmd13 PARM KWD(INSTMF) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
20 PARM KWD(KIND) TYPE(*CHAR) LEN(7) VARY(*YES *INT2) +
27 PARM KWD(OUTSTMF) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
35 PARM KWD(CONVERT) TYPE(*CHAR) LEN(10) VARY(*YES *INT2) +
42 PARM KWD(SUPERUPD) TYPE(*CHAR) LEN(17) VARY(*YES *INT2) +
49 PARM KWD(VERBOSE) TYPE(*CHAR) LEN(4) VARY(*YES *INT2) +
58 PARM KWD(DELETE) TYPE(*PNAME) LEN(256) VARY(*YES *INT2) +
67 XMLELEM: ELEM TYPE(*CHAR) LEN(16) VARY(*YES *INT2) DFT(*PUBLIC) +
80 ELEM TYPE(*PNAME) LEN(256) VARY(*YES *INT2) EXPR(*YES) +
82 ELEM TYPE(*PNAME) LEN(256) VARY(*YES *INT2) EXPR(*YES) +
[all …]
Dxmllint.cmd13 PARM KWD(STMF) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
20 PARM KWD(DTD) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
25 PARM KWD(DTDLOCATOR) TYPE(*CHAR) LEN(8) DFT(*DTDURL) +
31 PARM KWD(SCHEMA) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
36 PARM KWD(SCHEMAKIND) TYPE(*CHAR) LEN(12) VARY(*YES *INT2) +
47 PARM KWD(OUTSTMF) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
54 PARM KWD(XPATH) TYPE(*CHAR) LEN(5000) VARY(*YES *INT2) +
59 PARM KWD(PATTERN) TYPE(*CHAR) LEN(5000) VARY(*YES *INT2) +
66 PARM KWD(PATH) TYPE(*PNAME) LEN(5000) VARY(*YES *INT2) +
71 PARM KWD(PRETTY) TYPE(*CHAR) LEN(11) VARY(*YES *INT2) +
[all …]
/third_party/ltp/testcases/kernel/syscalls/memcpy/
Dmemcpy01.c24 #define LEN 100 macro
58 {&buf[100], &buf[800], LEN},
59 {&buf[800], &buf[100], LEN},
72 memcpy(q, p, LEN); in verify_memcpy()
79 if (p[-1] || p[LEN]) { in verify_memcpy()
84 if (q[-1] || q[LEN]) { in verify_memcpy()
/third_party/ffmpeg/libavutil/arm/
Dfloat_dsp_vfp.S81 LEN .req v1 label
87 ldr LEN, [sp, #4*4+0]
90 add DST1, DST0, LEN, lsl #3
91 add SRC1, SRC1, LEN, lsl #2
92 add WIN1, WIN0, LEN, lsl #3
94 tst LEN, #7
100 tst LEN, #1
113 tst LEN, #2
133 tst LEN, #4
167 bics LEN, LEN, #7
[all …]
/third_party/optimized-routines/string/test/
Dmemrchr.c40 #define LEN 512 macro
61 if (len > LEN || seekpos > LEN || align > ALIGN) in test()
89 sbuf = mte_mmap (LEN + 3 * ALIGN); in main()
95 for (int n = 0; n < LEN; n++) in main()
97 for (int sp = 0; sp < LEN; sp++) in main()
Dmemchr.c42 #define LEN 512 macro
63 if (len > LEN || seekpos > LEN || align > ALIGN) in test()
92 sbuf = mte_mmap (LEN + 3 * ALIGN); in main()
98 for (int n = 0; n < LEN; n++) in main()
100 for (int sp = 0; sp < LEN; sp++) in main()
Dmemcpy.c40 #define LEN 250000 macro
43 static unsigned char wbuf[LEN + 2 * A];
65 if (len > LEN || dalign >= A || salign >= A) in test()
99 dbuf = mte_mmap (LEN + 2 * A); in main()
100 sbuf = mte_mmap (LEN + 2 * A); in main()
111 for (; n < LEN; n *= 2) in main()
Dstpcpy.c43 #define LEN 512 macro
46 static char wbuf[LEN + 3 * ALIGN];
68 if (len > LEN || dalign >= ALIGN || salign >= ALIGN) in test()
108 sbuf = mte_mmap (LEN + 3 * ALIGN); in main()
109 dbuf = mte_mmap (LEN + 3 * ALIGN); in main()
116 for (int n = 0; n < LEN; n++) in main()
Dstrcpy.c41 #define LEN 512 macro
44 static char wbuf[LEN + 3 * ALIGN];
66 if (len > LEN || dalign >= ALIGN || salign >= ALIGN) in test()
106 sbuf = mte_mmap (LEN + 3 * ALIGN); in main()
107 dbuf = mte_mmap (LEN + 3 * ALIGN); in main()
114 for (int n = 0; n < LEN; n++) in main()
Dmemmove.c38 #define LEN 250000 macro
41 static unsigned char wbuf[LEN + 2 * A];
63 if (len > LEN || dalign >= A || salign >= A) in test()
102 if (len > LEN || dalign >= A || salign >= A) in test_overlap()
137 dbuf = mte_mmap (LEN + 2 * A); in main()
138 sbuf = mte_mmap (LEN + 2 * A); in main()
152 for (; n < LEN; n *= 2) in main()
Dstrnlen.c43 #define LEN 512 macro
62 if (len > LEN || align >= ALIGN) in test()
91 sbuf = mte_mmap (LEN + 3 * ALIGN); in main()
97 for (int n = 0; n < LEN; n++) in main()
99 for (int maxlen = 0; maxlen < LEN; maxlen++) in main()
Dstrlen.c45 #define LEN 512 macro
63 if (len > LEN || align >= ALIGN) in test()
88 sbuf = mte_mmap (LEN + 3 * ALIGN); in main()
94 for (int n = 0; n < LEN; n++) in main()
/third_party/libwebsockets/scripts/
Desp32.mk41 LEN=$$($$GNUSTAT -c %s $(LWS_BUILD_PATH)/$(PROJECT_NAME).bin) ;\
42 printf " Original length: 0x%06x (%8d)\n" $$LEN $$LEN ; \
48 LEN=$$($$GNUSTAT -c %s $(LWS_BUILD_PATH)/$(PROJECT_NAME).bin) ;\
72 LEN=$$($$GNUSTAT -c %s $(LWS_BUILD_PATH)/$(PROJECT_NAME).bin) ;\
74 printf " After ROMFS + Build info: 0x%06x (%8d)\n" $$LEN $$LEN
/third_party/openssl/crypto/rc4/asm/
Drc4-c64xplus.pl28 ($KEY,$LEN,$INP,$OUT)=("A4","B4","A6","B6");
50 MV $LEN,B0
61 || MVC $LEN,ILC
114 || ADD $INP,$LEN,$ret ; end of input
145 ||[A0] SUB $INP,$LEN,$INP ; rewind
/third_party/pulseaudio/src/pulsecore/ffmpeg/
Dresample2.c141 #define LEN 1024 in av_build_filter()
143 double sine[LEN + tap_count]; in av_build_filter()
144 double filtered[LEN]; in av_build_filter()
146 for(i=0; i<LEN; i++){ in av_build_filter()
148 for(j=0; j<LEN+tap_count; j++) in av_build_filter()
149 sine[j]= cos(i*j*M_PI/LEN); in av_build_filter()
150 for(j=0; j<LEN; j++){ in av_build_filter()
160 ss= sqrt(2*ss/LEN); in av_build_filter()
161 ff= sqrt(2*ff/LEN); in av_build_filter()
162 sf= 2*sf/LEN; in av_build_filter()

123456