Home
last modified time | relevance | path

Searched full:point (Results 1 – 25 of 3203) sorted by relevance

12345678910>>...129

/freebsd/sys/dev/ichwd/
H A Dichwd.c133 { 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 DRISCVSchedule.td43 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 Dtt0242 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/contrib/unbound/iterator/
H A Diter_delegpt.h2 * 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 Dpoint_448.h60 /* 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/crypto/openssl/crypto/ec/
H A Dec_oct.c24 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 Dec2_smpl.c222 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/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h28 // 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 Dfloating-point.json9 "PublicDescription": "Counts all microcode Floating Point assists.",
15point instructions retired; some instructions will count twice as noted below. Each count represe…
21point instructions retired; some instructions will count twice as noted below. Each count represe…
26point instructions retired; some instructions will count twice as noted below. Each count represe…
32point instructions retired; some instructions will count twice as noted below. Each count represe…
37point instructions retired; some instructions will count twice as noted below. Each count represe…
43point instructions retired; some instructions will count twice as noted below. Each count represe…
48point instructions retired; some instructions will count twice as noted below. Each count represe…
54point instructions retired; some instructions will count twice as noted below. Each count represe…
59point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/icelake/
H A Dfloating-point.json9 "PublicDescription": "Counts all microcode Floating Point assists.",
15point instructions retired; some instructions will count twice as noted below. Each count represe…
21point instructions retired; some instructions will count twice as noted below. Each count represe…
26point instructions retired; some instructions will count twice as noted below. Each count represe…
32point instructions retired; some instructions will count twice as noted below. Each count represe…
37point instructions retired; some instructions will count twice as noted below. Each count represe…
43point instructions retired; some instructions will count twice as noted below. Each count represe…
48point instructions retired; some instructions will count twice as noted below. Each count represe…
54point instructions retired; some instructions will count twice as noted below. Each count represe…
59point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/tigerlake/
H A Dfloating-point.json9 "PublicDescription": "Counts all microcode Floating Point assists.",
14point instructions retired; some instructions will count twice as noted below. Each count represe…
20point instructions retired; some instructions will count twice as noted below. Each count represe…
25point instructions retired; some instructions will count twice as noted below. Each count represe…
31point instructions retired; some instructions will count twice as noted below. Each count represe…
36point instructions retired; some instructions will count twice as noted below. Each count represe…
42point instructions retired; some instructions will count twice as noted below. Each count represe…
47point instructions retired; some instructions will count twice as noted below. Each count represe…
53point instructions retired; some instructions will count twice as noted below. Each count represe…
58point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/contrib/ntp/scripts/build/
H A DUpdatePoint88 # 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 DX86Schedule.td23 // 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 Dfloating-point.json3 …once for most SIMD 128-bit packed computational double precision floating-point instructions retir…
8point 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…
18point 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…
28point 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…
38point instructions retired; some instructions will count twice as noted below. Each count represe…
43point instructions retired; some instructions will count twice as noted below. Each count represe…
48point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/cascadelakex/
H A Dfloating-point.json3 …once for most SIMD 128-bit packed computational double precision floating-point instructions retir…
8point 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…
18point 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…
28point 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…
38point instructions retired; some instructions will count twice as noted below. Each count represe…
43point instructions retired; some instructions will count twice as noted below. Each count represe…
48point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DEC_POINT_new.pod37 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/lib/libpmc/pmu-events/arch/x86/sapphirerapids/
H A Dfloating-point.json20 "PublicDescription": "Counts all microcode Floating Point assists.",
65point instructions retired; some instructions will count twice as noted below. Each count represe…
71point instructions retired; some instructions will count twice as noted below. Each count represe…
76point instructions retired; some instructions will count twice as noted below. Each count represe…
82point instructions retired; some instructions will count twice as noted below. Each count represe…
87point instructions retired; some instructions will count twice as noted below. Each count represe…
93point instructions retired; some instructions will count twice as noted below. Each count represe…
98point instructions retired; some instructions will count twice as noted below. Each count represe…
104point instructions retired; some instructions will count twice as noted below. Each count represe…
109point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFinder.cpp10 /// 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/contrib/llvm-project/libcxx/include/
H A Datomic266 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 DSMTAPI.h34 /// 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 Dfloating-point.json3 …once for most SIMD 128-bit packed computational double precision floating-point instructions retir…
8point 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…
18point 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…
28point 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…
38point 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…
48point instructions retired; some instructions will count twice as noted below. Each count represe…
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Davxneconvertintrin.h28 /// 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/secure/lib/libcrypto/man/man3/
H A DEC_POINT_new.3172 \& void EC_POINT_free(EC_POINT *point);
173 \& void EC_POINT_clear_free(EC_POINT *point);
176 \& int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
188 \& size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
204 \& const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
241 An \fB\s-1EC_POINT\s0\fR structure represents a point on a curve. A new point is
243 \&\fBgroup\fR object that the point relates to.
246 if \fBpoint\fR is \s-1NULL\s0 nothing is done.
249 then frees its memory. If \fBpoint\fR is \s-1NULL\s0 nothing is done.
251 \&\fBEC_POINT_copy()\fR copies the point \fBsrc\fR into \fBdst\fR. Both \fBsrc\fR and \fBdst\fR
[all …]
/freebsd/share/man/man9/
H A Dfail.967 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 …]
/freebsd/share/man/man3/
H A Dfpgetround.340 .Nd IEEE floating point interface
90 When a floating point exception is detected, the exception sticky flag is
94 These routines allow both setting the floating point exception
97 In addition, they allow setting the floating point rounding mode
103 returns the current floating point rounding mode.
108 sets the floating point rounding mode and returns
114 returns the current floating point precision.
119 sets the floating point precision and returns
125 returns the current floating point exception masks.
130 sets the floating point exception masks and returns the
[all …]

12345678910>>...129