Home
last modified time | relevance | path

Searched refs:pass (Results 1 – 25 of 176) sorted by relevance

12345678

/f-stack/app/redis-5.0.5/src/
H A Dmemtest.c63 void memtest_progress_start(char *title, int pass) { in memtest_progress_start() argument
72 printf("%s [%d]\n", title, pass); /* Print title. */ in memtest_progress_start()
238 int pass = 0; in memtest_test() local
241 while (pass != passes) { in memtest_test()
242 pass++; in memtest_test()
299 int pass = 0; in memtest_preserving_test() local
306 while(pass != passes) { in memtest_preserving_test()
307 pass++; in memtest_preserving_test()
314 errors += memtest_compare_times(p,len,pass,4,0); in memtest_preserving_test()
320 errors += memtest_compare_times(p,len,pass,4,0); in memtest_preserving_test()
[all …]
/f-stack/freebsd/contrib/octeon-sdk/
H A Docteon-model.c150 char pass[4]; in octeon_model_get_string_buffer() local
247 case 0: strcpy(pass, "1.X"); break; in octeon_model_get_string_buffer()
248 case 1: strcpy(pass, "2.X"); break; in octeon_model_get_string_buffer()
249 case 3: strcpy(pass, "3.X"); break; in octeon_model_get_string_buffer()
250 default:strcpy(pass, "X.X"); break; in octeon_model_get_string_buffer()
261 case 0: strcpy(pass, "1.0"); break; in octeon_model_get_string_buffer()
262 case 2: strcpy(pass, "1.1"); break; in octeon_model_get_string_buffer()
263 default:strcpy(pass, "X.X"); break; in octeon_model_get_string_buffer()
274 case 0: strcpy(pass, "1.0"); break; in octeon_model_get_string_buffer()
275 case 2: strcpy(pass, "1.1"); break; in octeon_model_get_string_buffer()
[all …]
/f-stack/freebsd/crypto/openssl/arm/
H A Dbsaes-armv7.S1107 mov r4, r3 @ pass key
1122 mov r4, r3 @ pass key
1363 mov r4, r3 @ pass key
1385 mov r4, r3 @ pass key
1607 mov r4, r10 @ pass key
1620 mov r4, r10 @ pass key
1711 mov r5, r1 @ pass rounds
1823 mov r5, r1 @ pass rounds
1855 mov r5, r1 @ pass rounds
2087 mov r4, r10 @ pass key
[all …]
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_frag.c380 u_32_t pass;
400 if (pass & FR_FRSTRICT) {
504 fra->ipfr_pass = pass;
522 ipf_frag_new(softc, fin, pass) in ipf_frag_new() argument
524 u_32_t pass;
562 u_32_t pass;
903 u_32_t pass; local
924 pass = fr->fr_flags;
933 pass &= ~FR_KEEPSTATE;
935 if ((pass & FR_LOGFIRST) != 0)
[all …]
H A Dfil.c2390 u_32_t pass;
2401 return pass;
2409 return pass;
2609 if ((pass & FR_KEEPSTATE) && !FR_ISAUTH(pass) &&
2626 return pass;
2692 u_32_t pass; local
2751 pass = ipf_auth_pre_scanlist(softc, fin, pass);
3300 u_32_t pass; local
3330 if ((pass & FR_LOGORBLOCK) && FR_ISPASS(pass)) {
8474 u_32_t pass;
[all …]
H A Dip_auth.c348 u_32_t pass; local
372 if (!(pass = fra->fra_pass) || (FR_ISAUTH(pass))) {
373 pass = FR_BLOCK;
381 if ((pass & FR_KEEPSTATE) || ((pass & FR_KEEPFRAG) &&
391 fr->fr_flags = pass;
438 *passp = pass;
1225 ipf_auth_pre_scanlist(softc, fin, pass) in ipf_auth_pre_scanlist() argument
1228 u_32_t pass;
1235 return pass;
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-core.h114 uint32_t pass; member
157 if (position->pass == 0) { in index_alpha()
198 if (position->pass != 0) { in index_alpha()
295 void fill_memory_blocks(argon2_instance_t *instance, uint32_t pass);
H A Dargon2-fill-block-ssse3.c110 input_block.v[0] = position->pass; in generate_addresses()
161 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_ssse3()
173 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_ssse3()
213 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_ssse3()
229 if (position.pass != 0) { in fill_segment_ssse3()
H A Dargon2-fill-block-avx512f.c116 input_block.v[0] = position->pass; in generate_addresses()
167 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_avx512f()
179 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_avx512f()
219 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_avx512f()
235 if (position.pass != 0) { in fill_segment_avx512f()
H A Dargon2-fill-block-avx2.c111 input_block.v[0] = position->pass; in generate_addresses()
162 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_avx2()
174 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_avx2()
214 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_avx2()
230 if (position.pass != 0) { in fill_segment_avx2()
H A Dargon2-fill-block-ref.c122 input_block.v[0] = position->pass; in generate_addresses()
160 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_ref()
172 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_ref()
209 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_ref()
225 if (position.pass != 0) { in fill_segment_ref()
H A Dargon2.c32 uint32_t pass; in argon2_ctx() local
75 for (pass = 0; pass < instance.passes; pass++) { in argon2_ctx()
76 fill_memory_blocks(&instance, pass); in argon2_ctx()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zdb/
H A Dzdb_block_size_histogram.ksh88 for pass in 20 20 10 # 50%
90 ((thiscount=(((histo_pool_size*pass)/100)/sum_filesizes)))
190 for pass in 20 20 10 # 50%
192 ((thiscount=(((histo_check_pool_size*pass)/100)/sum_filesizes)))
/f-stack/freebsd/arm/conf/
H A DGENERIC-MMCCAM18 # pass(4) device
19 device pass
/f-stack/freebsd/arm64/conf/
H A DGENERIC-MMCCAM18 # pass(4) device
19 device pass
/f-stack/freebsd/netgraph/bluetooth/l2cap/
H A DTODO35 to get data from kernel to user space. For example if we need to pass
37 to pass 65Mbytes of data from kernel to user space. Not good.
/f-stack/freebsd/contrib/ngatm/netnatm/msg/
H A Duni_hdr.h172 u_int pass:1; /* PNNI pass along request */ member
186 u_int pass : 1; /* PNNI pass along request */ member
H A Dprivmsg.c89 out->u.hdr.pass = 1; in uni_decode_head()
91 out->u.hdr.pass = 0; in uni_decode_head()
/f-stack/dpdk/devtools/
H A Dcheckpatches.sh329 pass=$(($total - $status))
330 $quiet || printf '\n%d/%d valid patch' $pass $total
331 $quiet || [ $pass -le 1 ] || printf 'es'
/f-stack/freebsd/contrib/openzfs/config/
H A Dax_code_coverage.m4187 # - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the
189 # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov
191 # - CODE_COVERAGE_LCOV_RMOPTS_DEFAULT: Extra options to pass to the filtering
193 # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov
195 # - CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT: Extra options to pass to the
197 # - CODE_COVERAGE_GENHTML_OPTIONS: Extra options to pass to the genhtml
/f-stack/dpdk/doc/guides/howto/
H A Drte_flow.rst44 /* setting the eth to pass all packets */
48 /* set the vlan to pass all packets */
140 /* setting the eth to pass all packets */
144 /* set the vlan to pass all packets */
239 /* setting the eth to pass all packets */
/f-stack/freebsd/amd64/amd64/
H A Dbpf_jit_machdep.c163 u_int i, pass; in bpf_jit_compile() local
201 for (pass = 0; pass < 2; pass++) { in bpf_jit_compile()
600 if (pass > 0) in bpf_jit_compile()
/f-stack/freebsd/mips/malta/
H A Dstd.malta11 device pass # Passthrough device (direct ATA/SCSI access)
/f-stack/freebsd/i386/i386/
H A Dbpf_jit_machdep.c164 u_int i, pass; in bpf_jit_compile() local
203 for (pass = 0; pass < 2; pass++) { in bpf_jit_compile()
630 if (pass > 0) in bpf_jit_compile()
/f-stack/freebsd/kern/
H A Dsubr_bus.c87 int pass; member
897 if (dl->pass < new->pass) in driver_register_pass()
899 if (dl->pass == new->pass) in driver_register_pass()
915 bus_set_pass(int pass) in bus_set_pass() argument
919 if (bus_current_pass > pass) in bus_set_pass()
931 if (dl->pass > pass) in bus_set_pass()
948 bus_current_pass = pass; in bus_set_pass()
1115 if (pass <= BUS_PASS_ROOT) in devclass_add_driver()
1146 dl->pass = pass; in devclass_add_driver()
5224 int error, pass; in driver_module_handler() local
[all …]

12345678