Home
last modified time | relevance | path

Searched refs:MAX_BLOCKSIZE (Results 1 – 25 of 168) sorted by relevance

1234567

/dports/devel/tinygo/tinygo-0.14.1/lib/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/
H A Darm_convolution_example_f32.c111 #define MAX_BLOCKSIZE 128 macro
118 float32_t Ak[MAX_BLOCKSIZE]; /* Input A */
119 float32_t Bk[MAX_BLOCKSIZE]; /* Input B */
120 float32_t AxB[MAX_BLOCKSIZE * 2]; /* Output */
204 arm_fill_f32(0.0, Ak, MAX_BLOCKSIZE); in main()
205 arm_fill_f32(0.0, Bk, MAX_BLOCKSIZE); in main()
208 arm_copy_f32(testInputA_f32, Ak, MAX_BLOCKSIZE/2); in main()
209 arm_copy_f32(testInputB_f32, Bk, MAX_BLOCKSIZE/2); in main()
220 arm_cmplx_mult_cmplx_f32(Ak, Bk, AxB, MAX_BLOCKSIZE/2); in main()
/dports/devel/tinygo/tinygo-0.14.1/lib/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/
H A Darm_convolution_example_f32.c111 #define MAX_BLOCKSIZE 128 macro
118 float32_t Ak[MAX_BLOCKSIZE]; /* Input A */
119 float32_t Bk[MAX_BLOCKSIZE]; /* Input B */
120 float32_t AxB[MAX_BLOCKSIZE * 2]; /* Output */
204 arm_fill_f32(0.0, Ak, MAX_BLOCKSIZE); in main()
205 arm_fill_f32(0.0, Bk, MAX_BLOCKSIZE); in main()
208 arm_copy_f32(testInputA_f32, Ak, MAX_BLOCKSIZE/2); in main()
209 arm_copy_f32(testInputB_f32, Bk, MAX_BLOCKSIZE/2); in main()
220 arm_cmplx_mult_cmplx_f32(Ak, Bk, AxB, MAX_BLOCKSIZE/2); in main()
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/
H A Darm_convolution_example_f32.c95 #define MAX_BLOCKSIZE 128 macro
102 float32_t Ak[MAX_BLOCKSIZE]; /* Input A */
103 float32_t Bk[MAX_BLOCKSIZE]; /* Input B */
104 float32_t AxB[MAX_BLOCKSIZE * 2]; /* Output */
188 arm_fill_f32(0.0, Ak, MAX_BLOCKSIZE); in main()
189 arm_fill_f32(0.0, Bk, MAX_BLOCKSIZE); in main()
192 arm_copy_f32(testInputA_f32, Ak, MAX_BLOCKSIZE/2); in main()
193 arm_copy_f32(testInputB_f32, Bk, MAX_BLOCKSIZE/2); in main()
204 arm_cmplx_mult_cmplx_f32(Ak, Bk, AxB, MAX_BLOCKSIZE/2); in main()
/dports/devel/tinygo/tinygo-0.14.1/lib/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/
H A Darm_dotproduct_example_f32.c92 #define MAX_BLOCKSIZE 32 macro
102 float32_t srcA_buf_f32[MAX_BLOCKSIZE] =
120 float32_t srcB_buf_f32[MAX_BLOCKSIZE] =
141 float32_t multOutput[MAX_BLOCKSIZE]; /* Intermediate output */
152 arm_mult_f32(srcA_buf_f32, srcB_buf_f32, multOutput, MAX_BLOCKSIZE); in main()
156 for(i=0; i< MAX_BLOCKSIZE; i++) in main()
/dports/devel/tinygo/tinygo-0.14.1/lib/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/
H A Darm_dotproduct_example_f32.c92 #define MAX_BLOCKSIZE 32 macro
102 float32_t srcA_buf_f32[MAX_BLOCKSIZE] =
120 float32_t srcB_buf_f32[MAX_BLOCKSIZE] =
141 float32_t multOutput[MAX_BLOCKSIZE]; /* Intermediate output */
152 arm_mult_f32(srcA_buf_f32, srcB_buf_f32, multOutput, MAX_BLOCKSIZE); in main()
156 for(i=0; i< MAX_BLOCKSIZE; i++) in main()
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/
H A Darm_dotproduct_example_f32.c76 #define MAX_BLOCKSIZE 32 macro
86 float32_t srcA_buf_f32[MAX_BLOCKSIZE] =
104 float32_t srcB_buf_f32[MAX_BLOCKSIZE] =
125 float32_t multOutput[MAX_BLOCKSIZE]; /* Intermediate output */
136 arm_mult_f32(srcA_buf_f32, srcB_buf_f32, multOutput, MAX_BLOCKSIZE); in main()
140 for(i=0; i< MAX_BLOCKSIZE; i++) in main()
/dports/devel/tinygo/tinygo-0.14.1/lib/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/
H A Darm_variance_example_f32.c99 #define MAX_BLOCKSIZE 32 macro
106 float32_t wire1[MAX_BLOCKSIZE];
107 float32_t wire2[MAX_BLOCKSIZE];
108 float32_t wire3[MAX_BLOCKSIZE];
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/
H A Darm_variance_example_f32.c83 #define MAX_BLOCKSIZE 32 macro
90 float32_t wire1[MAX_BLOCKSIZE];
91 float32_t wire2[MAX_BLOCKSIZE];
92 float32_t wire3[MAX_BLOCKSIZE];
/dports/archivers/py-lzma/pylzma-0.5.0/src/pylzma/
H A Dpylzma_streams.c33 #define MAX_BLOCKSIZE 16777216 macro
38 #define MAX_BLOCKSIZE 1048576 macro
99 … stream->data = (Byte *) realloc(stream->data, stream->avail + min(stream->avail, MAX_BLOCKSIZE)); in MemoryInOutStreamAppend()
104 stream->avail += min(stream->avail, MAX_BLOCKSIZE); in MemoryInOutStreamAppend()
148 self->data = (Byte *) realloc(self->data, self->avail + min(self->avail, MAX_BLOCKSIZE)); in MemoryOutStream_Write()
153 self->avail += min(self->avail, MAX_BLOCKSIZE); in MemoryOutStream_Write()
/dports/security/libgcrypt/libgcrypt-1.9.4/cipher/
H A Dcipher-internal.h27 #define MAX_BLOCKSIZE 16 macro
42 #if OCB_BLOCK_LEN > MAX_BLOCKSIZE
43 # error OCB_BLOCKLEN > MAX_BLOCKSIZE
193 unsigned char iv[MAX_BLOCKSIZE];
200 unsigned char macbuf[MAX_BLOCKSIZE];
245 unsigned char iv[MAX_BLOCKSIZE];
253 unsigned char ctr[MAX_BLOCKSIZE];
257 unsigned char lastiv[MAX_BLOCKSIZE];
309 unsigned char tag[MAX_BLOCKSIZE];
321 unsigned char tagiv[MAX_BLOCKSIZE];
[all …]
H A Dcipher-eax.c168 unsigned char initbuf[MAX_BLOCKSIZE]; in _gcry_cipher_eax_set_nonce()
200 cipher_block_cpy (c->u_iv.iv, nonce_cmac.u_iv.iv, MAX_BLOCKSIZE); in _gcry_cipher_eax_set_nonce()
201 cipher_block_cpy (c->u_ctr.ctr, nonce_cmac.u_iv.iv, MAX_BLOCKSIZE); in _gcry_cipher_eax_set_nonce()
245 MAX_BLOCKSIZE); in _gcry_cipher_eax_tag()
247 MAX_BLOCKSIZE); in _gcry_cipher_eax_tag()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/libgcrypt/cipher/
H A Dcipher-internal.h27 #define MAX_BLOCKSIZE 16 macro
42 #if OCB_BLOCK_LEN > MAX_BLOCKSIZE
43 # error OCB_BLOCKLEN > MAX_BLOCKSIZE
181 unsigned char iv[MAX_BLOCKSIZE];
188 unsigned char macbuf[MAX_BLOCKSIZE];
233 unsigned char iv[MAX_BLOCKSIZE];
241 unsigned char ctr[MAX_BLOCKSIZE];
245 unsigned char lastiv[MAX_BLOCKSIZE];
297 unsigned char tag[MAX_BLOCKSIZE];
309 unsigned char tagiv[MAX_BLOCKSIZE];
[all …]
H A Dcipher-eax.c168 unsigned char initbuf[MAX_BLOCKSIZE]; in _gcry_cipher_eax_set_nonce()
200 cipher_block_cpy (c->u_iv.iv, nonce_cmac.u_iv.iv, MAX_BLOCKSIZE); in _gcry_cipher_eax_set_nonce()
201 cipher_block_cpy (c->u_ctr.ctr, nonce_cmac.u_iv.iv, MAX_BLOCKSIZE); in _gcry_cipher_eax_set_nonce()
245 MAX_BLOCKSIZE); in _gcry_cipher_eax_tag()
247 MAX_BLOCKSIZE); in _gcry_cipher_eax_tag()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/Dual-license/
H A Dlzf.c54 #define MAX_BLOCKSIZE BLOCKSIZE macro
180 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16]; in compress_fd()
181 u8 buf2[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16]; in compress_fd()
222 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16]; in uncompress_fd()
223 u8 buf2[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16]; in uncompress_fd()
460 if (errno || !blocksize || blocksize > MAX_BLOCKSIZE) in main()
499 if (errno || !blocksize || blocksize > MAX_BLOCKSIZE) in main()
/dports/devel/arduino-core/Arduino-b439a77/hardware/arduino/sam/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/
H A Darm_sin_cos_example_f32.c74 #define MAX_BLOCKSIZE 32 macro
83 const float32_t testInput_f32[MAX_BLOCKSIZE] =
/dports/devel/tinygo/tinygo-0.14.1/lib/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/
H A Darm_sin_cos_example_f32.c90 #define MAX_BLOCKSIZE 32 macro
99 const float32_t testInput_f32[MAX_BLOCKSIZE] =
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/sun/security/ssl/GenSSLConfigs/
H A DTraffic.java109 private static final int MAX_BLOCKSIZE = 8 * 2; field in Traffic
154 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in initiateConst()
164 for (int i = 1; i <= MAX_BLOCKSIZE; i++) { in respondConst()

1234567