/freebsd/sys/dev/ichwd/ |
H A D | ichwd.c | 133 { DEVICEID_CPT0, "Intel Cougar Point watchdog timer", 10, 2 }, 134 { DEVICEID_CPT1, "Intel Cougar Point watchdog timer", 10, 2 }, 135 { DEVICEID_CPT2, "Intel Cougar Point watchdog timer", 10, 2 }, 136 { DEVICEID_CPT3, "Intel Cougar Point watchdog timer", 10, 2 }, 137 { DEVICEID_CPT4, "Intel Cougar Point watchdog timer", 10, 2 }, 138 { DEVICEID_CPT5, "Intel Cougar Point watchdog timer", 10, 2 }, 139 { DEVICEID_CPT6, "Intel Cougar Point watchdog timer", 10, 2 }, 140 { DEVICEID_CPT7, "Intel Cougar Point watchdog timer", 10, 2 }, 141 { DEVICEID_CPT8, "Intel Cougar Point watchdog timer", 10, 2 }, 142 { DEVICEID_CPT9, "Intel Cougar Point watchdog timer", 10, 2 }, [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVSchedule.td | 43 def WriteFAdd16 : SchedWrite; // 16-bit floating point addition/subtraction 44 def WriteFAdd32 : SchedWrite; // 32-bit floating point addition/subtraction 45 def WriteFAdd64 : SchedWrite; // 64-bit floating point addition/subtraction 46 def WriteFMul16 : SchedWrite; // 16-bit floating point multiply 47 def WriteFMul32 : SchedWrite; // 32-bit floating point multiply 48 def WriteFMul64 : SchedWrite; // 64-bit floating point multiply 49 def WriteFMA16 : SchedWrite; // 16-bit floating point fused multiply-add 50 def WriteFMA32 : SchedWrite; // 32-bit floating point fused multiply-add 51 def WriteFMA64 : SchedWrite; // 64-bit floating point fused multiply-add 52 def WriteFDiv16 : SchedWrite; // 16-bit floating point divide [all …]
|
/freebsd/share/doc/usd/22.trofftut/ |
H A D | tt02 | 42 Point Sizes; Line Spacing 47 sets the point size. 48 One point is 1/72 inch, 49 so 6-point characters are at most 1/12 inch high, 50 and 36-point characters are \(12 inch. 51 There are 15 point sizes, listed below. 54 6 point: Pack my box with five dozen liquor jugs. 57 7 point: Pack my box with five dozen liquor jugs. 60 8 point: Pack my box with five dozen liquor jugs. 63 9 point: Pack my box with five dozen liquor jugs. [all …]
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ec_oct.c | 24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, in EC_POINT_set_compressed_coordinates() argument 32 if (!ec_point_is_compat(point, group)) { in EC_POINT_set_compressed_coordinates() 38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point, in EC_POINT_set_compressed_coordinates() 51 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 57 EC_POINT *point, const BIGNUM *x, in EC_POINT_set_compressed_coordinates_GFp() argument 60 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates_GFp() 65 EC_POINT *point, const BIGNUM *x, in EC_POINT_set_compressed_coordinates_GF2m() argument 68 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates_GF2m() 73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, in EC_POINT_point2oct() argument [all …]
|
H A D | ec2_smpl.c | 222 int ossl_ec_GF2m_simple_point_init(EC_POINT *point) in ossl_ec_GF2m_simple_point_init() argument 224 point->X = BN_new(); in ossl_ec_GF2m_simple_point_init() 225 point->Y = BN_new(); in ossl_ec_GF2m_simple_point_init() 226 point->Z = BN_new(); in ossl_ec_GF2m_simple_point_init() 228 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GF2m_simple_point_init() 229 BN_free(point->X); in ossl_ec_GF2m_simple_point_init() 230 BN_free(point->Y); in ossl_ec_GF2m_simple_point_init() 231 BN_free(point->Z); in ossl_ec_GF2m_simple_point_init() 238 void ossl_ec_GF2m_simple_point_finish(EC_POINT *point) in ossl_ec_GF2m_simple_point_finish() argument 240 BN_free(point->X); in ossl_ec_GF2m_simple_point_finish() [all …]
|
/freebsd/contrib/unbound/iterator/ |
H A D | iter_delegpt.h | 2 * iterator/iter_delegpt.h - delegation point with NS and address information. 39 * This file implements the Delegation Point. It contains a list of name servers 54 * Delegation Point. 58 /** the domain name of the delegation point. */ 60 /** length of the delegation point name */ 62 /** number of labels in delegation point */ 95 * Nameservers for a delegation point. 139 * Address of target nameserver in delegation point. 142 /** next delegation point in results */ 144 /** next delegation point in usable list */ [all …]
|
/freebsd/crypto/openssl/crypto/ec/curve448/ |
H A D | point_448.h | 60 /* Precomputed table based on a point. Can be trivial implementation. */ 63 /* Precomputed table based on a point. Can be trivial implementation. */ 77 /* The identity point on the curve. */ 80 /* Precomputed table for the base point on the curve. */ 175 * Copy a point. The input and output may alias, in which case this function 178 * a (out): A copy of the point. 179 * b (in): Any point. 191 * a (in): A point. 192 * b (in): Another point. 203 * Double a point. Equivalent to curve448_point_add(two_a,a,a), but potentially [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntervalTree.h | 28 // finding all intervals that overlap with any given point. At this time, 53 // IntervalReferences getContaining(PointT Point); 56 // find_iterator begin(PointType Point) const; 93 // MP: A middle point. 95 // point. They are sorted in ascending order by their beginning point. 97 // middle point. They are sorted in descending order by their ending point. 126 // MP: Middle point. 127 // IL: Intervals to the left (in ascending order by beginning point). 128 // IR: Intervals to the right (in descending order by ending point). 169 // a) Iterators over intervals overlapping the given point with very weak [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/icelakex/ |
H A D | floating-point.json | 9 "PublicDescription": "Counts all microcode Floating Point assists.", 15 …point instructions retired; some instructions will count twice as noted below. Each count represe… 21 …point instructions retired; some instructions will count twice as noted below. Each count represe… 26 …point instructions retired; some instructions will count twice as noted below. Each count represe… 32 …point instructions retired; some instructions will count twice as noted below. Each count represe… 37 …point instructions retired; some instructions will count twice as noted below. Each count represe… 43 …point instructions retired; some instructions will count twice as noted below. Each count represe… 48 …point instructions retired; some instructions will count twice as noted below. Each count represe… 54 …point instructions retired; some instructions will count twice as noted below. Each count represe… 59 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/icelake/ |
H A D | floating-point.json | 9 "PublicDescription": "Counts all microcode Floating Point assists.", 15 …point instructions retired; some instructions will count twice as noted below. Each count represe… 21 …point instructions retired; some instructions will count twice as noted below. Each count represe… 26 …point instructions retired; some instructions will count twice as noted below. Each count represe… 32 …point instructions retired; some instructions will count twice as noted below. Each count represe… 37 …point instructions retired; some instructions will count twice as noted below. Each count represe… 43 …point instructions retired; some instructions will count twice as noted below. Each count represe… 48 …point instructions retired; some instructions will count twice as noted below. Each count represe… 54 …point instructions retired; some instructions will count twice as noted below. Each count represe… 59 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/tigerlake/ |
H A D | floating-point.json | 9 "PublicDescription": "Counts all microcode Floating Point assists.", 14 …point instructions retired; some instructions will count twice as noted below. Each count represe… 20 …point instructions retired; some instructions will count twice as noted below. Each count represe… 25 …point instructions retired; some instructions will count twice as noted below. Each count represe… 31 …point instructions retired; some instructions will count twice as noted below. Each count represe… 36 …point instructions retired; some instructions will count twice as noted below. Each count represe… 42 …point instructions retired; some instructions will count twice as noted below. Each count represe… 47 …point instructions retired; some instructions will count twice as noted below. Each count represe… 53 …point instructions retired; some instructions will count twice as noted below. Each count represe… 58 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/contrib/ntp/scripts/build/ |
H A D | UpdatePoint | 88 # Do we want to bump the point? 90 # Do we want to bump the beta point? 92 # Do we want to change the RC point? (n=no, z=empty rcpoint and zero 99 # if we are not in a beta or RC state, enter beta unless point is NEW. 101 # - bump the beta point 109 # - - - (bump-point) and set rcpoint to 0 (and fall thru, so -RC1 is first) 110 # - - bump the RC point 112 # for dev, we only want to bump-point and possibly clear prerelease, 117 case "$point" in 130 # echo "Checking <$betapoint::$rcpoint::$point>" [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86Schedule.td | 23 // integer unit to the floating point unit. 218 // Floating point. This covers both scalar and vector operations. 244 defm WriteFAdd : X86SchedWritePair<ReadAfterVecLd>; // Floating point add/sub. 245 defm WriteFAddX : X86SchedWritePair<ReadAfterVecXLd>; // Floating point add/sub (XMM). 246 defm WriteFAddY : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (YMM). 247 defm WriteFAddZ : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (ZMM). 248 defm WriteFAdd64 : X86SchedWritePair<ReadAfterVecLd>; // Floating point double add/sub. 249 defm WriteFAdd64X : X86SchedWritePair<ReadAfterVecXLd>; // Floating point double add/sub (XMM). 250 defm WriteFAdd64Y : X86SchedWritePair<ReadAfterVecYLd>; // Floating point double add/sub (YMM). 251 defm WriteFAdd64Z : X86SchedWritePair<ReadAfterVecYLd>; // Floating point doubl [all...] |
/freebsd/lib/libpmc/pmu-events/arch/x86/skylakex/ |
H A D | floating-point.json | 3 …once for most SIMD 128-bit packed computational double precision floating-point instructions retir… 8 …point instructions retired; some instructions will count twice as noted below. Each count represe… 13 …once for most SIMD 128-bit packed computational single precision floating-point instruction retire… 18 …point instructions retired; some instructions will count twice as noted below. Each count represe… 23 …once for most SIMD 256-bit packed double computational precision floating-point instructions retir… 28 …point instructions retired; some instructions will count twice as noted below. Each count represe… 33 …once for most SIMD 256-bit packed single computational precision floating-point instructions retir… 38 …point instructions retired; some instructions will count twice as noted below. Each count represe… 43 …point instructions retired; some instructions will count twice as noted below. Each count represe… 48 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | EC_POINT_new.3 | 96 \& void EC_POINT_free(EC_POINT *point); 97 \& void EC_POINT_clear_free(EC_POINT *point); 100 \& int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point); 112 \& size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point, 128 \& const EC_METHOD *EC_POINT_method_of(const EC_POINT *point); 165 An \fBEC_POINT\fR structure represents a point on a curve. A new point is 167 \&\fBgroup\fR object that the point relates to. 170 if \fBpoint\fR is NULL nothing is done. 173 then frees its memory. If \fBpoint\fR is NULL nothing is done. 175 \&\fBEC_POINT_copy()\fR copies the point \fBsrc\fR into \fBdst\fR. Both \fBsrc\fR and \fBdst\fR [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/cascadelakex/ |
H A D | floating-point.json | 3 …once for most SIMD 128-bit packed computational double precision floating-point instructions retir… 8 …point instructions retired; some instructions will count twice as noted below. Each count represe… 13 …once for most SIMD 128-bit packed computational single precision floating-point instruction retire… 18 …point instructions retired; some instructions will count twice as noted below. Each count represe… 23 …once for most SIMD 256-bit packed double computational precision floating-point instructions retir… 28 …point instructions retired; some instructions will count twice as noted below. Each count represe… 33 …once for most SIMD 256-bit packed single computational precision floating-point instructions retir… 38 …point instructions retired; some instructions will count twice as noted below. Each count represe… 43 …point instructions retired; some instructions will count twice as noted below. Each count represe… 48 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EC_POINT_new.pod | 37 void EC_POINT_free(EC_POINT *point); 38 void EC_POINT_clear_free(EC_POINT *point); 41 int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point); 53 size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point, 67 const EC_METHOD *EC_POINT_method_of(const EC_POINT *point); 104 An B<EC_POINT> structure represents a point on a curve. A new point is 106 B<group> object that the point relates to. 109 if B<point> is NULL nothing is done. 112 then frees its memory. If B<point> is NULL nothing is done. 114 EC_POINT_copy() copies the point B<src> into B<dst>. Both B<src> and B<dst> [all …]
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | v3_crld.c | 212 DIST_POINT *point = DIST_POINT_new(); in crldp_from_section() local 214 if (point == NULL) in crldp_from_section() 219 ret = set_dist_point_name(&point->distpoint, ctx, cnf); in crldp_from_section() 225 if (!set_reasons(&point->reasons, cnf->value)) in crldp_from_section() 228 point->CRLissuer = gnames_from_sectname(ctx, cnf->value); in crldp_from_section() 229 if (point->CRLissuer == NULL) in crldp_from_section() 234 return point; in crldp_from_section() 237 DIST_POINT_free(point); in crldp_from_section() 257 DIST_POINT *point; in v2i_crld() local 265 point = crldp_from_section(ctx, dpsect); in v2i_crld() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/ |
H A D | USRFinder.cpp | 10 /// point. 35 // Finds the NamedDecl at a point in the source. 36 // \param Point the location in the source to search for the NamedDecl. 37 explicit NamedDeclOccurrenceFindingVisitor(const SourceLocation Point, in NamedDeclOccurrenceFindingVisitor() argument 41 Point(Point), Context(Context) {} in NamedDeclOccurrenceFindingVisitor() 61 // Determines if the Point is within Start and End. 63 // FIXME: Add tests for Point == End. in isPointWithin() 64 return Point == Start || Point == End || in isPointWithin() 66 Point) && in isPointWithin() 67 Context.getSourceManager().isBeforeInTranslationUnit(Point, End)); in isPointWithin() [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/sapphirerapids/ |
H A D | floating-point.json | 20 "PublicDescription": "Counts all microcode Floating Point assists.", 65 …point instructions retired; some instructions will count twice as noted below. Each count represe… 71 …point instructions retired; some instructions will count twice as noted below. Each count represe… 76 …point instructions retired; some instructions will count twice as noted below. Each count represe… 82 …point instructions retired; some instructions will count twice as noted below. Each count represe… 87 …point instructions retired; some instructions will count twice as noted below. Each count represe… 93 …point instructions retired; some instructions will count twice as noted below. Each count represe… 98 …point instructions retired; some instructions will count twice as noted below. Each count represe… 104 …point instructions retired; some instructions will count twice as noted below. Each count represe… 109 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | atomic | 266 struct atomic<floating-point-type> { // since C++20 267 using value_type = floating-point-type; 275 constexpr atomic(floating-point-type) noexcept; 280 void store(floating-point-type, memory_order = memory_order::seq_cst) volatile noexcept; 281 void store(floating-point-type, memory_order = memory_order::seq_cst) noexcept; 282 floating-point-type operator=(floating-point-type) volatile noexcept; 283 floating-point-type operator=(floating-point-type) noexcept; 284 floating-point-type load(memory_order = memory_order::seq_cst) volatile noexcept; 285 floating-point-type load(memory_order = memory_order::seq_cst) noexcept; 286 operator floating-point-type() volatile noexcept; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | SMTAPI.h | 34 /// Returns true if the sort is a floating-point, calls isFloatSortImpl(). 49 /// Returns the floating-point size, fails if the sort is not a floating-point 52 assert(isFloatSort() && "Not a floating-point sort!"); in getFloatSortSize() 83 /// Query the SMT solver and checks if a sort is floating-point. 156 // Returns an appropriate floating-point sort for the given bitwidth. 169 llvm_unreachable("Unsupported floating-point bitwidth!"); in getFloatSort() 178 // Returns a floating-point sort of width 16 181 // Returns a floating-point sort of width 32 184 // Returns a floating-point sort of width 64 187 // Returns a floating-point sort of width 128 [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/x86/skylake/ |
H A D | floating-point.json | 3 …once for most SIMD 128-bit packed computational double precision floating-point instructions retir… 8 …point instructions retired; some instructions will count twice as noted below. Each count represe… 13 …once for most SIMD 128-bit packed computational single precision floating-point instruction retire… 18 …point instructions retired; some instructions will count twice as noted below. Each count represe… 23 …once for most SIMD 256-bit packed double computational precision floating-point instructions retir… 28 …point instructions retired; some instructions will count twice as noted below. Each count represe… 33 …once for most SIMD 256-bit packed single computational precision floating-point instructions retir… 38 …point instructions retired; some instructions will count twice as noted below. Each count represe… 43 …"Counts once for most SIMD scalar computational double precision floating-point instructions retir… 48 …point instructions retired; some instructions will count twice as noted below. Each count represe… [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | avxneconvertintrin.h | 28 /// Convert scalar BF16 (16-bit) floating-point element 30 /// single-precision (32-bit) floating-point, broadcast it to packed 31 /// single-precision (32-bit) floating-point elements, and store the results in 61 /// Convert scalar BF16 (16-bit) floating-point element 63 /// single-precision (32-bit) floating-point, broadcast it to packed 64 /// single-precision (32-bit) floating-point elements, and store the results in 94 /// Convert scalar half-precision (16-bit) floating-point element 96 /// single-precision (32-bit) floating-point, broadcast it to packed 97 /// single-precision (32-bit) floating-point elements, and store the results in 127 /// Convert scalar half-precision (16-bit) floating-point element [all …]
|
/freebsd/share/man/man9/ |
H A D | fail.9 | 67 The base fail point macro is 74 their own fail point trees), and 95 argument which controls the fail point's behaviour. 96 This can be used to e.g., mark the fail point's context as non-sleepable, 107 Mark the fail point as being in a non-sleepable context, which coerces 118 argument, which allows you to set the condition under which the fail point's 161 is used at the point that the fail point is executed. 180 Take no action (does not trigger fail point code) 182 Trigger fail point code with specified argument 190 Print that the fail point executed [all …]
|