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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/db/hash/
hash_log2.c 52 uint32_t i, limit; local
58 limit = 0;
59 for (i = 0; limit < num; limit = limit * 2 + 1, i++)
  /src/external/bsd/zstd/dist/tests/
check_size.py 21 limit = int(sys.argv[2]) variable
29 if size > limit:
30 print(f"file {file} is {size} bytes, which is greater than the limit of {limit} bytes")
  /src/external/ibm-public/postfix/dist/src/util/
file_limit.c 7 /* limit the file size
13 /* void set_file_limit(limit)
14 /* off_t limit;
16 /* This module manipulates the process-wide file size limit.
17 /* The limit is specified in bytes.
19 /* get_file_limit() looks up the process-wide file size limit.
21 /* set_file_limit() sets the process-wide file size limit to
58 /* get_file_limit - get process-wide file size limit */
62 off_t limit; local
65 if ((limit = ulimit(UL_GETFSIZE, 0)) < 0
    [all...]
  /src/sbin/newfs_lfs/
misc.c 51 u_int i, limit; local
53 limit = 1;
54 for (i = 0; limit < num; limit = limit << 1, i++);
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
exp_grow.h 14 * required size is greater). Default is no limit, and controlled
18 pszind_t limit; member in struct:exp_grow_s
40 if (exp_grow->next + skip + 1 <= exp_grow->limit) {
43 exp_grow->next = exp_grow->limit;
  /src/external/bsd/jemalloc/include/jemalloc/internal/
exp_grow.h 14 * required size is greater). Default is no limit, and controlled
18 pszind_t limit; member in struct:exp_grow_s
40 if (exp_grow->next + skip + 1 <= exp_grow->limit) {
43 exp_grow->next = exp_grow->limit;
  /src/external/lgpl3/gmp/dist/tests/mpz/
t-fac_ui.c 28 With no arguments testing goes up to the initial value of "limit" below.
30 tests are continued without limit (this being meant only for development
38 unsigned long limit = 2222; local
44 limit = ULONG_MAX;
46 TESTS_REPS (limit, argv, argc);
49 limit = MIN (limit, MP_LIMB_T_MAX);
56 for (n = 0, m = 0; n < limit; n++)
t-get_d.c 34 int limit = 127 - 1; /* vax fp numbers have limited range */ local
36 int limit = 512; local
51 for (i = 0; i < limit; i++)
t-lucnum_ui.c 28 Test up to L[n], or if n is omitted then the default limit below. A
29 literal "x" for the limit means continue forever, this being meant only
37 unsigned long limit = 100 * GMP_LIMB_BITS; local
41 limit = ULONG_MAX;
43 TESTS_REPS (limit, argv, argc);
51 for (n = 0; n < limit; n++)
  /src/external/lgpl3/gmp/dist/tests/rand/
t-urbui.c 31 unsigned long bits, limit, got; local
36 /* will demand got < limit */
37 limit = (1UL << bits);
42 if (got >= limit)
47 printf (" limit: %#lx\n", limit);
  /src/sys/arch/m68k/m68k/
regdump.c 114 int limit; local
117 limit = ((int)ptr) | (PAGE_SIZE - 3);
128 if (((int) ptr) >= limit)
db_memrw.c 115 int limit; local
134 limit = round_page((vaddr_t)dst + 1) - (vaddr_t)dst;
135 if (limit > size)
136 limit = size;
137 size -= limit;
171 for (; limit > 0; limit--)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_nv50_fence.c 47 u32 limit = start + reg->size - 1; local
64 .limit = limit,
nouveau_nv17_fence.c 86 u32 limit = start + reg->size - 1; local
103 .limit = limit,
  /src/external/bsd/unbound/dist/util/
tcp_conn_limit.h 2 * daemon/tcp_conn_limit.h - client TCP connection limit storage for the server.
39 * This file keeps track of the limit on the number of TCP connections
51 * TCP connection limit storage structure
65 * An address span with connection limit information
72 /** connection limit on this netblock */
73 uint32_t limit; member in struct:tcl_addr
79 * Create TCP connection limit structure
85 * Delete TCP connection limit structure.
91 * Process TCP connection limit config.
100 * count was below the limit
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
been_here.h 25 int limit; /* ceiling, zero for none */ member in struct:__anon23066
  /src/external/lgpl3/gmp/dist/tests/mpf/
t-pow_ui.c 30 mpf_t b1, r, r2, limit; local
33 mpf_init_set_ui (limit, 1);
34 mpf_mul_2exp (limit, limit, MAX (GMP_NUMB_BITS, 53));
52 if (mpf_cmp (r2, limit) >= 0)
57 mpf_clears (b1, r, r2, limit, NULL);
  /src/external/mit/libuv/dist/test/
test-loop-oom.c 27 static int limit; variable
32 if (alloc > limit)
57 limit += 8;
  /src/lib/libc/stdio/
gettemp.c 68 uint32_t limit = RAND_MAX - (RAND_MAX % upper_bound); local
72 while (r >= limit);
  /src/sys/arch/x86/x86/
db_memrw.c 137 size_t limit; local
166 limit = NBPD_L2 - (addr & (NBPD_L2 - 1));
168 limit = PAGE_SIZE - (addr & PGOFSET);
169 if (limit > size)
170 limit = size;
171 size -= limit;
188 for (; limit > 0; limit--)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/engine/
dma.h 18 u64 limit; member in struct:nvkm_dmaobj
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/dma/
nouveau_nvkm_engine_dma_usergv100.c 49 u64 limit = dmaobj->base.limit >> 8; local
58 nvkm_wo32(*pgpuobj, 0x0c, lower_32_bits(limit));
59 nvkm_wo32(*pgpuobj, 0x10, upper_32_bits(limit));
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_shadowacpi.c 62 u32 limit = (offset + length + 0xfff) & ~0xfff; local
64 u32 fetch = limit - start;
66 if (nvbios_extend(bios, limit) >= 0) {
83 u32 limit = (offset + length + 0xfff) & ~0xfff; local
87 if (nvbios_extend(bios, limit) >= 0) {
88 while (start + fetch < limit) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/ltc/
nouveau_nvkm_subdev_ltc_base.c 37 const u32 limit = first + count - 1; local
39 BUG_ON((first > limit) || (limit >= ltc->num_tags));
42 ltc->func->cbc_clear(ltc, first, limit);
  /src/crypto/external/apache2/openssl/dist/crypto/ec/curve448/
word.h 76 unsigned int limit = sizeof(c448_bool_t) / sizeof(mask_t); local
78 if (limit < 1)
79 limit = 1;
80 for (i = 0; i < limit; i++)

Completed in 63 milliseconds

1 2 3 4 5 6 7 8 91011>>