Home
last modified time | relevance | path

Searched refs:max (Results 1 – 6 of 6) sorted by path

/libuv/
H A DChangeLog1036 * doc,udp: note that suggested_size is 1 max-sized dgram (Ryan Liptak)
/libuv/docs/src/
H A Dudp.rst419 by the number of max size dgrams that will fit into the buffer allocated in `alloc_cb`, and
420 `suggested_size` in `alloc_cb` for udp_recv is always set to the size of 1 max size dgram.
/libuv/src/
H A Dheap-inl.h154 struct heap_node** max; in HEAP_EXPORT() local
171 max = &heap->min; in HEAP_EXPORT()
174 max = &(*max)->right; in HEAP_EXPORT()
176 max = &(*max)->left; in HEAP_EXPORT()
184 child = *max; in HEAP_EXPORT()
185 *max = NULL; in HEAP_EXPORT()
/libuv/src/unix/
H A Dcore.c1621 int max; in uv_thread_setpriority() local
1645 max = 127; in uv_thread_setpriority()
1648 max = sched_get_priority_max(policy); in uv_thread_setpriority()
1651 if (min == -1 || max == -1) in uv_thread_setpriority()
1654 range = max - min; in uv_thread_setpriority()
1658 prio = max; in uv_thread_setpriority()
H A Dlinux.c2108 uint64_t* max) { in uv__get_cgroup1_memory_limits() argument
2123 *max = uv__read_uint64(filename); in uv__get_cgroup1_memory_limits()
2128 if (*high != 0 && *max != 0) in uv__get_cgroup1_memory_limits()
2143 if (*max == cgroup1_max) in uv__get_cgroup1_memory_limits()
2144 *max = UINT64_MAX; in uv__get_cgroup1_memory_limits()
2159 *max = uv__read_uint64(filename); in uv__get_cgroup2_memory_limits()
2166 uint64_t max; in uv__get_cgroup_constrained_memory() local
2170 uv__get_cgroup1_memory_limits(buf, &high, &max); in uv__get_cgroup_constrained_memory()
2172 uv__get_cgroup2_memory_limits(buf, &high, &max); in uv__get_cgroup_constrained_memory()
2174 if (high == 0 || max == 0) in uv__get_cgroup_constrained_memory()
[all …]
/libuv/test/
H A Dtest-thread-priority.c51 int max; in TEST_IMPL() local
70 max = 127; in TEST_IMPL()
73 max = sched_get_priority_max(policy); in TEST_IMPL()
75 ASSERT(priority >= min && priority <= max); in TEST_IMPL()

Completed in 40 milliseconds