Searched refs:pfunc (Results 1 – 10 of 10) sorted by relevance
/third_party/openssl/providers/implementations/rands/ |
D | drbg.c | 780 const OSSL_DISPATCH *pfunc; in ossl_rand_drbg_new() local 800 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_ENABLE_LOCKING)) != NULL) in ossl_rand_drbg_new() 801 drbg->parent_enable_locking = OSSL_FUNC_rand_enable_locking(pfunc); in ossl_rand_drbg_new() 802 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_LOCK)) != NULL) in ossl_rand_drbg_new() 803 drbg->parent_lock = OSSL_FUNC_rand_lock(pfunc); in ossl_rand_drbg_new() 804 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_UNLOCK)) != NULL) in ossl_rand_drbg_new() 805 drbg->parent_unlock = OSSL_FUNC_rand_unlock(pfunc); in ossl_rand_drbg_new() 806 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_CTX_PARAMS)) != NULL) in ossl_rand_drbg_new() 807 drbg->parent_get_ctx_params = OSSL_FUNC_rand_get_ctx_params(pfunc); in ossl_rand_drbg_new() 808 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_NONCE)) != NULL) in ossl_rand_drbg_new() [all …]
|
/third_party/node/deps/openssl/openssl/providers/implementations/rands/ |
D | drbg.c | 780 const OSSL_DISPATCH *pfunc; in ossl_rand_drbg_new() local 800 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_ENABLE_LOCKING)) != NULL) in ossl_rand_drbg_new() 801 drbg->parent_enable_locking = OSSL_FUNC_rand_enable_locking(pfunc); in ossl_rand_drbg_new() 802 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_LOCK)) != NULL) in ossl_rand_drbg_new() 803 drbg->parent_lock = OSSL_FUNC_rand_lock(pfunc); in ossl_rand_drbg_new() 804 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_UNLOCK)) != NULL) in ossl_rand_drbg_new() 805 drbg->parent_unlock = OSSL_FUNC_rand_unlock(pfunc); in ossl_rand_drbg_new() 806 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_CTX_PARAMS)) != NULL) in ossl_rand_drbg_new() 807 drbg->parent_get_ctx_params = OSSL_FUNC_rand_get_ctx_params(pfunc); in ossl_rand_drbg_new() 808 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_NONCE)) != NULL) in ossl_rand_drbg_new() [all …]
|
/third_party/python/Modules/ |
D | xxlimited_35.c | 247 Null_Type_slots[0].pfunc = &PyBaseObject_Type; in xx_modexec() 248 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec() 249 Str_Type_slots[0].pfunc = &PyUnicode_Type; in xx_modexec()
|
D | _testmultiphase.c | 360 Str_Type_slots[0].pfunc = &PyUnicode_Type; in execfunc()
|
/third_party/python/Lib/ |
D | trace.py | 226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \ 236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
|
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 585 pfunc = "p_func: %s(" % t.funcname 592 pfunc = "p_func: %s.%s(" % (repr(pself), t.funcname) 601 err += pfunc
|
/third_party/python/Include/ |
D | object.h | 219 void *pfunc; /* function pointer */ member
|
/third_party/python/Objects/ |
D | typeobject.c | 3386 for (const PyMemberDef *memb = slot->pfunc; memb->name != NULL; memb++) { in PyType_FromModuleAndSpec() 3447 base = slot->pfunc; in PyType_FromModuleAndSpec() 3449 bases = slot->pfunc; in PyType_FromModuleAndSpec() 3515 if (slot->pfunc == NULL) { in PyType_FromModuleAndSpec() 3519 size_t len = strlen(slot->pfunc)+1; in PyType_FromModuleAndSpec() 3526 memcpy(tp_doc, slot->pfunc, len); in PyType_FromModuleAndSpec() 3532 memcpy(PyHeapType_GET_MEMBERS(res), slot->pfunc, len); in PyType_FromModuleAndSpec() 3540 *(void**)((char*)res_start + slot_offset) = slot->pfunc; in PyType_FromModuleAndSpec() 3544 *(void**)((char*)parent_slot + subslot_offset) = slot->pfunc; in PyType_FromModuleAndSpec()
|
/third_party/python/Doc/c-api/ |
D | type.rst | 277 .. c:member:: void *PyType_Slot.pfunc
|
/third_party/python/Python/ |
D | ceval.c | 5856 PyObject **pfunc = (*pp_stack) - oparg - 1; in Py_LOCAL_INLINE() local 5857 PyObject *func = *pfunc; in Py_LOCAL_INLINE() 5873 while ((*pp_stack) > pfunc) { in Py_LOCAL_INLINE()
|