/openbmc/linux/tools/testing/selftests/arm64/pauth/ |
H A D | pac.c | 56 int n_same(struct signatures *old, struct signatures *new, int nkeys) in n_same() argument 64 if (nkeys == NKEYS) in n_same() 70 int n_same_single_set(struct signatures *sign, int nkeys) in n_same_single_set() argument 72 size_t vals[nkeys]; in n_same_single_set() 80 if (nkeys >= 4) in n_same_single_set() 83 for (int i = 0; i < nkeys - 1; i++) { in n_same_single_set() 84 for (int j = i + 1; j < nkeys; j++) { in n_same_single_set() 258 int nkeys = NKEYS; in TEST() local 267 nkeys = NKEYS - 1; in TEST() 280 if (nkeys == NKEYS) in TEST() [all …]
|
/openbmc/qemu/qga/ |
H A D | commands-common-ssh.c | 23 bool check_openssh_pub_keys(strList *keys, size_t *nkeys, Error **errp) in check_openssh_pub_keys() argument 35 if (nkeys) { in check_openssh_pub_keys() 36 *nkeys = n; in check_openssh_pub_keys()
|
H A D | commands-posix-ssh.c | 122 size_t nkeys, nauthkeys; in qmp_guest_ssh_add_authorized_keys() local 126 if (!check_openssh_pub_keys(keys, &nkeys, errp)) { in qmp_guest_ssh_add_authorized_keys() 149 authkeys = g_realloc_n(authkeys, nauthkeys + nkeys + 1, sizeof(char *)); in qmp_guest_ssh_add_authorized_keys() 150 memset(authkeys + nauthkeys, 0, (nkeys + 1) * sizeof(char *)); in qmp_guest_ssh_add_authorized_keys() 171 size_t nkeys = 0; in qmp_guest_ssh_remove_authorized_keys() local 205 new_keys[nkeys++] = *a; in qmp_guest_ssh_remove_authorized_keys()
|
H A D | commands-windows-ssh.c | 609 size_t nkeys, nauthkeys; in qmp_guest_ssh_add_authorized_keys() local 612 if (!check_openssh_pub_keys(keys, &nkeys, errp)) { in qmp_guest_ssh_add_authorized_keys() 638 authkeys = g_realloc_n(authkeys, nauthkeys + nkeys + 1, sizeof(char *)); in qmp_guest_ssh_add_authorized_keys() 641 memset(authkeys + nauthkeys, 0, (nkeys + 1) * sizeof(char *)); in qmp_guest_ssh_add_authorized_keys() 673 size_t nkeys = 0; in qmp_guest_ssh_remove_authorized_keys() local 707 new_keys[nkeys++] = *a; in qmp_guest_ssh_remove_authorized_keys()
|
H A D | commands-common-ssh.h | 9 bool check_openssh_pub_keys(strList *keys, size_t *nkeys, Error **errp);
|
/openbmc/linux/net/sched/ |
H A D | cls_flow.c | 47 u32 nkeys; member 318 for (n = 0; n < f->nkeys; n++) { in flow_classify() 325 classid = jhash2(keys, f->nkeys, f->hashrnd); in flow_classify() 400 unsigned int nkeys = 0; in flow_change() local 424 nkeys = hweight32(keymask); in flow_change() 425 if (nkeys == 0) in flow_change() 462 fnew->nkeys = fold->nkeys; in flow_change() 476 if (mode != FLOW_MODE_HASH && nkeys > 1) in flow_change() 496 if (mode != FLOW_MODE_HASH && nkeys > 1) in flow_change() 525 fnew->nkeys = nkeys; in flow_change()
|
H A D | act_pedit.c | 214 if (!parm->nkeys) { in tcf_pedit_init() 219 ksize = parm->nkeys * sizeof(struct tc_pedit_key); in tcf_pedit_init() 233 tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys, extack); in tcf_pedit_init() 247 nparms->tcfp_nkeys = parm->nkeys; in tcf_pedit_init() 522 opt->nkeys = parms->tcfp_nkeys; in tcf_pedit_dump()
|
H A D | cls_u32.c | 160 for (i = n->sel.nkeys; i > 0; i--, key++) { in u32_classify() 829 new = kzalloc(struct_size(new, sel.keys, s->nkeys), GFP_KERNEL); in u32_init_knode() 856 memcpy(&new->sel, s, struct_size(s, keys, s->nkeys)); in u32_init_knode() 1100 sel_size = struct_size(s, keys, s->nkeys); in u32_change() 1106 n = kzalloc(struct_size(n, sel.keys, s->nkeys), GFP_KERNEL); in u32_change() 1113 n->pf = __alloc_percpu(struct_size(n->pf, kcnts, s->nkeys), in u32_change() 1367 if (nla_put(skb, TCA_U32_SEL, struct_size(&n->sel, keys, n->sel.nkeys), in u32_dump() 1417 gpf = kzalloc(struct_size(gpf, kcnts, n->sel.nkeys), GFP_KERNEL); in u32_dump() 1427 for (i = 0; i < n->sel.nkeys; i++) in u32_dump() 1431 if (nla_put_64bit(skb, TCA_U32_PCNT, struct_size(gpf, kcnts, n->sel.nkeys), in u32_dump()
|
/openbmc/linux/include/net/tc_act/ |
H A D | tc_pedit.h | 43 int nkeys; in tcf_pedit_nkeys() local 47 nkeys = parms->tcfp_nkeys; in tcf_pedit_nkeys() 50 return nkeys; in tcf_pedit_nkeys()
|
/openbmc/linux/include/uapi/linux/tc_act/ |
H A D | tc_pedit.h | 63 unsigned char nkeys; member
|
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | cxgb4_tc_u32.c | 55 for (i = 0; i < cls->knode.sel->nkeys; i++) { in fill_match_fields() 255 for (j = 0; j < cls->knode.sel->nkeys; j++) { in cxgb4_config_knode()
|
/openbmc/linux/drivers/input/misc/ |
H A D | apanel.c | 57 u16 nkeys; member
|
/openbmc/linux/drivers/net/ethernet/netronome/nfp/abm/ |
H A D | cls.c | 62 if (knode->sel->nkeys != 1) { in nfp_abm_u32_check_knode()
|
/openbmc/linux/security/keys/ |
H A D | gc.c | 166 atomic_dec(&key->user->nkeys); in key_gc_unused_keys()
|
H A D | proc.c | 315 atomic_read(&user->nkeys), in proc_key_users_show()
|
H A D | internal.h | 59 atomic_t nkeys; /* number of keys */ member
|
H A D | key.c | 94 atomic_set(&candidate->nkeys, 0); in key_user_lookup() 321 atomic_inc(&user->nkeys); in key_alloc()
|
H A D | keyctl.c | 1030 atomic_dec(&key->user->nkeys); in keyctl_chown_key() 1031 atomic_inc(&newowner->nkeys); in keyctl_chown_key()
|
/openbmc/linux/tools/include/uapi/linux/ |
H A D | pkt_cls.h | 175 unsigned char nkeys; member
|
/openbmc/linux/include/uapi/linux/ |
H A D | pkt_cls.h | 251 unsigned char nkeys; member
|
/openbmc/linux/drivers/md/bcache/ |
H A D | journal.c | 851 unsigned int nkeys) in journal_wait_for_write() argument 866 sectors = __set_blocks(w->data, w->data->keys + nkeys, in journal_wait_for_write()
|
H A D | sysfs.c | 726 return c->gc_stats.nkeys in bch_average_key_size() 727 ? div64_u64(c->gc_stats.data, c->gc_stats.nkeys) in bch_average_key_size()
|
H A D | bcache.h | 486 size_t nkeys; member
|
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/ |
H A D | stmmac_tc.c | 101 if (sel->nkeys <= 0 || sel->nkeys > 1) in tc_fill_entry()
|
/openbmc/linux/drivers/hid/ |
H A D | wacom_wac.c | 520 int keys = 0, nkeys = 0; in wacom_intuos_pad() local 551 nkeys = 3; in wacom_intuos_pad() 567 nkeys = 3; in wacom_intuos_pad() 624 nkeys = 3; in wacom_intuos_pad() 640 prox = (buttons & ~(~0U << nbuttons)) | (keys & ~(~0U << nkeys)) | in wacom_intuos_pad() 645 for (i = 0; i < nkeys; i++) in wacom_intuos_pad()
|