/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
H A D | pthread_attr_getstack.c | 33 size_t stacksize; in pthread_attr_getstack_0100() local 34 int32_t ret = pthread_attr_getstack(&attr, &stack, &stacksize); in pthread_attr_getstack_0100() 52 size_t stacksize; in pthread_attr_getstack_0200() local 54 int32_t ret = pthread_attr_getstack(&attr, &retstack, &stacksize); in pthread_attr_getstack_0200() 57 EXPECT_EQ("pthread_attr_getstack_0200", stacksize, STACK_SIZE); in pthread_attr_getstack_0200()
|
H A D | pthread_getattr_np.c | 42 size_t stacksize; in pthread_getattr_np_0100() local 43 pthread_attr_getstack(&attr, &stack, &stacksize); in pthread_getattr_np_0100()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_pthread.cpp | 250 size_t stacksize; member 263 newAttrs->stacksize = 0; in dng_pthread_attr_init() 286 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize) in dng_pthread_attr_setstacksize() argument 291 (*attr)->stacksize = stacksize; in dng_pthread_attr_setstacksize() 298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize) in dng_pthread_attr_getstacksize() argument 300 if (attr == NULL || (*attr) == NULL || stacksize == NULL) in dng_pthread_attr_getstacksize() 303 *stacksize = (*attr)->stacksize; in dng_pthread_attr_getstacksize() 325 size_t stacksize in dng_pthread_create() local [all...] |
H A D | dng_pthread.h | 93 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize); 94 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
H A D | 1-5.c | 103 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ in overflow() local 125 if (((long)¤t) - ((long)arg) >= stacksize) { in overflow() 133 if (((long)arg) - ((long)¤t) >= stacksize) { in overflow()
|
H A D | 3-2.c | 113 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ in overflow() local 148 if (((long)¤t) - ((long)arg) >= stacksize) { in overflow() 156 if (((long)arg) - ((long)¤t) >= stacksize) { in overflow() 444 ("Changing the stacksize after the thread was created changed the running thread stack size"); in main() 481 "Failed to set stacksize back"); in main()
|
/third_party/python/Python/ |
H A D | thread_nt.h | 1 #include "pycore_interp.h" // _PyInterpreterState.threads.stacksize 202 size_t stacksize = tstate ? tstate->interp->threads.stacksize : 0; in PyThread_start_new_thread() local 204 Py_SAFE_DOWNCAST(stacksize, Py_ssize_t, unsigned int), in PyThread_start_new_thread() 379 _PyInterpreterState_GET()->threads.stacksize = 0; in _pythread_nt_set_stacksize() 385 _PyInterpreterState_GET()->threads.stacksize = size; in _pythread_nt_set_stacksize()
|
H A D | thread_pthread.h | 1 #include "pycore_interp.h" // _PyInterpreterState.threads.stacksize 70 /* for safety, ensure a viable minimum stacksize */ 267 size_t stacksize = tstate ? tstate->interp->threads.stacksize : 0; in PyThread_start_new_thread() local 268 tss = (stacksize != 0) ? stacksize : THREAD_STACK_SIZE; in PyThread_start_new_thread() 769 _PyInterpreterState_GET()->threads.stacksize = 0; in _pythread_pthread_set_stacksize() 786 _PyInterpreterState_GET()->threads.stacksize = size; in _pythread_pthread_set_stacksize()
|
H A D | thread_pthread_stubs.h | 116 pthread_attr_t *attr, size_t stacksize) in pthread_attr_setstacksize() 115 pthread_attr_setstacksize( pthread_attr_t *attr, size_t stacksize) pthread_attr_setstacksize() argument
|
H A D | thread.c | 118 return _PyInterpreterState_GET()->threads.stacksize; in PyThread_get_stacksize()
|
/third_party/ltp/testcases/kernel/sched/pthreads/ |
H A D | pth_str02.c | 115 size_t stacksize = 1046528; in thread() local 125 if (pthread_attr_setstacksize(&attr, stacksize)) in thread()
|
/third_party/python/Objects/clinic/ |
H A D | codeobject.c.h | 6 "code(argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize,\n" 16 int kwonlyargcount, int nlocals, int stacksize, int flags, 31 int stacksize; in code_new() local 70 stacksize = _PyLong_AsInt(PyTuple_GET_ITEM(args, 4)); in code_new() 71 if (stacksize == -1 && PyErr_Occurred()) { in code_new() 153 return_value = code_new_impl(type, argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize, flags, code, consts, names, varnames, filename, name, qualname, firstlineno, linetable, exceptiontable, freevars, cellvars); in code_new()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_compile.c | 289 int stacksize; member 10286 int stacksize; in match_once_common() local 10294 stacksize = needs_control_head ? 1 : 0; in match_once_common() 10296 stacksize++; in match_once_common() 10298 if (stacksize > 0) in match_once_common() 10299 free_stack(common, stacksize); in match_once_common() 10316 stacksize = (ket != OP_KET || has_alternatives) ? 2 : 1; in match_once_common() 10317 OP2(SLJIT_SUB, STACK_TOP, 0, SLJIT_MEM1(SLJIT_SP), private_data_ptr, SLJIT_IMM, (framesize + stacksize) * sizeof(sljit_sw)); in match_once_common() 10331 static SLJIT_INLINE int match_capture_common(compiler_common *common, int stacksize, int offset, int private_data_ptr) in match_capture_common() argument 10339 OP1(SLJIT_MOV, SLJIT_MEM1(STACK_TOP), STACK(stacksize), TMP in match_capture_common() 10452 int i, stacksize; compile_bracket_matchingpath() local 11015 int stacksize; compile_bracketpos_matchingpath() local 12662 int opcode, stacksize, alt_count, alt_max; compile_bracket_backtrackingpath() local [all...] |
/third_party/ltp/include/ |
H A D | tst_clone.h | 43 void *arg, size_t stacksize);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | _pthreadtypes.h | 66 size_t stacksize; member
|
/third_party/python/Objects/ |
H A D | codeobject.c | 236 con->stacksize < 0 || con->flags < 0 || in _PyCode_Validate() 322 co->co_stacksize = con->stacksize; in init_code() 499 int nlocals, int stacksize, int flags, in PyCode_NewWithPosOnlyArgs() 594 .stacksize = stacksize, in PyCode_NewWithPosOnlyArgs() 623 int nlocals, int stacksize, int flags, in PyCode_New() 632 stacksize, flags, code, consts, names, in PyCode_New() 699 .stacksize = 1, in PyCode_NewEmpty() 1502 stacksize: int 1523 int kwonlyargcount, int nlocals, int stacksize, in in code_new_impl() 498 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_NewWithPosOnlyArgs() argument 622 PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_New() argument 1522 code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable, PyObject *freevars, PyObject *cellvars) code_new_impl() argument [all...] |
/third_party/python/Include/cpython/ |
H A D | pthread_stubs.h | 73 PyAPI_FUNC(int) pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize);
|
/third_party/ltp/testcases/misc/math/float/ |
H A D | main.c | 110 size_t stacksize = 2093056; in main() local 220 if (pthread_attr_setstacksize(&newattr, stacksize)) in main()
|
/third_party/lwip/test/unit/arch/ |
H A D | sys_arch.c | 197 sys_thread_new(const char *name, lwip_thread_fn function, void *arg, int stacksize, int prio) in sys_thread_new() argument 202 LWIP_UNUSED_ARG(stacksize); in sys_thread_new()
|
/third_party/python/Include/internal/ |
H A D | pycore_interp.h | 92 size_t stacksize; member
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
H A D | alltypes.h | 416 size_t stacksize; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
H A D | alltypes.h | 367 size_t stacksize; member
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
H A D | alltypes.h | 107 size_t stacksize; member
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
H A D | alltypes.h | 416 size_t stacksize; member
|
/third_party/lwip/src/include/lwip/ |
H A D | sys.h | 411 * the "stacksize" parameter. The id of the new thread is returned. Both the id 418 * @param stacksize stack size in bytes for the new thread (may be ignored by ports) 420 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio);
|