HomeSort by: relevance | last modified time | path
    Searched refs:bk (Results 1 - 17 of 17) sorted by relevancy

  /src/external/bsd/ntp/dist/scripts/build/
checkHtmlFileDates 13 # 'bk diff' is used to check for modifications so if bk is not
19 # Do nothing if the directory is not a BK repo,
20 # or if BK is not even installed.
21 bk status > /dev/null 2>&1 || exit 0
26 set `bk diff --normal $i | wc -l`
genCommitLog 12 bk changes -v -m -r${CLTAG}.. > CommitLog.new
genAuthors.in 27 # bk changes -and:USER: | sort -u
36 my $bk_u = "bk changes -and:USER: | sort -u |";
37 chomp(my $bk_root = `bk root`);
64 # Process "bk changes ..."
  /src/sys/net/npf/
npf_conn.c 430 npf_connkey_t *fw, *bk; local
468 bk = npf_conn_getbackkey(con, alen);
475 !npf_conn_conkey(npc, bk, di ^ PFIL_ALL, NPF_FLOW_BACK)) {
499 if (!npf_conndb_insert(conn_db, bk, con, NPF_FLOW_BACK)) {
571 npf_connkey_t *bk; local
600 bk = npf_conn_getbackkey(con, con->c_alen);
601 ret = npf_conndb_remove(conn_db, bk);
605 npf_conn_adjkey(bk, taddr, tport, nat_type_which[ntype]);
608 if (!npf_conndb_insert(conn_db, bk, con, NPF_FLOW_BACK)) {
741 npf_connkey_t *fw, *bk; local
814 npf_connkey_t *fw, *bk; local
859 npf_connkey_t *fw, *bk; local
974 const npf_connkey_t *bk = npf_conn_getbackkey(con, NPF_CONNKEY_ALEN(fw)); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
search.cc 205 base_kind bk;
256 bk = data.ambiguous ? bk_ambig : bk_not_base;
258 bk = bk_same_type;
260 bk = bk_via_virtual;
262 bk = bk_proper_base;
267 bk = bk_not_base;
272 switch (bk)
297 bk = bk_inaccessible;
303 *kind_ptr = bk;
204 base_kind bk; local
  /src/external/bsd/ntp/dist/ntpd/
ntp_crypto.c 2082 BIGNUM *bk /* BIGNUM * to */
2097 BN_bin2bn(dgst, len, bk);
2241 BIGNUM *bn, *bk, *r; local
2279 bctx = BN_CTX_new(); bk = BN_new(); bn = BN_new();
2281 BN_rand(bk, len * 8, -1, 1); /* k */
2283 BN_add(bn, bn, bk);
2285 BN_mod_exp(bk, g, bk, p, bctx); /* g^k mod p */
2286 bighash(bk, bk);
2361 BIGNUM *bn, *bk; local
    [all...]
  /src/external/bsd/ntp/dist/sntp/
Makefile.am 182 ## a bk repo and srcdir or scm-rev is unwritable.
188 $(AM_V_at)-bk root $(srcdir) >/dev/null 2>&1 && \
190 x=`bk -R prs -hr+ -nd:I: ChangeSet` && \
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TypeLoc.h 583 BuiltinType::Kind bk = getTypePtr()->getKind(); local
584 return (bk >= BuiltinType::UShort && bk <= BuiltinType::UInt128)
585 || (bk >= BuiltinType::Short && bk <= BuiltinType::Float128)
586 || bk == BuiltinType::UChar
587 || bk == BuiltinType::SChar;
  /src/sys/altq/
altq_jobs.c 1078 int64_t bk; local
1129 bk = 0;
1136 bk += cl->cl_rin.bytes;
1139 if (bk == 0)
1147 && (cl->cl_rin.bytes << SCALE_SHARE)/bk < min_share)
1148 min_share = (cl->cl_rin.bytes << SCALE_SHARE)/bk;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
IntervalMap.h 2124 KeyType bk = b().start();
2125 return Traits::startLess(ak, bk) ? bk : ak;
2131 KeyType bk = b().stop();
2132 return Traits::startLess(ak, bk) ? ak : bk;
  /src/external/bsd/wpa/dist/src/common/
dpp_backup.c 280 /* password = HKDF-Expand(bk, "Enveloped Data Password", length) */
281 res = dpp_hkdf_expand(key_len, auth->bk, key_len,
1152 /* password = HKDF-Expand(bk, "Enveloped Data Password", length) */
1153 res = dpp_hkdf_expand(key_len, auth->bk, key_len,
dpp_crypto.c 461 /* bk = HKDF-Extract(I-nonce | R-nonce, M.x | N.x [| L.x]) */
481 num_elem, addr, len, auth->bk);
485 "DPP: bk = HKDF-Extract(I-nonce | R-nonce, M.x | N.x [| L.x])",
486 auth->bk, hash_len);
488 /* ke = HKDF-Expand(bk, "DPP Key", length) */
489 res = dpp_hkdf_expand(hash_len, auth->bk, hash_len, info_ke, auth->ke,
495 "DPP: ke = HKDF-Expand(bk, \"DPP Key\", length)",
2112 /* cp = HKDF-Expand(bk, "CSR challengePassword", 64) */
2113 if (dpp_hkdf_expand(hash_len, auth->bk, hash_len,
2117 "DPP: cp = HKDF-Expand(bk, \"CSR challengePassword\", 64)"
    [all...]
dpp.h 330 u8 bk[DPP_MAX_HASH_LEN]; member in struct:dpp_authentication
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 2600 MDB_cursor *mc, *bk; local
2610 for (; mc; mc = bk->mc_next) {
2611 bk = malloc(size);
2612 if (!bk)
2614 *bk = *mc;
2615 mc->mc_backup = bk;
2624 *(MDB_xcursor *)(bk+1) = *mx;
2643 MDB_cursor **cursors = txn->mt_cursors, *mc, *next, *bk; local
2650 if ((bk = mc->mc_backup) != NULL) {
2653 mc->mc_next = bk->mc_next
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_disk_posix.c 1465 int64_t bk; local
1478 bk = HFS_BLOCKS(a->compressed_rsrc_position);
1479 bk += bk >> 7;
1480 if (bk > HFS_BLOCKS(a->filesize))
archive_write_set_format_iso9660.c 5843 const int bk = (1 << 7) - 1; local
5846 psize = (cnt + bk) & ~bk;
  /src/external/bsd/wpa/dist/wpa_supplicant/
ctrl_iface.c 630 int be, bk, vi, vo; local
632 /* format: BE,BK,VI,VO;max SP Length */
638 bk = atoi(pos);
655 if (bk)
7588 int be, bk, vi, vo; local
7590 /* format: BE,BK,VI,VO;max SP Length */
7596 bk = atoi(pos);
7613 if (bk)

Completed in 98 milliseconds