| /src/usr.bin/xlint/lint1/ |
| ckgetopt.c | 78 } ck; variable in typeref:struct:__anon8361 120 if (opt == ':' && ck.options[0] != ':') 123 const char *optptr = strchr(ck.options, opt); 125 ck.remaining[optptr - ck.options] = ' '; 135 for (const char *opt = ck.remaining; *opt != '\0'; opt++) { 140 lwarn = ck.options_lwarn; 142 warning_at(338, &ck.options_pos, *opt); 151 if (ck.while_level == 0) { 152 if (!is_getopt_condition(tn, &ck.options) [all...] |
| cksnprintb.c | 105 check_bit(checker *ck, uint64_t dir_lsb, uint64_t width, 108 unsigned lsb = (unsigned)(ck->new_style ? dir_lsb : dir_lsb - 1); 114 if (ck->covered & field_mask & bit(i)) { 118 ck->covered_len[i], ck->covered_start[i], 119 ck->new_style ? i : i + 1); 124 ck->covered |= field_mask; 127 ck->covered_start[i] = start; 128 ck->covered_len[i] = len; 132 if (!(ck->possible_value_bits & field_mask) [all...] |
| /src/sys/fs/puffs/ |
| puffs_node.c | 57 puffs_getvnode1(struct mount *mp, puffs_cookie_t ck, enum vtype type, 69 "bad node type", ck); 74 "VSIZENOTSET is not a valid size", ck); 79 error = vcache_get(mp, &ck, sizeof(ck), &vp); 135 puffs_getvnode(struct mount *mp, puffs_cookie_t ck, enum vtype type, 139 return puffs_getvnode1(mp, ck, type, vsize, rdev, true, vpp); 145 puffs_cookie_t ck, struct componentname *cnp, 152 if (ck == NULL) 160 if (ck == pmp->pmp_root_cookie) [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| add1.c | 291 mp_size_t ck; local 295 ck = cn - difw; 298 if (difs == 0 && ck == 0) 301 cprev = ck == cn ? 0 : cp[ck]; 310 if (--ck >= 0) 312 cprev = cp[ck]; 317 cc = cp[--ck]; 359 if (ck < 0) 362 if (--ck >= 0 465 mp_size_t ck; local [all...] |
| gamma.c | 333 int underflow = 0, sgn, ck; local 356 MPFR_DBGRES (ck = mpfr_ui_sub (tmp, 2, x, MPFR_RNDN)); 357 MPFR_ASSERTD (ck == 0); /* tmp = 2-x exactly */ 411 int ck; local 416 ck = mpfr_ui_sub (xp, 2, x, MPFR_RNDN); /* 2-x, exact */ 417 MPFR_ASSERTD(ck == 0); (void) ck; /* use ck to avoid a warning */ 439 ck = mpfr_sub_ui (xp, x, 1, MPFR_RNDN); /* x-1, exact */ 440 MPFR_ASSERTD(ck == 0); (void) ck; /* use ck to avoid a warning * [all...] |
| /src/external/bsd/wpa/dist/src/crypto/ |
| milenage.c | 82 * @ck: Buffer for CK = 128-bit confidentiality key (f3), or %NULL 89 u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar) 121 if (ck) { 126 if (aes_128_encrypt_block(k, tmp1, ck)) 129 ck[i] ^= opc[i]; 161 * milenage_generate - Generate AKA AUTN,IK,CK,RES 169 * @ck: Buffer for CK = 128-bit confidentiality key (f3), or %NULL 175 u8 *ck, u8 *res, size_t *res_len 237 u8 res[8], ck[16], ik[16]; local [all...] |
| milenage.h | 14 u8 *ck, u8 *res, size_t *res_len); 20 const u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len, 25 u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar);
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| ldapsync.c | 250 struct sync_cookie *ck, 257 ck->numcsns++; 258 ck->ctxcsn = ch_realloc( ck->ctxcsn, 259 (ck->numcsns+1) * sizeof(struct berval)); 260 BER_BVZERO( &ck->ctxcsn[ck->numcsns] ); 261 ck->sids = ch_realloc( ck->sids, ck->numcsns * sizeof(int)) [all...] |
| /src/external/bsd/unbound/dist/util/data/ |
| packed_rrset.c | 336 struct ub_packed_rrset_key* ck = regional_alloc(region, local 342 if(!ck) 344 ck->id = key->id; 345 memset(&ck->entry, 0, sizeof(ck->entry)); 346 ck->entry.hash = key->entry.hash; 347 ck->entry.key = ck; 348 ck->rk = key->rk; 349 ck->rk.dname = regional_alloc_init(region, key->rk.dname, [all...] |
| /src/sys/net/npf/ |
| npf_conndb.c | 164 npf_conndb_lookup(npf_t *npf, const npf_connkey_t *ck, npf_flow_t *flow) 167 const unsigned keylen = NPF_CONNKEY_LEN(ck); 175 val = thmap_get(cd->cd_map, ck->ck_key, keylen); 203 npf_conndb_insert(npf_conndb_t *cd, const npf_connkey_t *ck, 206 const unsigned keylen = NPF_CONNKEY_LEN(ck); 218 ok = thmap_put(cd->cd_map, ck->ck_key, keylen, val) == val; 229 npf_conndb_remove(npf_conndb_t *cd, npf_connkey_t *ck) 231 const unsigned keylen = NPF_CONNKEY_LEN(ck); 235 val = thmap_del(cd->cd_map, ck->ck_key, keylen);
|
| /src/lib/libtelnet/ |
| sra.c | 64 DesData ck; variable 190 common_key(ska, pkb, &ik, &ck); 199 pk_decode(xuser, user, &ck); 204 pk_encode(passprompt, xpassprompt, &ck); 215 pk_decode(xpass, pass, &ck); 224 skey.data = ck; 236 pk_encode(passprompt, xpassprompt, &ck); 278 common_key(ska, pkb, &ik, &ck); 302 pk_encode(user, xuser, &ck); 324 pk_decode(xpassprompt, passprompt, &ck); [all...] |
| pk.c | 66 extractideakey(BIGNUM *ck, IdeaData *ideakey) 78 BN_add(a, ck, z); 100 extractdeskey(BIGNUM *ck, DesData *deskey) 112 BN_add(a, ck, z);
|
| /src/external/bsd/wpa/dist/src/eap_common/ |
| eap_pax_common.c | 124 * @ck: Buffer for the derived Confirmation Key 130 u8 *mk, u8 *ck, u8 *ick, u8 *mid) 136 e, 2 * EAP_PAX_RAND_LEN, EAP_PAX_CK_LEN, ck) || 145 wpa_hexdump_key(MSG_MSGDUMP, "EAP-PAX: CK", ck, EAP_PAX_CK_LEN);
|
| eap_sim_common.h | 79 const u8 *ik, const u8 *ck, u8 *mk); 93 const u8 *ik, const u8 *ck, u8 *k_encr, 104 void eap_aka_prime_derive_ck_ik_prime(u8 *ck, u8 *ik, const u8 *sqn_ak, 110 const u8 *ik, const u8 *ck,
|
| eap_pax_common.h | 90 u8 *mk, u8 *ck, u8 *ick, u8 *mid);
|
| /src/external/bsd/wpa/dist/src/utils/ |
| pcsc_funcs.h | 24 unsigned char *ik, unsigned char *ck, unsigned char *auts);
|
| /src/sys/external/bsd/drm2/include/linux/ |
| lockdep.h | 94 lockdep_set_class(void *m, struct lock_class_key *ck)
|
| /src/external/bsd/unbound/dist/services/cache/ |
| dns.c | 96 struct ub_packed_rrset_key* ck; local 101 ck = NULL; 102 else ck = packed_rrset_copy_region( 107 if(ck) { 109 qrep->rrsets[i] = ck; 111 ck->entry.data)->ttl; 777 struct ub_packed_rrset_key* ck; local 832 ck = (struct ub_packed_rrset_key*)regional_alloc(region, 834 if(!ck) 836 memset(&ck->entry, 0, sizeof(ck->entry)) [all...] |
| /src/lib/libc/time/ |
| Makefile | 126 TIME_T_ALTERNATIVES_HEAD = int_least64_t.ck 127 TIME_T_ALTERNATIVES_TAIL = int_least32_t.ck uint_least32_t.ck \ 128 uint_least64_t.ck 650 CHECK_WEB_PAGES=theory.ck tz-art.ck tz-how-to.ck tz-link.ck 885 # If $(TZS) exists but 'make tzs.ck' fails, a maintainer should inspect the 913 check: check_mild back.ck now.c [all...] |
| /src/external/public-domain/tz/dist/ |
| Makefile | 126 TIME_T_ALTERNATIVES_HEAD = int_least64_t.ck 127 TIME_T_ALTERNATIVES_TAIL = int_least32_t.ck uint_least32_t.ck \ 128 uint_least64_t.ck 650 CHECK_WEB_PAGES=theory.ck tz-art.ck tz-how-to.ck tz-link.ck 885 # If $(TZS) exists but 'make tzs.ck' fails, a maintainer should inspect the 913 check: check_mild back.ck now.c [all...] |
| /src/external/bsd/wpa/dist/src/eap_server/ |
| eap_sim_db.h | 86 u8 *_rand, u8 *autn, u8 *ik, u8 *ck,
|
| /src/external/bsd/unbound/dist/respip/ |
| respip.c | 497 struct ub_packed_rrset_key* ck = regional_alloc(region, local 506 if(!ck) 508 ck->id = key->id; 509 memset(&ck->entry, 0, sizeof(ck->entry)); 510 ck->entry.hash = key->entry.hash; 511 ck->entry.key = ck; 512 ck->rk = key->rk; 514 ck->rk.dname = regional_alloc_init(region, key->rk.dname [all...] |
| /src/sys/arch/vax/vax/ |
| ctu.c | 282 unsigned short ck = 0; local 308 ck = (c & 0xff); 310 ck |= ((c & 0xff) << 8); 314 if (tck != ck) { 317 printf("Bad cksum: tck %x != ck %x\n", tck, ck);
|
| /src/sys/arch/x86/x86/ |
| x86_autoconf.c | 119 int i, ck, error, m, n; local 189 for (ck = i = 0; i < DEV_BSIZE; i++) 190 ck += mbr[i]; 195 DPRINTF(("matched with %d dev ck %x bios ck %x\n", 196 i, ck, be->cksum)); 197 if (be->cksum == ck && memcmp(&mbr[MBR_PART_OFFSET],
|
| /src/external/bsd/ntp/dist/ntpd/ |
| refclock_mx4200.c | 671 u_char ck; local 716 * $PMVXG,XXX, ....................*CK<cr><lf> 727 * CK Checksum 743 ck = mx4200_cksum(&pp->a_lastcode[1], pp->lencode - 4); 744 if (char2hex[ck >> 4] != cp[1] || char2hex[ck & 0xf] != cp[2]) { 1120 register u_char ck; local 1122 for (ck = 0; n-- > 0; cp++) 1123 ck ^= *cp; 1124 return (ck); 1605 u_char ck; local [all...] |