| /freebsd/crypto/openssl/crypto/ec/curve448/ |
| H A D | field.h | 37 } ALIGNED gf_s, gf[1]; typedef 44 static INLINE_UNUSED void gf_copy(gf out, const gf a) in gf_copy() 49 static INLINE_UNUSED void gf_add_RAW(gf out, const gf a, const gf b); 50 static INLINE_UNUSED void gf_sub_RAW(gf out, const gf a, const gf b); 51 static INLINE_UNUSED void gf_bias(gf inout, int amount); 52 static INLINE_UNUSED void gf_weak_reduce(gf inout); 54 void gf_strong_reduce(gf inout); 55 void gf_add(gf out, const gf a, const gf b); 56 void gf_sub(gf out, const gf a, const gf b); 57 void ossl_gf_mul(gf_s *RESTRICT out, const gf a, const gf b); [all …]
|
| H A D | f_generic.c | 14 static const gf MODULUS = { 21 void gf_serialize(uint8_t serial[SER_BYTES], const gf x, int with_hibit) in gf_serialize() 26 gf red; in gf_serialize() 46 mask_t gf_hibit(const gf x) in gf_hibit() 48 gf y; in gf_hibit() 56 mask_t gf_lobit(const gf x) in gf_lobit() 58 gf y; in gf_lobit() 66 mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit, in gf_deserialize() 97 void gf_strong_reduce(gf a) in gf_strong_reduce() 137 void gf_sub(gf d, const gf a, const gf b) in gf_sub() [all …]
|
| H A D | curve448.c | 38 static void gf_invert(gf y, const gf x, int assert_nonzero) in gf_invert() 41 gf t1, t2; in gf_invert() 61 gf a, b, c, d; in point_double_internal() 104 gf eu; in pniels_to_pt() 125 gf a, b, c; in add_niels_to_pt() 146 gf a, b, c; in sub_niels_from_pt() 167 gf L0; in add_pniels_to_pt() 177 gf L0; in sub_pniels_from_pt() 189 gf a, b; in ossl_curve448_point_eq() 203 gf a, b, c; in ossl_curve448_point_valid() [all …]
|
| H A D | point_448.h | 26 gf a, b, c; 30 gf z; 57 gf x, y, z, t;
|
| /freebsd/sys/netlink/ |
| H A D | netlink_generic.c | 96 struct genl_family *gf; in genl_family() local 98 gf = &families[family_id - GENL_MIN_ID]; in genl_family() 100 gf->family_name != NULL, ("family %u does not exist", family_id)); in genl_family() 101 return (gf); in genl_family() 105 genl_family_id(const struct genl_family *gf) in genl_family_id() argument 107 MPASS(gf >= &families[0] && gf < &families[MAX_FAMILIES]); in genl_family_id() 108 return ((uint16_t)(gf - &families[0]) + GENL_MIN_ID); in genl_family_id() 118 struct genl_family *gf; in genl_handle_message() local 130 gf = &families[family_id]; in genl_handle_message() 132 gf->family_name == NULL)) { in genl_handle_message() [all …]
|
| /freebsd/crypto/openssl/crypto/ec/curve448/arch_64/ |
| H A D | f_impl.h | 26 void gf_add_RAW(gf out, const gf a, const gf b) in gf_add_RAW() 36 void gf_sub_RAW(gf out, const gf a, const gf b) in gf_sub_RAW() 47 void gf_bias(gf a, int amt) in gf_bias() 51 void gf_weak_reduce(gf a) in gf_weak_reduce()
|
| H A D | f_impl64.c | 24 void ossl_gf_mul(gf_s *RESTRICT cs, const gf as, const gf bs) 76 void ossl_gf_mulw_unsigned(gf_s *RESTRICT cs, const gf as, uint32_t b) 102 void ossl_gf_sqr(gf_s *RESTRICT cs, const gf as)
|
| /freebsd/crypto/openssl/crypto/ec/curve448/arch_32/ |
| H A D | f_impl.h | 27 void gf_add_RAW(gf out, const gf a, const gf b) in gf_add_RAW() 35 void gf_sub_RAW(gf out, const gf a, const gf b) in gf_sub_RAW() 43 void gf_bias(gf a, int amt) in gf_bias() 52 void gf_weak_reduce(gf a) in gf_weak_reduce()
|
| H A D | f_impl32.c | 24 void ossl_gf_mul(gf_s *RESTRICT cs, const gf as, const gf bs) 73 void ossl_gf_mulw_unsigned(gf_s *RESTRICT cs, const gf as, uint32_t b) 101 void ossl_gf_sqr(gf_s *RESTRICT cs, const gf as)
|
| /freebsd/usr.sbin/chkgrp/ |
| H A D | chkgrp.c | 55 FILE *gf; in main() local 86 if ((gf = fopen(gfn, "r")) == NULL) in main() 91 if ((line = fgetln(gf, &len)) == NULL) in main() 185 if (ferror(gf)) in main() 189 fclose(gf); in main()
|
| /freebsd/contrib/nvi/regex/ |
| H A D | engine.c | 140 const sopno gf = g->firststate+1; /* +1 for OEND */ in matcher() local 185 endp = fast(m, start, stop, gf, gl); in matcher() 197 endp = slow(m, m->coldp, stop, gf, gl); in matcher() 218 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 229 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher() 241 endp = slow(m, m->coldp, endp-1, gf, gl); in matcher() 252 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher()
|
| /freebsd/lib/libc/regex/ |
| H A D | engine.c | 197 const sopno gf = g->firststate+1; /* +1 for OEND */ in matcher() local 295 endp = walk(m, start, stop, gf, gl, true); in matcher() 311 endp = walk(m, m->coldp, stop, gf, gl, false); in matcher() 333 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 344 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher() 356 endp = walk(m, m->coldp, endp-1, gf, gl, false); in matcher() 367 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | regengine.inc | 143 const sopno gf = g->firststate+1; /* +1 for OEND */ 188 endp = fast(m, start, stop, gf, gl); 202 endp = slow(m, m->coldp, stop, gf, gl); 223 dp = dissect(m, m->coldp, endp, gf, gl); 234 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); 246 endp = slow(m, m->coldp, endp-1, gf, gl); 257 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
|
| /freebsd/sys/modules/iwlwifi/ |
| H A D | Makefile | 21 SRCS+= cfg/rf-fm.c cfg/rf-gf.c cfg/rf-hr.c cfg/rf-jf.c cfg/rf-pe.c
|
| /freebsd/contrib/file/tests/ |
| H A D | matilde.arm.testfile | 86 gf��c}a�?�9�<��:����/�!t�� <��A*�JaJ�W�i���9�l��m�-��L3�0<ˊ���a�,����B���,�)�%G�t���1P<.��?…
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicsNVVM.td | 178 string gf = Geom#":"#Frag; 321 !eq(gf,"m8n8:x1") : !listsplat(llvm_i32_ty, 1), 322 !eq(gf,"m8n8:x2") : !listsplat(llvm_i32_ty, 2), 323 !eq(gf,"m8n8:x4") : !listsplat(llvm_i32_ty, 4), 326 !eq(gf,"m16n16:x1") : !listsplat(llvm_i32_ty, 2), 327 !eq(gf,"m16n16:x2") : !listsplat(llvm_i32_ty, 4), 330 !eq(gf,"m8n16:x1") : !listsplat(llvm_i32_ty, 1), 331 !eq(gf,"m8n16:x2") : !listsplat(llvm_i32_ty, 2), 332 !eq(gf,"m8n16:x4") : !listsplat(llvm_i32_ty, 4),
|
| /freebsd/sys/netgraph/bluetooth/include/ |
| H A D | ng_hci.h | 381 #define NG_HCI_OPCODE(gf,cf) ((((gf) & 0x3f) << 10) | ((cf) & 0x3ff)) argument
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | animation | 61 >8 string 3gf \b, MPEG v4 system, 3GPP
|
| /freebsd/contrib/ncurses/misc/ |
| H A D | terminfo.src | 1422 rmso=\E), rmul=\E], rs1=\ER, setb=\E@%p1%Pb%gb%gf%d%d, 1423 setf=\E@%p1%Pf%gb%gf%d%d, sgr0=\E}\E]\E>\E), smcup=\Ei,
|