Home
last modified time | relevance | path

Searched refs:j (Results 101 – 125 of 3332) sorted by relevance

12345678910>>...134

/freebsd/secure/lib/libcrypt/
H A Dblowfish.c61 #define BLFRND(s, p, i, j, n) (i ^= _F(s, j) ^ (p)[n]) argument
375 u_int16_t j; in Blowfish_stream2word() local
379 j = *current; in Blowfish_stream2word()
383 j = 0; in Blowfish_stream2word()
387 *current = j; in Blowfish_stream2word()
395 u_int16_t j; in Blowfish_expand0state() local
401 j = 0; in Blowfish_expand0state()
408 j = 0; in Blowfish_expand0state()
433 u_int16_t j; in Blowfish_expandstate() local
439 j = 0; in Blowfish_expandstate()
[all …]
/freebsd/contrib/wireguard-tools/
H A Dterminal.c36 size_t len, i, j; in filter_ansi() local
49 for (j = i + 2; j < len; ++j) { in filter_ansi()
50 if (char_is_alpha(str[j])) in filter_ansi()
52 str[j] = '\0'; in filter_ansi()
54 str[j] = '\0'; in filter_ansi()
58 for (i = 0; i < len; i = j) { in filter_ansi()
60 for (j = i + strlen(&str[i]); j < len; ++j) { in filter_ansi()
61 if (str[j] != '\0') in filter_ansi()
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dsparcv9-mont.pl75 $j="%l1";
121 mov 12,$j
150 add $j,4,$j ! j++
223 add $j,4,$j ! j++
340 add $j,4,$j ! j++
424 add $j,4,$j ! j++
482 add $j,4,$j
493 add $j,4,$j
507 add $j,4,$j
524 add $j,4,$j ! j++
[all …]
/freebsd/tools/test/stress2/misc/
H A Djail.sh51 struct jail j;
53 j.version = 2;
54 j.path = (char *)0xa000000;
55 j.hostname = (char *)1;
56 j.jailname = (char *)0;
57 j.ip4s = 0;
58 j.ip6s = 0;
59 j.ip4 = (struct in_addr *)0x58000000;
60 j.ip6 = (struct in6_addr *)0x33000001;
62 if (jail(&j) == -1)
H A Djail2.sh51 struct jail j;
63 j.version = 2;
64 j.path = 0;
65 j.hostname = 0;
66 j.jailname = (char *)0x50000000;
67 j.ip4s = 0xf7000004;
68 j.ip6s = 1;
69 j.ip4 = 0;
70 j.ip6 = 0;
72 if (jail(&j) == -1)
H A Dtruncate2.sh62 int fd[10], i, j;
66 for (j = 0; j < 10; j++) {
68 fd[j] = open(name, O_WRONLY | O_CREAT | O_APPEND, 0666);
69 if (fd[j] == -1)
75 for (j = 0; j < 10; j++) {
76 if (write(fd[j], buf, 2) != 2)
79 if (ftruncate(fd[j], len) == -1)
H A Djail3.sh51 struct jail j;
63 j.version = 0;
64 j.path = (char *)0x2809cd61;
65 j.hostname = (char *)0x2809b650;
66 j.jailname = 0;
67 j.ip4s = 1;
68 j.ip6s = 0;
69 j.ip4 = 0;
70 j.ip6 = 0;
72 if (jail(&j) == -1)
H A Djail4.sh53 struct jail j;
65 j.version = 2;
66 j.path = (char *)0x28190cb1;
67 j.hostname = (char *)0x28167b90;
68 j.jailname = (char *)0x28198700;
69 j.ip4s = 0;
70 j.ip6s = 0;
71 j.ip4 = 0;
72 j.ip6 = 0;
74 if (jail(&j) == -1)
/freebsd/crypto/openssh/regress/unittests/bitmap/
H A Dtests.c35 int i, j, k, n; in tests() local
48 for (j = -1; j < NTESTS; j++) { in tests()
59 if (j >= 0) { in tests()
60 ASSERT_INT_EQ(bitmap_set_bit(b, j), 0); in tests()
61 ASSERT_INT_EQ(BN_set_bit(bn, j), 1); in tests()
84 i, j, k); in tests()
98 i, j, k); in tests()
109 i, j, k); in tests()
118 if (j >= 0) { in tests()
119 bitmap_clear_bit(b, j); in tests()
[all …]
/freebsd/contrib/gdtoa/
H A Dgdtoa.c234 i += j;
240 j = -j;
264 s2 = j;
267 b2 = -j;
353 for(; j; j >>= 1, i++)
363 for(j = j1 >> 4; j; j >>= 1, i++)
517 m5 -= j;
520 b5 += j;
644 if (j < 0 || (j == 0 && !mode
727 if (j >= 0)
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp266 (j < endCF) && MatchFound; j++) { in isKeyColInstr()
325 (j < endCF) && MatchFound; j++) { in getInstrForColumn()
381 for (unsigned j = 0; j < NumCol; j++) { in emitBinSearchTable() local
382 if (ColInstrs[j] != nullptr) { in emitBinSearchTable()
448 for (unsigned j = 0, ColSize = ColumnI->size(); j < ColSize; ++j) { in emitMapFuncBody() local
453 if (j < ColumnI->size() - 1) in emitMapFuncBody()
517 for (unsigned j = 0; j < ListSize; j++) { in emitEnums() local
526 for (unsigned j = 0, endCF = ColFields->size(); j < endCF; j++) { in emitEnums() local
540 for (unsigned j = i+1; j < FieldValues.size(); j++) { in emitEnums() local
541 if (CurVal == FieldValues[j]) { in emitEnums()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_013_pos.ksh49 typeset -i j=0
50 while [[ $j -lt ${#size[*]} ]]; do
51 destroy_dataset $TESTPOOL/${LONGFSNAME}${size[j]}
52 ((j = j + 1))
61 typeset -i j=0
62 while (( $j < ${#size[*]} )); do
68 log_must datasetexists $TESTPOOL/${LONGFSNAME}${size[j]}
78 ((j = j + 1))
/freebsd/tests/sys/netpfil/pf/
H A Droute_to.sh439 j="route_to:ifbound"
455 jexec $j pfctl -e
456 pft_set_rules $j \
499 jexec $j pfctl -e
500 pft_set_rules $j \
538 jexec $j pfctl -e
539 pft_set_rules $j \
596 jexec $j pfctl -e
597 pft_set_rules $j \
653 jexec $j pfctl -e
[all …]
/freebsd/tests/sys/netinet/
H A Dcarp.sh119 j=vrrp_basic_v4
126 vnet_mkjail ${j}_two ${epair_one}b
127 vnet_mkjail ${j}_three ${epair_two}b
143 ${j}_three ${epair_two}b
269 j=carp_basic_v6
276 vnet_mkjail ${j}_two ${epair_one}b
277 vnet_mkjail ${j}_three ${epair_two}b
296 ${j}_three ${epair_two}b
379 j=carp_uni_ll_v6
386 vnet_mkjail ${j}_two ${epair_one}b
[all …]
/freebsd/lib/libusbhid/
H A Dusage.c60 int i, j; in dump_hid_table() local
64 for (j = 0; j < pages[i].pagesize; j++) { in dump_hid_table()
65 printf("\t%d\t%s\n", pages[i].page_contents[j].usage, in dump_hid_table()
66 pages[i].page_contents[j].name); in dump_hid_table()
179 int j, k, us; in hid_usage_in_page() local
186 for (j = 0; j < pages[k].pagesize; j++) { in hid_usage_in_page()
187 us = pages[k].page_contents[j].usage; in hid_usage_in_page()
190 fmtcheck(pages[k].page_contents[j].name, "%d"), in hid_usage_in_page()
195 return pages[k].page_contents[j].name; in hid_usage_in_page()
221 int k, j; in hid_parse_usage_in_page() local
[all …]
/freebsd/contrib/ntp/libjsmn/example/
H A Djsondump.c13 int i, j, k; in dump() local
25 j = 0; in dump()
28 j += dump(js, t+1+j, count-j, indent+1); in dump()
30 j += dump(js, t+1+j, count-j, indent+1); in dump()
33 return j+1; in dump()
35 j = 0; in dump()
40 j += dump(js, t+1+j, count-j, indent+1); in dump()
43 return j+1; in dump()
/freebsd/contrib/wpa/src/crypto/
H A Daes-cbc.c29 int i, j, blocks; in aes_128_cbc_encrypt() local
41 for (j = 0; j < AES_BLOCK_SIZE; j++) in aes_128_cbc_encrypt()
42 cbc[j] ^= pos[j]; in aes_128_cbc_encrypt()
65 int i, j, blocks; in aes_128_cbc_decrypt() local
79 for (j = 0; j < AES_BLOCK_SIZE; j++) in aes_128_cbc_decrypt()
80 pos[j] ^= cbc[j]; in aes_128_cbc_decrypt()
/freebsd/crypto/openssl/crypto/rc4/asm/
H A Drc4-md5-x86_64.pl241 my $j=$i%16;
243 my $xmm="%xmm".($j&1);
252 #md5# add 4*`$j`($inp),$a
261 #md5# rol \$$rot0[$j%4],$a
281 my $j=$i%16;
283 my $xmm="%xmm".($j&1);
301 #md5# rol \$$rot1[$j%4],$a
321 my $j=$i%16;
323 my $xmm="%xmm".($j&1);
360 my $j=$i%16;
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_unmount/
H A Dzfs_unmount_003_pos.ksh69 typeset -i j=0
72 j=0
73 while (( j < ${#dev[*]} )); do
82 ((j = j + 1))
96 typeset -i j=0
99 j=0
100 while (( j < ${#options[*]} )); do
102 ((j = j + 1))
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_unmount/
H A Dzfs_unmount_003_pos.ksh78 typeset -i j=0
81 j=0
82 while (( j < ${#dev[*]} )); do
91 ((j = j + 1))
105 typeset -i j=0
108 j=0
109 while (( j < ${#options[*]} )); do
111 ((j = j + 1))
/freebsd/contrib/byacc/
H A Dlalr.c167 for (j = 0; j < rp->nreds; j++) in initialize_LA()
277 int j; in initialize_F() local
306 for (j = 0; j < k; j++) in initialize_F()
314 for (; j < k; j++) in initialize_F()
325 for (j = 0; j < nedges; j++) in initialize_F()
326 rp[j] = edge[j]; in initialize_F()
353 int j; in build_relations() local
389 for (j = 0; j < k; j++) in build_relations()
420 for (j = 0; j < nedges; j++) in build_relations()
421 shortp[j] = edge[j]; in build_relations()
[all …]
/freebsd/contrib/flex/src/
H A Ddfa.c99 int i, j; in check_trailing_context() local
116 for (j = 1; j <= nacc; ++j) in check_trailing_context()
137 int i, j; in dump_associated_rules() local
146 for (j = 1; j <= num_associated_rules; ++j) in dump_associated_rules()
809 int i, j; in snstods() local
825 for (j = 1; j <= numstates; ++j) in snstods()
826 if (sns[j] != oldsns[j]) in snstods()
944 for (j = 0; j < lenccl; ++j) { in symfollowset()
969 for (j = 0; j < lenccl; ++j) { in symfollowset()
1055 for (++j; j < ich; ++j) in sympartition()
[all …]
H A Decs.c80 int i, j, numcl; in cre8ecs() local
92 for (j = fwd[i]; j != NIL; j = fwd[j]) in cre8ecs()
93 bck[j] = -numcl; in cre8ecs()
118 int cclm, i, j; in mkeccl() local
136 j = cclp + 1; in mkeccl()
139 for (; j < lenccl; ++j) { in mkeccl()
142 if (NUL_mapping && ccls[j] == 0) in mkeccl()
145 ccl_char = ccls[j]; in mkeccl()
150 if (ccl_char == i && !cclflags[j]) { in mkeccl()
161 cclflags[j] = 1; in mkeccl()
/freebsd/crypto/openssl/crypto/x509/
H A Dv3_tlsf.c65 size_t j; in STACK_OF() local
71 for (j = 0; j < OSSL_NELEM(tls_feature_tbl); j++) in STACK_OF()
72 if (tlsextid == tls_feature_tbl[j].num) in STACK_OF()
74 if (j < OSSL_NELEM(tls_feature_tbl)) in STACK_OF()
75 X509V3_add_value(NULL, tls_feature_tbl[j].name, &ext_list); in STACK_OF()
95 size_t j; in v2i_TLS_FEATURE() local
110 for (j = 0; j < OSSL_NELEM(tls_feature_tbl); j++) in v2i_TLS_FEATURE()
111 if (OPENSSL_strcasecmp(extval, tls_feature_tbl[j].name) == 0) in v2i_TLS_FEATURE()
113 if (j < OSSL_NELEM(tls_feature_tbl)) in v2i_TLS_FEATURE()
114 tlsextid = tls_feature_tbl[j].num; in v2i_TLS_FEATURE()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PBQPRegAlloc.cpp194 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) { in addIntraChainConstraint() local
195 unsigned pRa = (*vRaAllowed)[j]; in addIntraChainConstraint()
219 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) { in addIntraChainConstraint() local
220 unsigned pRa = (*vRaAllowed)[j]; in addIntraChainConstraint()
222 if (costs[i + 1][j + 1] != in addIntraChainConstraint()
230 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) { in addIntraChainConstraint() local
231 unsigned pRa = (*vRaAllowed)[j]; in addIntraChainConstraint()
296 for (unsigned j = 0, je = vRrAllowed->size(); j != je; ++j) { in addInterChainConstraint() local
297 unsigned pRa = (*vRrAllowed)[j]; in addInterChainConstraint()
299 if (costs[i + 1][j + 1] != in addInterChainConstraint()
[all …]

12345678910>>...134