/illumos-gate/usr/src/common/crypto/ecc/ |
H A D | ecl.c | 61 ECGroup *group; in ECGroup_new() local 63 group = (ECGroup *) kmem_alloc(sizeof(ECGroup), kmflag); in ECGroup_new() 65 group = (ECGroup *) malloc(sizeof(ECGroup)); in ECGroup_new() 67 if (group == NULL) in ECGroup_new() 69 group->constructed = MP_YES; in ECGroup_new() 70 group->meth = NULL; in ECGroup_new() 71 group->text = NULL; in ECGroup_new() 72 MP_DIGITS(&group->curvea) = 0; in ECGroup_new() 73 MP_DIGITS(&group->curveb) = 0; in ECGroup_new() 74 MP_DIGITS(&group->genx) = 0; in ECGroup_new() [all …]
|
H A D | ecp_jac.c | 65 mp_int *ry, mp_int *rz, const ECGroup *group) in ec_GFp_pt_aff2jac() argument 75 if (group->meth->field_enc) { in ec_GFp_pt_aff2jac() 76 MP_CHECKOK(group->meth->field_enc(rz, rz, group->meth)); in ec_GFp_pt_aff2jac() 89 mp_int *rx, mp_int *ry, const ECGroup *group) in ec_GFp_pt_jac2aff() argument 112 MP_CHECKOK(group->meth->field_div(NULL, pz, &z1, group->meth)); in ec_GFp_pt_jac2aff() 113 MP_CHECKOK(group->meth->field_sqr(&z1, &z2, group->meth)); in ec_GFp_pt_jac2aff() 114 MP_CHECKOK(group->meth->field_mul(&z1, &z2, &z3, group->meth)); in ec_GFp_pt_jac2aff() 115 MP_CHECKOK(group->meth->field_mul(px, &z2, rx, group->meth)); in ec_GFp_pt_jac2aff() 116 MP_CHECKOK(group->meth->field_mul(py, &z3, ry, group->meth)); in ec_GFp_pt_jac2aff() 153 mp_int *ry, mp_int *rz, const ECGroup *group) in ec_GFp_pt_add_jac_aff() argument [all …]
|
H A D | ecl_mult.c | 58 ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px, in ECPoint_mul() argument 64 ARGCHK((k != NULL) && (group != NULL), MP_BADARG); in ECPoint_mul() 68 if (mp_cmp(k, &group->order) > 0) { in ECPoint_mul() 70 MP_CHECKOK(mp_mod(k, &group->order, &kt)); in ECPoint_mul() 79 if (group->base_point_mul) { in ECPoint_mul() 80 MP_CHECKOK(group->base_point_mul(&kt, rx, ry, group)); in ECPoint_mul() 82 MP_CHECKOK(group-> in ECPoint_mul() 83 point_mul(&kt, &group->genx, &group->geny, rx, ry, in ECPoint_mul() 84 group)); in ECPoint_mul() 87 if (group->meth->field_enc) { in ECPoint_mul() [all …]
|
H A D | ec2_mont.c | 60 gf2m_Mdouble(mp_int *x, mp_int *z, const ECGroup *group, int kmflag) in gf2m_Mdouble() argument 68 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth)); in gf2m_Mdouble() 69 MP_CHECKOK(group->meth->field_sqr(z, &t1, group->meth)); in gf2m_Mdouble() 70 MP_CHECKOK(group->meth->field_mul(x, &t1, z, group->meth)); in gf2m_Mdouble() 71 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth)); in gf2m_Mdouble() 72 MP_CHECKOK(group->meth->field_sqr(&t1, &t1, group->meth)); in gf2m_Mdouble() 73 MP_CHECKOK(group->meth-> in gf2m_Mdouble() 74 field_mul(&group->curveb, &t1, &t1, group->meth)); in gf2m_Mdouble() 75 MP_CHECKOK(group->meth->field_add(x, &t1, x, group->meth)); in gf2m_Mdouble() 88 const ECGroup *group, int kmflag) in gf2m_Madd() argument [all …]
|
H A D | ecp_jm.c | 64 mp_int *raz4, mp_int scratch[], const ECGroup *group) in ec_GFp_pt_dbl_jm() argument 87 MP_CHECKOK(group->meth->field_sqr(px, t0, group->meth)); in ec_GFp_pt_dbl_jm() 88 MP_CHECKOK(group->meth->field_add(t0, t0, M, group->meth)); in ec_GFp_pt_dbl_jm() 89 MP_CHECKOK(group->meth->field_add(t0, M, t0, group->meth)); in ec_GFp_pt_dbl_jm() 90 MP_CHECKOK(group->meth->field_add(t0, paz4, M, group->meth)); in ec_GFp_pt_dbl_jm() 93 MP_CHECKOK(group->meth->field_mul(py, pz, S, group->meth)); in ec_GFp_pt_dbl_jm() 94 MP_CHECKOK(group->meth->field_add(S, S, rz, group->meth)); in ec_GFp_pt_dbl_jm() 97 MP_CHECKOK(group->meth->field_sqr(py, t0, group->meth)); in ec_GFp_pt_dbl_jm() 98 MP_CHECKOK(group->meth->field_add(t0, t0, t0, group->meth)); in ec_GFp_pt_dbl_jm() 99 MP_CHECKOK(group->meth->field_sqr(t0, t1, group->meth)); in ec_GFp_pt_dbl_jm() [all …]
|
H A D | ec2_aff.c | 79 const ECGroup *group) in ec_GF2m_pt_add_aff() argument 107 MP_CHECKOK(group->meth->field_add(py, qy, &tempy, group->meth)); in ec_GF2m_pt_add_aff() 108 MP_CHECKOK(group->meth->field_add(px, qx, &tempx, group->meth)); in ec_GF2m_pt_add_aff() 109 MP_CHECKOK(group->meth-> in ec_GF2m_pt_add_aff() 110 field_div(&tempy, &tempx, &lambda, group->meth)); in ec_GF2m_pt_add_aff() 111 MP_CHECKOK(group->meth->field_sqr(&lambda, &tempx, group->meth)); in ec_GF2m_pt_add_aff() 112 MP_CHECKOK(group->meth-> in ec_GF2m_pt_add_aff() 113 field_add(&tempx, &lambda, &tempx, group->meth)); in ec_GF2m_pt_add_aff() 114 MP_CHECKOK(group->meth-> in ec_GF2m_pt_add_aff() 115 field_add(&tempx, &group->curvea, &tempx, group->meth)); in ec_GF2m_pt_add_aff() [all …]
|
H A D | ecp_aff.c | 85 const ECGroup *group) in ec_GFp_pt_add_aff() argument 114 MP_CHECKOK(group->meth->field_sub(py, qy, &tempy, group->meth)); in ec_GFp_pt_add_aff() 115 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth)); in ec_GFp_pt_add_aff() 116 MP_CHECKOK(group->meth-> in ec_GFp_pt_add_aff() 117 field_div(&tempy, &tempx, &lambda, group->meth)); in ec_GFp_pt_add_aff() 127 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth)); in ec_GFp_pt_add_aff() 129 if (group->meth->field_enc) { in ec_GFp_pt_add_aff() 130 MP_CHECKOK(group->meth->field_enc(&temp, &temp, group->meth)); in ec_GFp_pt_add_aff() 132 MP_CHECKOK(group->meth-> in ec_GFp_pt_add_aff() 133 field_mul(&tempx, &temp, &tempx, group->meth)); in ec_GFp_pt_add_aff() [all …]
|
H A D | ec2_test.c | 118 ECGroup_free(group); \ 119 group = ECGroup_fromHex(params, KM_SLEEP); \ 120 if (group == NULL) { \ 125 MP_CHECKOK( ectest_curve_GF2m(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \ 131 ECGroup_free(group); \ 132 group = ECGroup_fromName(name, KM_SLEEP); \ 133 if (group == NULL) { \ 137 MP_CHECKOK( ectest_curve_GF2m(group, ectestPrint, ectestTime, 0, KM_SLEEP) ); \ 145 ectest_curve_GF2m(ECGroup *group, int ectestPrint, int ectestTime, in ectest_curve_GF2m() argument 164 MP_CHECKOK(mp_sub(&group->order, &one, &order_1)); in ectest_curve_GF2m() [all …]
|
H A D | ecp_test.c | 117 ECGroup_free(group); \ 118 group = ECGroup_fromHex(params, KM_SLEEP); \ 119 if (group == NULL) { \ 124 MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \ 130 ECGroup_free(group); \ 131 group = ECGroup_fromName(name, KM_SLEEP); \ 132 if (group == NULL) { \ 136 MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 0, KM_SLEEP) ); \ 144 ectest_curve_GFp(ECGroup *group, int ectestPrint, int ectestTime, in ectest_curve_GFp() argument 163 MP_CHECKOK(mp_sub(&group->order, &one, &order_1)); in ectest_curve_GFp() [all …]
|
/illumos-gate/usr/src/pkg/manifests/ |
H A D | system-kernel.p5m | 60 dir path=boot group=sys 61 $(i386_ONLY)dir path=boot/acpi group=sys 62 $(i386_ONLY)dir path=boot/acpi/tables group=sys 63 dir path=boot/solaris group=sys 64 dir path=boot/solaris/bin group=sys 65 $(i386_ONLY)file path=boot/solaris/bin/create_diskmap group=sys mode=0555 66 file path=boot/solaris/bin/create_ramdisk group=sys mode=0555 67 file path=boot/solaris/bin/extract_boot_filelist group=sys mode=0555 70 $(i386_ONLY)file path=boot/solaris/bin/symdef group=sys mode=0555 71 $(i386_ONLY)file path=boot/solaris/bin/update_grub group=sys mode=0555 [all …]
|
H A D | developer-debug-mdb.p5m | 35 dir path=kernel group=sys 36 dir path=kernel/kmdb group=sys 37 dir path=kernel/kmdb/$(ARCH64) group=sys 38 file path=kernel/kmdb/$(ARCH64)/arp group=sys mode=0555 39 file path=kernel/kmdb/$(ARCH64)/cpc group=sys mode=0555 40 $(i386_ONLY)file path=kernel/kmdb/$(ARCH64)/cpu.generic group=sys mode=0555 41 $(i386_ONLY)file path=kernel/kmdb/$(ARCH64)/cpu_ms.AuthenticAMD.15 group=sys \ 43 file path=kernel/kmdb/$(ARCH64)/crypto group=sys mode=0555 44 file path=kernel/kmdb/$(ARCH64)/genunix group=sys mode=0555 45 file path=kernel/kmdb/$(ARCH64)/hook group=sys mode=0555 [all …]
|
H A D | system-kernel-platform.p5m | 40 value="core kernel software for a specific hardware platform group" 43 dir path=platform group=sys 44 $(i386_ONLY)dir path=platform/i86pc group=sys 45 $(i386_ONLY)dir path=platform/i86pc/$(ARCH64) group=sys 46 $(i386_ONLY)dir path=platform/i86pc/kernel group=sys 47 $(i386_ONLY)dir path=platform/i86pc/kernel/$(ARCH64) group=sys 48 $(i386_ONLY)file path=platform/i86pc/kernel/$(ARCH64)/unix group=sys mode=0755 \ 50 $(i386_ONLY)dir path=platform/i86pc/kernel/cpu group=sys 51 $(i386_ONLY)dir path=platform/i86pc/kernel/cpu/$(ARCH64) group=sys 53 group=sys mode=0755 [all …]
|
H A D | text-doctools.p5m | 36 dir path=usr group=sys 59 dir path=usr/lib/font/devpost group=lp 60 file path=usr/lib/font/devpost/AB group=lp mode=0444 61 file path=usr/lib/font/devpost/AB.name group=lp mode=0444 62 file path=usr/lib/font/devpost/AB.out group=lp mode=0444 63 file path=usr/lib/font/devpost/AI group=lp mode=0444 64 file path=usr/lib/font/devpost/AI.name group=lp mode=0444 65 file path=usr/lib/font/devpost/AI.out group=lp mode=0444 66 file path=usr/lib/font/devpost/AR group=lp mode=0444 67 file path=usr/lib/font/devpost/AR.name group=lp mode=0444 [all …]
|
H A D | print-lp.p5m | 33 dir path=etc group=sys 34 dir path=etc/lp owner=lp group=lp mode=0775 35 dir path=etc/lp/classes owner=lp group=lp mode=0775 36 dir path=etc/lp/fd group=lp 37 file path=etc/lp/fd/catv.fd group=lp 38 file path=etc/lp/fd/download.fd group=lp 39 file path=etc/lp/fd/dpost.fd group=lp 40 file path=etc/lp/fd/postio.fd group=lp 41 file path=etc/lp/fd/postior.fd group=lp 42 file path=etc/lp/fd/postpages.fd group=lp [all …]
|
H A D | service-network-uucp.p5m | 32 dir path=etc group=sys 33 dir path=etc/init.d group=sys 34 file path=etc/init.d/uucp group=sys mode=0744 \ 36 dir path=etc/rc2.d group=sys 38 dir path=etc/uucp owner=uucp group=uucp 39 file path=etc/uucp/Config owner=uucp group=uucp \ 41 file path=etc/uucp/Devconfig owner=uucp group=uucp \ 43 file path=etc/uucp/Devices owner=uucp group=uucp \ 45 file path=etc/uucp/Dialcodes owner=uucp group=uucp \ 47 file path=etc/uucp/Dialers owner=uucp group=uucp \ [all …]
|
H A D | service-network-smtp-sendmail.p5m | 35 dir path=etc group=sys 38 dir path=etc/mail group=mail 40 dir path=etc/mail/cf group=mail 41 file path=etc/mail/cf/README group=mail mode=0444 42 dir path=etc/mail/cf/cf group=mail 43 file path=etc/mail/cf/cf/Makefile group=mail mode=0444 46 file path=etc/mail/cf/cf/sendmail.cf group=mail mode=0444 47 file path=etc/mail/cf/cf/sendmail.mc group=mail mode=0444 48 file path=etc/mail/cf/cf/submit.cf group=mail mode=0444 49 file path=etc/mail/cf/cf/submit.mc group=mail mode=0444 [all …]
|
/illumos-gate/usr/src/head/ |
H A D | grp.h | 50 struct group { /* see getgrent(3C) */ struct 57 extern struct group *getgrgid(gid_t); /* MT-unsafe */ argument 58 extern struct group *getgrnam(const char *); /* MT-unsafe */ 61 extern struct group *getgrent_r(struct group *, char *, int); 62 extern struct group *fgetgrent_r(FILE *, struct group *, char *, int); 65 extern struct group *fgetgrent(FILE *); /* MT-unsafe */ 73 extern struct group *getgrent(void); /* MT-unsafe */ 120 extern int getgrgid_r(gid_t, struct group *, char *, 121 size_t, struct group **); 122 extern int getgrnam_r(const char *, struct group *, char *, [all …]
|
/illumos-gate/usr/src/uts/common/io/nxge/ |
H A D | nxge_hio.c | 64 static void nxge_grp_dc_map(nxge_grp_t *group); 267 if (set->group[i] != NULL) { in nxge_grp_cleanup() 268 KMEM_FREE(set->group[i], sizeof (nxge_grp_t)); in nxge_grp_cleanup() 269 set->group[i] = NULL; in nxge_grp_cleanup() 278 if (set->group[i] != NULL) { in nxge_grp_cleanup() 279 KMEM_FREE(set->group[i], sizeof (nxge_grp_t)); in nxge_grp_cleanup() 280 set->group[i] = NULL; in nxge_grp_cleanup() 307 nxge_grp_t *group; in nxge_grp_add() local 310 group = KMEM_ZALLOC(sizeof (*group), KM_SLEEP); in nxge_grp_add() 311 group->nxge = nxge; in nxge_grp_add() [all …]
|
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/boston/devtree/ |
H A D | picl_asr.conf | 68 cpu0-bank0 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 69 cpu0-bank0 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?… 70 cpu0-bank0 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?I… 71 cpu0-bank1 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 72 cpu0-bank1 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?I… 73 cpu0-bank1 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?… 75 cpu0-bank2 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=1 76 cpu0-bank2 memory-module disabled /memory-controller@0,0/memory-module-group?ID=1/memory-module I?… 77 cpu0-bank2 memory-module unused /memory-controller@0,0/memory-module-group?ID=1/memory-module I?I… 78 cpu0-bank3 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=1 [all …]
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | getgrnam_r.c | 62 struct group * 63 _uncached_getgrnam_r(const char *name, struct group *result, char *buffer, 66 struct group * 67 _uncached_getgrgid_r(gid_t gid, struct group *result, char *buffer, int buflen); 73 struct group * 74 getgrnam_r(const char *name, struct group *result, char *buffer, int buflen) in getgrnam_r() 86 return ((struct group *)NSS_XbyY_FINI(&arg)); in getgrnam_r() 93 struct group * 94 getgrgid_r(gid_t gid, struct group *result, char *buffer, int buflen) in getgrgid_r() 102 return ((struct group *)NSS_XbyY_FINI(&arg)); in getgrgid_r() [all …]
|
/illumos-gate/usr/src/cmd/rcm_daemon/common/ |
H A D | mpxio_rcm.c | 72 typedef struct group { struct 78 struct group *next; argument 470 group_t *group; in get_affected_clients() local 477 for (group = group_list; group != NULL; group = group->next) { in get_affected_clients() 480 if (bsearch(&phci, group->phcis, group->nphcis, sizeof (phci_t), in get_affected_clients() 491 detect_client_change(hdl, cmd, flags, group, rsrc)) { in get_affected_clients() 492 if (merge_clients(&nclients, &clients, group) < 0) { in get_affected_clients() 529 detect_client_change(rcm_handle_t *hdl, int cmd, int flags, group_t *group, in detect_client_change() argument 540 for (i = 0; i < group->nphcis; i++) { in detect_client_change() 543 if (strcmp(group->phcis[i].path, rsrc) == 0) in detect_client_change() [all …]
|
/illumos-gate/usr/src/lib/libshare/common/ |
H A D | libshare.c | 318 sa_find_group_handle(sa_group_t group) in sa_find_group_handle() argument 320 xmlNodePtr node = (xmlNodePtr)group; in sa_find_group_handle() 461 checksubdirgroup(sa_group_t group, char *newpath, int strictness) in checksubdirgroup() argument 472 for (share = sa_get_share(group, NULL); share != NULL; in checksubdirgroup() 529 sa_group_t group; in checksubdir() local 533 for (group = sa_get_group(handle, NULL); in checksubdir() 534 group != NULL && issub == SA_OK; in checksubdir() 535 group = sa_get_next_group(group)) { in checksubdir() 536 if (sa_group_is_zfs(group)) { in checksubdir() 538 for (subgroup = sa_get_sub_group(group); in checksubdir() [all …]
|
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/ents/devtree/ |
H A D | picl_asr.conf | 32 dimm0 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 33 dimm0 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 34 dimm0 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 35 dimm1 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 36 dimm1 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 37 dimm1 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 38 dimm2 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=1 39 dimm2 memory-module disabled /memory-controller@0,0/memory-module-group?ID=1/memory-module I?ID=0 40 dimm2 memory-module unused /memory-controller@0,0/memory-module-group?ID=1/memory-module I?ID=1 41 dimm3 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=1 [all …]
|
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/mpxu/devtree/ |
H A D | picl_asr.conf | 32 dimm0 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 33 dimm0 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 34 dimm0 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 35 dimm1 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 36 dimm1 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 37 dimm1 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 38 dimm2 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=1 39 dimm2 memory-module disabled /memory-controller@0,0/memory-module-group?ID=1/memory-module I?ID=0 40 dimm2 memory-module unused /memory-controller@0,0/memory-module-group?ID=1/memory-module I?ID=1 41 dimm3 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=1 [all …]
|
/illumos-gate/usr/src/cmd/ipf/examples/ |
H A D | BASIC_1.FW | 25 block in log proto tcp all flags S/SA head 101 group 100 28 block in log proto tcp all flags S/SA head 201 group 200 29 block in log proto udp all head 202 group 200 36 block in log quick from 127.0.0.0/8 to any group 100 37 block in log quick from any to 127.0.0.0/8 group 100 38 block in log quick from 127.0.0.0/8 to any group 200 39 block in log quick from any to 127.0.0.0/8 group 200 49 block in log quick from 10.0.0.0/8 to any group 100 50 block in log quick from 192.168.0.0/16 to any group 100 51 block in log quick from 172.16.0.0/12 to any group 100 [all …]
|