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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/zstd/dist/contrib/pzstd/utils/
Portability.h 14 // Required for windows, which defines min/max, but we want the std:: version.
16 #undef max macro
  /src/external/bsd/unbound/dist/testdata/speed_cache.tdir/
makeqs.c 10 int max = atoi(argv[1]); local
11 for(i=0; i<max; i++)
  /src/external/gpl2/lvm2/dist/include/
util.h 25 #define max(a, b) ({ typeof(a) _a = (a); \ macro
  /src/external/gpl2/lvm2/dist/lib/misc/
util.h 25 #define max(a, b) ({ typeof(a) _a = (a); \ macro
  /src/external/bsd/jemalloc/dist/test/unit/
div.c 9 size_t max = 1000 * divisor; local
10 if (max < 1000 * 1000) {
11 max = 1000 * 1000;
  /src/external/bsd/jemalloc.old/dist/test/unit/
div.c 9 size_t max = 1000 * divisor; local
10 if (max < 1000 * 1000) {
11 max = 1000 * 1000;
  /src/lib/libmenu/
internals.h 40 #define max(a,b) ((a) > (b) ? a : b) macro
  /src/usr.bin/m4/
stdd.h 41 #define max(a,b) ((a) > (b)? (a): (b)) macro
  /src/crypto/external/apache2/openssl/dist/crypto/sm2/
sm2_key.c 25 BIGNUM *max = NULL; local
38 max = BN_dup(order);
39 if (max == NULL || !BN_sub_word(max, 1))
42 || BN_cmp(priv_key, max) >= 0) {
49 BN_free(max);
  /src/crypto/external/bsd/openssl/dist/crypto/sm2/
sm2_key.c 25 BIGNUM *max = NULL; local
38 max = BN_dup(order);
39 if (max == NULL || !BN_sub_word(max, 1))
42 || BN_cmp(priv_key, max) >= 0) {
49 BN_free(max);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
RandomNumberGenerator.h 43 /// Returns a random number in the range [0, Max).
47 static constexpr result_type max() { return generator_type::max(); } function in class:llvm::RandomNumberGenerator
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-command.h 46 int max = max_height (); variable
49 return (preferred_min <= max
51 : max);
  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
readlink4.c 23 int max, i; local
27 max = PATH_MAX;
29 max = pathconf (argv[0], _PC_PATH_MAX);
32 max *= 10;
34 if (max <= 0)
35 bye ("path_max", max);
37 if ((buf = malloc (max + 1)) == NULL)
45 for (i = strrchr (buf, '/') - buf + 1; i < max; i++)
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-command.h 47 int max = max_height (); variable
50 return (preferred_min <= max
52 : max);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
readlink4.c 23 int max, i; local
27 max = PATH_MAX;
29 max = pathconf (argv[0], _PC_PATH_MAX);
32 max *= 10;
34 if (max <= 0)
35 bye ("path_max", max);
37 if ((buf = malloc (max + 1)) == NULL)
45 for (i = strrchr (buf, '/') - buf + 1; i < max; i++)
  /src/common/dist/zlib/
compress.c 28 const uInt max = (uInt)-1; local
48 stream.avail_out = left > (uLong)max ? max : (uInt)left;
52 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
uncompr.c 33 const uInt max = (uInt)-1; local
61 stream.avail_out = left > (uLong)max ? max : (uInt)left;
65 stream.avail_in = len > (uLong)max ? max : (uInt)len;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
boost.h 11 u32 max; member in struct:nvbios_boostE
24 u32 max; member in struct:nvbios_boostS
  /src/usr.bin/mklocale/
ldef.h 42 __nbrune_t max; member in struct:rune_list
  /src/usr.bin/netstat/
pfkey.c 105 const int max = local
109 if (x < max && pfkey_msgtypenames[x])
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_s_mp_sub.c 24 int olduse, res, min, max; local
28 max = a->used;
31 if (c->alloc < max) {
32 if ((res = mp_grow (c, max)) != MP_OKAY) {
37 c->used = max;
66 for (; i < max; i++) {
  /src/crypto/external/bsd/openssl.old/dist/crypto/
ctype.c 254 const int max = sizeof(ctype_char_map) / sizeof(*ctype_char_map); local
257 return a >= 0 && a < max && (ctype_char_map[a] & mask) != 0;
  /src/external/gpl2/dtc/dist/tests/
get_phandle.c 58 uint32_t max, phandle; local
69 err = fdt_find_max_phandle(fdt, &max);
73 if (max != PHANDLE_2)
74 FAIL("fdt_find_max_phandle found 0x%x instead of 0x%x", max,
77 max = fdt_get_max_phandle(fdt);
78 if (max != PHANDLE_2)
80 max, PHANDLE_2);
  /src/external/gpl3/binutils/dist/gas/
sb.h 50 size_t max; /* The maximum length. */ member in struct:sb
  /src/external/gpl3/binutils/dist/zlib/
compress.c 26 const uInt max = (uInt)-1; local
46 stream.avail_out = left > (uLong)max ? max : (uInt)left;
50 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;

Completed in 66 milliseconds

1 2 3 4 5 6 7 8 91011>>