| /freebsd-12-stable/crypto/openssh/ |
| D | smult_curve25519_ref.c | 13 unsigned int j; in add() local 16 for (j = 0;j < 31;++j) { u += a[j] + b[j]; out[j] = u & 255; u >>= 8; } in add() 22 unsigned int j; in sub() local 25 for (j = 0;j < 31;++j) { in sub() 26 u += a[j] + 65280 - b[j]; in sub() 27 out[j] = u & 255; in sub() 36 unsigned int j; in squeeze() local 39 for (j = 0;j < 31;++j) { u += a[j]; a[j] = u & 255; u >>= 8; } in squeeze() 42 for (j = 0;j < 31;++j) { u += a[j]; a[j] = u & 255; u >>= 8; } in squeeze() 53 unsigned int j; in freeze() local [all …]
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/ |
| D | tst.keysort.d | 34 j = 0; 36 @tour["Ghent", i++, j] = sum(5 - j); 37 j++; 39 @tour["Berlin", i++, j] = sum(5 - j); 40 j++; 42 @tour["London", i++, j] = sum(5 - j); 43 @tour["Dublin", i++, j] = sum(5 - j); 44 j++; 46 @tour["Shanghai", i++, j] = sum(5 - j); 47 j++; [all …]
|
| /freebsd-12-stable/lib/libc/db/test/hash.tests/ |
| D | testit | 10 foreach j ( 11 14 21 ) 11 thash4 $i $j 25000 65536 $name < $name 14 foreach j ( 21 28 43 ) 15 thash4 $i $j 25000 65536 $name < $name 18 foreach j ( 43 57 85 ) 19 thash4 $i $j 25000 65536 $name < $name 22 foreach j ( 85 114 171 ) 23 thash4 $i $j 25000 65536 $name < $name 26 foreach j ( 171 228 341 ) 27 thash4 $i $j 25000 65536 $name < $name [all …]
|
| /freebsd-12-stable/usr.sbin/jail/ |
| D | jail.c | 65 static void clear_persist(struct cfjail *j); 66 static int update_jail(struct cfjail *j); 67 static int rdtun_params(struct cfjail *j, int dofail); 68 static void running_jid(struct cfjail *j, int dflag); 69 static void jail_quoted_warnx(const struct cfjail *j, const char *name_msg, 71 static int jailparam_set_note(const struct cfjail *j, struct jailparam *jp, 73 static void print_jail(FILE *fp, struct cfjail *j, int oldcl, int running); 139 struct cfjail *j; in main() local 380 while ((j = next_jail())) in main() 382 if (j->flags & JF_FAILED) { in main() [all …]
|
| D | command.c | 63 struct cfjail *j; member 71 static int run_command(struct cfjail *j); 72 static int add_proc(struct cfjail *j, pid_t pid); 73 static void clear_procs(struct cfjail *j); 75 static int term_procs(struct cfjail *j); 76 static int get_user_info(struct cfjail *j, const char *username, 78 static int check_path(struct cfjail *j, const char *pname, const char *path, 91 next_command(struct cfjail *j) in next_command() argument 97 if (j->flags & JF_FROM_RUNQ) in next_command() 98 requeue_head(j, &runnable); in next_command() [all …]
|
| D | state.c | 58 struct cfjail *j, *dj; in dep_setup() local 72 if ((j = TAILQ_FIRST(&cfjails)) && in dep_setup() 73 (p = j->intparams[IP_DEPEND])) { in dep_setup() 78 j->flags |= JF_FAILED; in dep_setup() 86 TAILQ_FOREACH(j, &cfjails, tq) in dep_setup() 90 TAILQ_FOREACH(j, &cfjails, tq) in dep_setup() 91 jails_byname[njails++] = j; in dep_setup() 97 TAILQ_FOREACH(j, &cfjails, tq) { in dep_setup() 98 if (j->flags & JF_FAILED) in dep_setup() 100 if ((p = j->intparams[IP_DEPEND])) { in dep_setup() [all …]
|
| /freebsd-12-stable/contrib/bc/tests/bc/errors/ |
| D | 26.txt | 1 j(0, 0) 2 j(0, .5) 3 j(", -.5) 4 j(0,,1) 5 j() 6 j(0, 1.#4) 7 j(0 -1.74) 8 j(0, 2) 9 j(0, -2) 10 j(0, 3.2345) [all …]
|
| /freebsd-12-stable/contrib/ncurses/ncurses/trace/ |
| D | lib_tracedmp.c | 52 int i, j, n, width; in NCURSES_EXPORT() local 57 for (j = 0; j <= win->_maxx; ++j) { in NCURSES_EXPORT() 58 if (CharOf(win->_line[i].text[j]) != L(' ') in NCURSES_EXPORT() 59 || AttrOf(win->_line[i].text[j]) != A_NORMAL in NCURSES_EXPORT() 60 || GetPair(win->_line[i].text[j]) != 0) { in NCURSES_EXPORT() 61 n = j; in NCURSES_EXPORT() 86 for (j = 0; j < width; ++j) { in NCURSES_EXPORT() 87 chtype test = (chtype) CharOf(win->_line[n].text[j]); in NCURSES_EXPORT() 88 ep[j] = (char) ((UChar(test) == test in NCURSES_EXPORT() 90 && (win->_line[n].text[j].chars[1] == 0) in NCURSES_EXPORT() [all …]
|
| /freebsd-12-stable/sys/geom/vinum/ |
| D | geom_vinum_share.c | 444 int j, errors; in gv_new_drive() local 453 for (j = 1; j < max; j++) { in gv_new_drive() 454 if (!strcmp(token[j], "state")) { in gv_new_drive() 455 j++; in gv_new_drive() 456 if (j >= max) { in gv_new_drive() 460 d->state = gv_drivestatei(token[j]); in gv_new_drive() 461 } else if (!strcmp(token[j], "device")) { in gv_new_drive() 462 j++; in gv_new_drive() 463 if (j >= max) { in gv_new_drive() 467 ptr = token[j]; in gv_new_drive() [all …]
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/predicates/ |
| D | tst.complex.d.out | 6 i >= 5 || j >= 5 8 j != 10 14 i >= 5 || j >= 5 16 i == 2 (or) j == 2 17 i == 2 (and) j == 2 18 j != 10 19 j == 5 || i == 2 25 i >= 5 || j >= 5 27 j != 10 33 i >= 5 || j >= 5 [all …]
|
| /freebsd-12-stable/tools/tools/netrate/juggle/ |
| D | juggle.c | 238 int i, j; in juggle() local 245 for (j = 0; j < pipeline; j++) { in juggle() 250 for (j = 0; j < pipeline; j++) { in juggle() 258 for (j = 0; j < pipeline; j++) { in juggle() 288 int fd2, i, j; in juggling_thread() local 304 for (j = 0; j < threaded_pipeline; j++) { in juggling_thread() 321 int i, j; in thread_juggle() local 346 for (j = 0; j < pipeline; j++) { in thread_juggle() 351 for (j = 0; j < pipeline; j++) { in thread_juggle() 380 int error, i, j; in process_juggle() local [all …]
|
| /freebsd-12-stable/contrib/gcc/ |
| D | lambda-mat.c | 65 int i, j; in lambda_matrix_id() local 68 for (j = 0; j < size; j++) in lambda_matrix_id() 69 mat[i][j] = (i == j) ? 1 : 0; in lambda_matrix_id() 77 int i, j; in lambda_matrix_id_p() local 79 for (j = 0; j < size; j++) in lambda_matrix_id_p() 81 if (i == j) in lambda_matrix_id_p() 83 if (mat[i][j] != 1) in lambda_matrix_id_p() 88 if (mat[i][j] != 0) in lambda_matrix_id_p() 112 int i, j; in lambda_matrix_transpose() local 115 for (j = 0; j < m; j++) in lambda_matrix_transpose() [all …]
|
| /freebsd-12-stable/sys/contrib/libsodium/test/default/ |
| D | generichash3.c | 21 size_t j; in main() local 36 for (j = 0; j < 1 + i % crypto_generichash_blake2b_BYTES_MAX; ++j) { in main() 37 printf("%02x", (unsigned int) out[j]); in main() 48 for (j = 0; j < crypto_generichash_blake2b_BYTES_MAX; ++j) { in main() 49 printf("%02x", (unsigned int) out[j]); in main() 59 for (j = 0; j < crypto_generichash_blake2b_BYTES_MAX; ++j) { in main() 60 printf("%02x", (unsigned int) out[j]); in main() 71 for (j = 0; j < crypto_generichash_blake2b_BYTES_MAX; ++j) { in main() 72 printf("%02x", (unsigned int) out[j]); in main() 83 for (j = 0; j < crypto_generichash_blake2b_BYTES_MAX; ++j) { in main() [all …]
|
| /freebsd-12-stable/sys/contrib/octeon-sdk/ |
| D | cvmx-nand.c | 236 unsigned long i, j, c, bit; in __onfi_parameter_crc_compute() local 244 for (j = 0x80; j; j >>= 1) { in __onfi_parameter_crc_compute() 247 if (c & j) in __onfi_parameter_crc_compute() 1748 int i, j; in cvmx_nand_compute_boot_ecc() local 1763 for (j = 0; j < 2; j++) in cvmx_nand_compute_boot_ecc() 1764 pd0 ^= ((block[4*i+j] ^ (block[4*i+j] >> 1) ^ (block[4*i+j] >> 2) ^ in cvmx_nand_compute_boot_ecc() 1765 (block[4*i+j] >> 3) ^ (block[4*i+j] >> 4) ^ (block[4*i+j] >> 5) ^ in cvmx_nand_compute_boot_ecc() 1766 (block[4*i+j] >> 6) ^ (block[4*i+j] >> 7)) & 1) << 4; in cvmx_nand_compute_boot_ecc() 1768 for (j = 0; j < 4; j++) in cvmx_nand_compute_boot_ecc() 1769 pd0 ^= ((block[8*i+j] ^ (block[8*i+j] >> 1) ^ (block[8*i+j] >> 2) ^ in cvmx_nand_compute_boot_ecc() [all …]
|
| /freebsd-12-stable/contrib/ofed/opensm/opensm/ |
| D | osm_torus.c | 200 int i, j, k; member 787 unsigned i, j, k, cnt; in parse_torus() local 837 for (j = 0; j < t->y_sz; j++) { in parse_torus() 838 t->sw[i][j] = (void *)ptr; in parse_torus() 843 for (j = 0; j < t->y_sz; j++) in parse_torus() 845 t->sw[i][j][k] = NULL; in parse_torus() 867 unsigned i, j, k, n; in parse_port_order() local 873 for (j = 0; j < i; j++) { in parse_port_order() 874 if (t->port_order[j] == t->port_order[i]) { in parse_port_order() 878 t->port_order[j]); in parse_port_order() [all …]
|
| /freebsd-12-stable/contrib/googletest/googletest/include/gtest/internal/ |
| D | gtest-param-util-generated.h.pump | 73 $range j 1..i 75 template <$for j, [[typename T$j]]> 78 $if i==1 [[explicit ]]ValueArray$i($for j, [[T$j v$j]]) : $for j, [[v$(j)_(v$j)]] {} 82 const T array[] = {$for j, [[static_cast<T>(v$(j)_)]]}; 86 ValueArray$i(const ValueArray$i& other) : $for j, [[v$(j)_(other.v$(j)_)]] {} 92 $for j [[ 94 const T$j v$(j)_; 109 $range j 1..i 112 template <$for j, [[typename T$j]]> 114 : public ParamGeneratorInterface< ::testing::tuple<$for j, [[T$j]]> > { [all …]
|
| /freebsd-12-stable/crypto/openssl/crypto/bn/asm/ |
| D | x86-mont.pl | 53 $j="ecx"; 162 &xor ($j,$j); # j=0 184 &inc ($j); # j++ 193 &movd ($acc1,&DWP(4,$np,$j,4)); # np[j+1] 195 &movd ($acc0,&DWP(4,$ap,$j,4)); # ap[j+1] 197 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[j-1]= 200 &lea ($j,&DWP(1,$j)); 201 &cmp ($j,$num); 212 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]= 222 &xor ($j,$j); # j=0 [all …]
|
| D | s390x-mont.pl | 81 $j="%r7"; 119 lcgr $j,$num # -$num 122 la $sp,0($j,$rp) # alloca 126 la $bp,0($j,$bp) # restore $bp 148 la $j,8 # j=1 153 lg $alo,0($j,$ap) 160 lg $nlo,0($j,$np) 169 stg $nlo,$stdframe-8($j,$sp) # tp[j-1]= 170 la $j,8($j) # j++ 176 stg $NHI,$stdframe-8($j,$sp) [all …]
|
| /freebsd-12-stable/libexec/rc/ |
| D | rc.initdiskless | 310 for j in /conf/$i/* ; do 311 [ -d $j ] || continue 314 subdir=${j##*/} 315 [ -f $j/md_size ] && eval md_size_$subdir=`cat $j/md_size` 318 if [ -f $j/remount ]; then 319 if [ -f $j/remount_subdir ]; then 325 nfspt=`/bin/cat $j/remount` 331 remount_subdir=`/bin/cat $j/remount_subdir` 334 $remount_subdir_cmd $j 335 chkerr $? "$remount_subdir_cmd $j" [all …]
|
| /freebsd-12-stable/contrib/ncurses/ncurses/tinfo/ |
| D | db_iterator.c | 263 int j, k; in _nc_first_db() local 268 for (j = 0; j < dbdLAST; ++j) in _nc_first_db() 269 values[j] = 0; in _nc_first_db() 309 for (j = 0; j < dbdLAST; ++j) { in _nc_first_db() 310 if (values[j] == 0) in _nc_first_db() 311 values[j] = ""; in _nc_first_db() 312 blobsize += 2 + strlen(values[j]); in _nc_first_db() 318 for (j = 0; j < dbdLAST; ++j) { in _nc_first_db() 319 add_to_blob(values[j], blobsize); in _nc_first_db() 326 for (j = 0; my_blob[j] != '\0'; ++j) { in _nc_first_db() [all …]
|
| /freebsd-12-stable/crypto/openssl/crypto/des/ |
| D | str2key.c | 21 register unsigned char j = str[i]; in DES_string_to_key() local 24 (*key)[i % 8] ^= (j << 1); in DES_string_to_key() 27 j = ((j << 4) & 0xf0) | ((j >> 4) & 0x0f); in DES_string_to_key() 28 j = ((j << 2) & 0xcc) | ((j >> 2) & 0x33); in DES_string_to_key() 29 j = ((j << 1) & 0xaa) | ((j >> 1) & 0x55); in DES_string_to_key() 30 (*key)[7 - (i % 8)] ^= j; in DES_string_to_key() 49 register unsigned char j = str[i]; in DES_string_to_2keys() local 53 (*key1)[i % 8] ^= (j << 1); in DES_string_to_2keys() 55 (*key2)[i % 8] ^= (j << 1); in DES_string_to_2keys() 57 j = ((j << 4) & 0xf0) | ((j >> 4) & 0x0f); in DES_string_to_2keys() [all …]
|
| /freebsd-12-stable/tests/sys/cddl/zfs/tests/cli_root/zfs_mount/ |
| D | zfs_mount_all_001_pos.ksh | 69 typeset -i j=0 84 j=0 85 while (( j < ${#vol[*]} )); do 90 ((j = j + 1)) 94 j=0 95 while (( j < ${#fs[*]} )); do 99 ((j = j + 1)) 111 typeset -i j=0 118 j=0 119 while (( j < ${#vol[*]} )); do [all …]
|
| /freebsd-12-stable/crypto/openssl/crypto/sha/asm/ |
| D | sha1-sparcv9a.pl | 94 my $j=($i+16)%16; 100 fxors @X[($j+13)%16],@X[$j],@X[$j] !-1/-1/-1:X[0]^=X[13] 101 fxors @X[($j+14)%16],@X[$j+1],@X[$j+1]! 0/ 0/ 0:X[1]^=X[14] 102 fxor @X[($j+2)%16],@X[($j+8)%16],%f18! 1/ 1/ 1:Tmp=X[2,3]^X[8,9] 103 fxor %f18,@X[$j],@X[$j] ! 2/ 4/ 3:X[0,1]^=X[2,3]^X[8,9] 104 faligndata @X[$j],@X[$j],%f18 ! 3/ 7/ 5:Tmp=X[0,1]>>>24 105 fpadd32 @X[$j],@X[$j],@X[$j] ! 4/ 8/ 6:X[0,1]<<=1 108 for %f18,@X[$j],@X[$j] ! 8/14/10:X[0,1]|=Tmp 110 fpadd32 $K,@X[$j],%f20 111 std %f20,[$Xfer+`4*$j`] [all …]
|
| /freebsd-12-stable/sys/contrib/dev/acpica/components/utilities/ |
| D | utbuffer.c | 186 UINT32 j; in AcpiUtDumpBuffer() local 217 for (j = 0; j < 16;) in AcpiUtDumpBuffer() 219 if (i + j >= Count) in AcpiUtDumpBuffer() 224 j += Display; in AcpiUtDumpBuffer() 233 AcpiOsPrintf ("%02X ", Buffer[(ACPI_SIZE) i + j]); in AcpiUtDumpBuffer() 238 ACPI_MOVE_16_TO_32 (&Temp32, &Buffer[(ACPI_SIZE) i + j]); in AcpiUtDumpBuffer() 244 ACPI_MOVE_32_TO_32 (&Temp32, &Buffer[(ACPI_SIZE) i + j]); in AcpiUtDumpBuffer() 250 ACPI_MOVE_32_TO_32 (&Temp32, &Buffer[(ACPI_SIZE) i + j]); in AcpiUtDumpBuffer() 253 ACPI_MOVE_32_TO_32 (&Temp32, &Buffer[(ACPI_SIZE) i + j + 4]); in AcpiUtDumpBuffer() 258 j += Display; in AcpiUtDumpBuffer() [all …]
|
| /freebsd-12-stable/tests/sys/cddl/zfs/tests/cli_root/zfs_unmount/ |
| D | zfs_unmount_all_001_pos.ksh | 71 typeset -i j=0 86 j=0 87 while (( j < ${#vol[*]} )); do 92 ((j = j + 1)) 95 j=0 96 while (( j < ${#fs[*]} )); do 100 ((j = j + 1)) 112 typeset -i j=0 118 j=0 119 while (( j < ${#vol[*]} )); do [all …]
|