HomeSort by: relevance | last modified time | path
    Searched defs:maximum (Results 1 - 25 of 25) sorted by relevancy

  /src/games/robots/
main.c 70 int maximum = 0; local
110 "Usage: robots [-Aajnrst] [maximum] [scorefile]");
118 maximum = atoi(word);
121 Max_per_uid = maximum;
  /src/external/bsd/nsd/dist/simdzone/src/generic/
loc.h 131 uint64_t negative = 0, limit = 11, maximum = 4284967295llu; local
134 (void)(negative = 1), (void)(limit = 8), maximum = 10000000llu;
173 if (index == negative || index > limit || index != length || centimeters > maximum)
  /src/tests/lib/libusbhid/
t_usbhid.c 112 "Logical Minimum/Maximum results");
119 uint32_t minimum, maximum; local
150 maximum = (uint32_t)hi.logical_maximum & ((1ULL<<hi.report_size)-1);
151 MYu_ATF_CHECK_EQ(maximum, 255);
157 maximum = hi.logical_maximum & ((1ULL<<hi.report_size)-1);
158 MYu_ATF_CHECK_EQ(maximum, 65535);
164 maximum = hi.logical_maximum & ((1ULL<<hi.report_size)-1);
165 MYu_ATF_CHECK_EQ(maximum, 4294967295);
175 "Physical Minimum/Maximum results");
182 uint32_t minimum, maximum; local
    [all...]
  /src/external/bsd/nvi/dist/motif_l/
m_func.c 289 int top, size, maximum, old_max;
298 maximum = val3;
304 fprintf( stderr, "\tmaximum\t\t%d\n", maximum );
310 if ( top >= maximum ) {
312 fprintf( stderr, "Correcting for top >= maximum\n" );
314 maximum = top + 1;
321 if ( top+size >= maximum ) {
323 fprintf( stderr, "Correcting for top+size >= maximum\n" );
325 size = maximum - top;
328 /* need to increase the maximum before changing the values *
288 int top, size, maximum, old_max; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
sreal.cc 281 sreal maximum = INT_MAX/2; local
288 ASSERT_EQ (INT_MAX/2, maximum.to_int ());
varasm.cc 1105 /* Some object file formats have a maximum alignment which they support.
1106 In particular, a.out format supports a maximum alignment of 4. */
1109 error ("alignment of %q+D is greater than maximum object "
2090 int maximum = 2000;
2097 if (thissize > maximum)
2098 thissize = maximum;
5811 There is always a maximum of one element in the chain LINK for unions
2082 int maximum = 2000; local
  /src/external/gpl3/gcc/dist/gcc/
sreal.cc 300 sreal maximum = INT_MAX/2; local
307 ASSERT_EQ (INT_MAX/2, maximum.to_int ());
309 ASSERT_EQ (INT_MAX/2, maximum.to_nearest_int ());
varasm.cc 1102 /* Some object file formats have a maximum alignment which they support.
1103 In particular, a.out format supports a maximum alignment of 4. */
1106 error ("alignment of %q+D is greater than maximum object "
2116 int maximum = 2000;
2123 if (thissize > maximum)
2124 thissize = maximum;
5911 There is always a maximum of one element in the chain LINK for unions
2108 int maximum = 2000; local
  /src/sys/external/bsd/drm2/linux/
linux_idr.c 339 int maximum = (end <= 0? INT_MAX : (end - 1)); local
349 if (__predict_false(maximum < start))
366 if (maximum <= id) {
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_add_filter_zstd.c 252 int maximum = CLEVEL_MAX; local
254 maximum = ZSTD_maxCLevel();
265 if (level < minimum || level > maximum) {
  /src/external/gpl3/binutils/dist/gprofng/src/
Hist_data.h 145 return maximum;
223 HistItem *maximum; member in class:Hist_data
Module.h 262 TValue *maximum; member in class:Module
Dbe.cc 4961 // first, scan all the lines, to get the maximum line number
4979 // we have the maximum integer over all linenumbers in the file
5244 // first, scan all the lines, to get the maximum line number
5262 // we have the maximum integer over all linenumbers in the file
5922 // Get Total/Maximum element of Function List
5987 Vector<double> *maximum = new Vector<double>(size); local
5989 // Fill total/maximum element
5996 maximum->store (index, maximum_item->value[index].to_double ());
5999 total_max->store (1, maximum);
7191 //Get maximum number of simultaneous counter
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Hist_data.h 145 return maximum;
223 HistItem *maximum; member in class:Hist_data
Module.h 262 TValue *maximum; member in class:Module
Dbe.cc 4961 // first, scan all the lines, to get the maximum line number
4979 // we have the maximum integer over all linenumbers in the file
5244 // first, scan all the lines, to get the maximum line number
5262 // we have the maximum integer over all linenumbers in the file
5922 // Get Total/Maximum element of Function List
5987 Vector<double> *maximum = new Vector<double>(size); local
5989 // Fill total/maximum element
5996 maximum->store (index, maximum_item->value[index].to_double ());
5999 total_max->store (1, maximum);
7191 //Get maximum number of simultaneous counter
    [all...]
  /src/usr.sbin/makefs/
makefs.h 146 long long maximum; /* maximum for value */ member in struct:__anon8502
169 off_t maxsize; /* maximum size image can be */
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ryu/
d2fixed.c 433 const uint32_t maximum = precision - 9 * i; local
435 for (uint32_t k = 0; k < 9 - maximum; ++k) {
455 if (maximum > 0) {
456 append_c_digits(maximum, digits, result + index);
457 index += maximum;
632 const uint32_t maximum = precision - printedDigits; local
636 printf("maximum=%u\n", maximum);
642 if (availableDigits > maximum) {
643 for (uint32_t k = 0; k < availableDigits - maximum; ++k)
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ryu/
d2fixed.c 433 const uint32_t maximum = precision - 9 * i; local
435 for (uint32_t k = 0; k < 9 - maximum; ++k) {
455 if (maximum > 0) {
456 append_c_digits(maximum, digits, result + index);
457 index += maximum;
632 const uint32_t maximum = precision - printedDigits; local
636 printf("maximum=%u\n", maximum);
642 if (availableDigits > maximum) {
643 for (uint32_t k = 0; k < availableDigits - maximum; ++k)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-layout.c 1018 const int maximum = m_vertical ? height : width;
1023 if (size_accum + info[i].size > maximum)
1024 size_accum = maximum - info[i].size;
1017 const int maximum = m_vertical ? height : width; local
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-layout.c 1021 const int maximum = m_vertical ? height : width;
1026 if (size_accum + info[i].size > maximum)
1027 size_accum = maximum - info[i].size;
1020 const int maximum = m_vertical ? height : width; local
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h 411 /// \param FormatPrecision The maximum number of digits of
417 /// \param FormatMaxPadding The maximum number of zeros to
1330 /// Implements IEEE 754-2018 maximum semantics. Returns the larger of 2
1333 inline APFloat maximum(const APFloat &A, const APFloat &B) { function in namespace:llvm
  /src/external/mit/xorg/lib/libxcb/files/
xinput.h 211 int32_t maximum; member in struct:xcb_input_axis_info_t
  /src/external/bsd/tmux/dist/
tmux.h 102 /* Minimum and maximum window size. */
2185 u_int maximum; member in struct:options_table_entry
  /src/sys/sys/
videoio.h 1726 u_int32_t max_width; /* Maximum frame width [pixel] */
1729 u_int32_t max_height; /* Maximum frame height [pixel] */
1757 struct v4l2_fract max; /* Maximum frame interval [s] */
2644 int32_t maximum; member in struct:v4l2_queryctrl
2657 int64_t maximum; member in struct:v4l2_query_ext_ctrl
3067 * @sizeimage: maximum size in bytes required for data, for which
3114 * @buffersize: maximum size in bytes required for data
3189 int32_t maximum; member in struct:v4l2_event_ctrl

Completed in 91 milliseconds