Lines Matching defs:expected
219 size_t expected;
220 expected = arg == NULL ? 0 : ((uv_thread_options_t*)arg)->stack_size;
223 if (expected == 0)
224 expected = 512 * 1024;
225 ASSERT_GE(pthread_get_stacksize_np(pthread_self()), expected);
227 size_t expected;
236 expected = arg == NULL ? 0 : ((uv_thread_options_t*)arg)->stack_size;
237 if (expected == 0)
238 expected = (size_t)lim.rlim_cur;
239 ASSERT_GE(stack_size, expected);