Home
last modified time | relevance | path

Searched full:greater (Results 1 – 25 of 1983) sorted by relevance

12345678910>>...80

/freebsd/lib/libpmc/pmu-events/arch/x86/ivytown/
H A Duncore-power.json10 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
20 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
30 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
40 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
50 …n": "Counts the number of times that the uncore transitioned a frequency greater than or equal to …
61 … "Counts the number of times that the uncore transitioned to a frequency greater than or equal to …
72 …"Counts the number of cycles that the uncore transitioned to a frequency greater than or equal to …
83 …"Counts the number of cycles that the uncore transitioned to a frequency greater than or equal to …
187 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
198 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/jaketown/
H A Duncore-power.json10 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
20 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
30 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
40 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
50 …n": "Counts the number of times that the uncore transitioned a frequency greater than or equal to …
61 … "Counts the number of times that the uncore transitioned to a frequency greater than or equal to …
72 …"Counts the number of cycles that the uncore transitioned to a frequency greater than or equal to …
83 …"Counts the number of cycles that the uncore transitioned to a frequency greater than or equal to …
186 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
197 … "Counts the number of cycles that the uncore was running at a frequency greater than or equal to …
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/tigerlake/
H A Dmemory.json25 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles.",
35 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles. …
41 …omly selected loads when the latency from first dispatch to completion is greater than 16 cycles.",
51 …mly selected loads when the latency from first dispatch to completion is greater than 16 cycles. …
57 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles.",
67 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles. …
73 …omly selected loads when the latency from first dispatch to completion is greater than 32 cycles.",
83 …mly selected loads when the latency from first dispatch to completion is greater than 32 cycles. …
89 …domly selected loads when the latency from first dispatch to completion is greater than 4 cycles.",
99 …mly selected loads when the latency from first dispatch to completion is greater than 4 cycles. R…
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__compare/
H A Dordering.h58 static const partial_ordering greater; in partial_ordering()
107 return __v < 0 ? partial_ordering::greater : (__v > 0 ? partial_ordering::less : __v);
116 inline constexpr partial_ordering partial_ordering::greater(_OrdResult::__greater);
127 static const weak_ordering greater;
131 : (__value_ < 0 ? partial_ordering::less : partial_ordering::greater);
178 return __v < 0 ? weak_ordering::greater : (__v > 0 ? weak_ordering::less : __v);
187 inline constexpr weak_ordering weak_ordering::greater(_OrdResult::__greater);
198 static const strong_ordering greater;
203 : (__value_ < 0 ? partial_ordering::less : partial_ordering::greater);
207 return __value_ == 0 ? weak_ordering::equivalent : (__value_ < 0 ? weak_ordering::less : weak_ordering::greater);
69 static const partial_ordering greater; global() variable
148 static const weak_ordering greater; global() variable
233 static const strong_ordering greater; global() variable
[all...]
/freebsd/sys/contrib/edk2/Include/Library/
H A DBaseMemoryLib.h23 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
24 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
46 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
71 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
98 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
125 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
152 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
177 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
202 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
203 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
[all …]
H A DBaseLib.h228 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than StrLen(Source).
232 and DestMax is greater than
264 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than
269 and DestMax is greater than
300 @retval RETURN_BAD_BUFFER_SIZE If DestMax is NOT greater than
303 greater than StrLen(Source).
307 and DestMax is greater than
340 @retval RETURN_BAD_BUFFER_SIZE If DestMax is NOT greater than
343 greater than MIN(StrLen(Source), Length).
347 and DestMax is greater than
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiCondCode.h14 ICC_UGT = 2, // unsigned greater than
20 ICC_UGE = 5, // unsigned greater than or equal
27 ICC_GE = 12, // greater than or equal
29 ICC_GT = 14, // greater than
53 return "ge"; // greater than or equal in lanaiCondCodeToString()
57 return "gt"; // greater than in lanaiCondCodeToString()
61 return "ugt"; // high | unsigned greater than in lanaiCondCodeToString()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparc.h46 ICC_G = 10, // Greater
48 ICC_GE = 11, // Greater or Equal
50 ICC_GU = 12, // Greater Unsigned
63 FCC_G = 6 + FCC_BEGIN, // Greater
64 FCC_UG = 5 + FCC_BEGIN, // Unordered or Greater
67 FCC_LG = 2 + FCC_BEGIN, // Less or Greater
71 FCC_GE = 11 + FCC_BEGIN, // Greater or Equal
72 FCC_UGE = 12 + FCC_BEGIN, // Unordered or Greater or Equal
100 REG_GZ = 6 + REG_BEGIN, // Greater than zero
101 REG_GEZ = 7 + REG_BEGIN // Greater than or equal to zero
/freebsd/lib/libpmc/pmu-events/arch/x86/sapphirerapids/
H A Dmemory.json69 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles.",
79 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles. …
85 …omly selected loads when the latency from first dispatch to completion is greater than 16 cycles.",
95 …mly selected loads when the latency from first dispatch to completion is greater than 16 cycles. …
101 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles.",
111 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles. …
117 …omly selected loads when the latency from first dispatch to completion is greater than 32 cycles.",
127 …mly selected loads when the latency from first dispatch to completion is greater than 32 cycles. …
133 …domly selected loads when the latency from first dispatch to completion is greater than 4 cycles.",
143 …mly selected loads when the latency from first dispatch to completion is greater than 4 cycles. R…
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h123 /// method returns -1 or 1, thus also defining which type is greater in
130 /// greater then others.
131 /// Stage 2: Vector is greater then non-vector.
132 /// If both types are vectors, then vector with greater bitwidth is
133 /// greater.
137 /// Stage 3: Pointer types are greater than non-pointers. If both types are
139 /// Different address spaces: pointer with greater address space is
140 /// greater.
159 /// Ints with greater bitwidth are greater
[all...]
/freebsd/crypto/openssl/test/ssl-tests/
H A D13-fragmentation.cnf25 test-20 = 20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048
26 test-21 = 21-Maximum Fragment Len extension 2048 greater than FragmentSize 1024
524 [20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048]
525 ssl_conf = 20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-ssl
527 [20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-ssl]
528 server = 20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-server
529 client = 20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-client
531 [20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-server]
536 [20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-client]
544 client = 20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048-client-extra
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp369 if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater)) { in ParseTemplateParameters()
380 Tok.setKind(tok::greater); in ParseTemplateParameters()
383 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) { in ParseTemplateParameters()
384 Diag(Tok.getLocation(), diag::err_expected) << tok::greater; in ParseTemplateParameters()
409 SkipUntil(tok::comma, tok::greater, tok::greatergreater, in ParseTemplateParameterList()
416 } else if (Tok.isOneOf(tok::greater, tok::greatergreater)) { in ParseTemplateParameterList()
424 SkipUntil(tok::comma, tok::greater, tok::greatergreater, in ParseTemplateParameterList()
441 case tok::greater: in isStartOfTemplateTypeParameter()
458 case tok::greater: in isStartOfTemplateTypeParameter()
498 case tok::greater: in isStartOfTemplateTypeParameter()
[all …]
/freebsd/lib/libsys/
H A Dread.2213 is greater than 0,
217 is greater than or equal to the offset maximum established
222 is greater than
224 (or greater than
241 was less than or equal to 0, or greater than
254 array is greater than
256 (or greater than
H A Dwrite.2198 is greater than
200 (or greater than
229 was less than or equal to 0, or greater than
240 values is greater than
242 (or greater than
H A Dmsgrcv.261 is an integer greater than 0 that can be used for selecting messages,
74 is greater than 0.
100 message has a length greater than
193 A matching message was received, but its size was greater than
/freebsd/lib/libpmc/pmu-events/arch/x86/icelakex/
H A Dmemory.json27 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles.",
37 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles. …
43 …omly selected loads when the latency from first dispatch to completion is greater than 16 cycles.",
53 …mly selected loads when the latency from first dispatch to completion is greater than 16 cycles. …
59 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles.",
69 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles. …
75 …omly selected loads when the latency from first dispatch to completion is greater than 32 cycles.",
85 …mly selected loads when the latency from first dispatch to completion is greater than 32 cycles. …
91 …domly selected loads when the latency from first dispatch to completion is greater than 4 cycles.",
101 …mly selected loads when the latency from first dispatch to completion is greater than 4 cycles. R…
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/icelake/
H A Dmemory.json105 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles.",
115 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles. …
121 …omly selected loads when the latency from first dispatch to completion is greater than 16 cycles.",
131 …mly selected loads when the latency from first dispatch to completion is greater than 16 cycles. …
137 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles.",
147 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles. …
153 …omly selected loads when the latency from first dispatch to completion is greater than 32 cycles.",
163 …mly selected loads when the latency from first dispatch to completion is greater than 32 cycles. …
169 …domly selected loads when the latency from first dispatch to completion is greater than 4 cycles.",
179 …mly selected loads when the latency from first dispatch to completion is greater than 4 cycles. R…
[all …]
/freebsd/contrib/diff/lib/
H A Dstrcase.h24 greater than zero if S1 is lexicographically less than, equal to or greater
30 returning less than, equal to or greater than zero if S1 is
31 lexicographically less than, equal to or greater than S2.
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp118 "Use -mcpu=mips32r2 or greater.", false); in MipsSubtarget()
173 << "greater\n"; in MipsSubtarget()
177 << "greater\n"; in MipsSubtarget()
183 << "greater\n"; in MipsSubtarget()
187 << "greater\n"; in MipsSubtarget()
196 << " revision 5 or greater\n"; in MipsSubtarget()
201 << " revision 5 or greater\n"; in MipsSubtarget()
206 << " revision 6 or greater\n"; in MipsSubtarget()
211 << " revision 6 or greater\n"; in MipsSubtarget()
/freebsd/lib/libpmc/pmu-events/arch/x86/alderlake/
H A Dmemory.json158 …mly selected loads when the latency from first dispatch to completion is greater than 128 cycles.",
174 …omly selected loads when the latency from first dispatch to completion is greater than 16 cycles.",
190 …mly selected loads when the latency from first dispatch to completion is greater than 256 cycles.",
206 …omly selected loads when the latency from first dispatch to completion is greater than 32 cycles.",
222 …domly selected loads when the latency from first dispatch to completion is greater than 4 cycles.",
238 …mly selected loads when the latency from first dispatch to completion is greater than 512 cycles.",
254 …omly selected loads when the latency from first dispatch to completion is greater than 64 cycles.",
270 …domly selected loads when the latency from first dispatch to completion is greater than 8 cycles.",
/freebsd/lib/msun/man/
H A Dmath.3129 floor integer no greater than
143 trunc integer no greater in magnitude than
166 isgreater greater than relation
167 isgreaterequal greater than or equal to relation
170 islessgreater less than or greater than relation
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dvdev_indirect_mapping.c117 * 2. The offset is "greater than" the mapping entry; meaning the
118 * offset is greater than the mapping entry's source offset plus
123 * plus size, this is considered to be "greater" than the entry,
170 * such that the entry's source offset is greater than the offset
173 * source offset is greater than the passed in offset, NULL is returned.
218 * closest mapping entry that is greater than the in vdev_indirect_mapping_entry_for_offset_impl()
222 * indices one less than "mid", and one greater than in vdev_indirect_mapping_entry_for_offset_impl()
223 * "mid"; we just need to determine if offset is greater in vdev_indirect_mapping_entry_for_offset_impl()
240 * mapping table, but it's actually greater than in vdev_indirect_mapping_entry_for_offset_impl()
242 * can't return a mapping entry greater than the in vdev_indirect_mapping_entry_for_offset_impl()
[all …]
/freebsd/usr.bin/look/
H A Dlook.c66 #define GREATER 1 macro
220 * If the string at "p" is not greater than the string to match,
252 if (compare(string, p, back) == GREATER) in binary_search()
282 case GREATER: /* Keep going. */ in linear_search()
306 * Return LESS, GREATER, or EQUAL depending on how the string1 compares with
310 * o Matches up to len(s2) are GREATER.
339 return (ch1 < ch2 ? LESS : GREATER); in compare()
341 return (*s1 ? GREATER : EQUAL); in compare()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_util.c639 char **lesser, **greater, **tmp, *pivot; in archive_utility_string_sort_helper() local
647 lesser = greater = NULL; in archive_utility_string_sort_helper()
656 free(greater); in archive_utility_string_sort_helper()
666 tmp = realloc(greater, greater_count * sizeof(*tmp)); in archive_utility_string_sort_helper()
668 free(greater); in archive_utility_string_sort_helper()
672 greater = tmp; in archive_utility_string_sort_helper()
673 greater[greater_count - 1] = strings[i]; in archive_utility_string_sort_helper()
686 /* quicksort(greater) */ in archive_utility_string_sort_helper()
687 retval2 = archive_utility_string_sort_helper(greater, greater_count); in archive_utility_string_sort_helper()
689 strings[lesser_count + 1 + i] = greater[i]; in archive_utility_string_sort_helper()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DARMDefines.h52 0x8 // Unsigned higher Greater than, or unordered C == 1 and Z ==
58 0xA // Greater than or equal Greater than or equal N == V
62 0xC // Greater than Greater than Z == 0 and N ==

12345678910>>...80