Searched refs:tmod (Results 1 – 8 of 8) sorted by relevance
/third_party/openssl/crypto/conf/ |
D | conf_mod.c | 323 CONF_MODULE *tmod = NULL; in module_add() local 335 if ((tmod = OPENSSL_zalloc(sizeof(*tmod))) == NULL) { in module_add() 340 tmod->dso = dso; in module_add() 341 tmod->name = OPENSSL_strdup(name); in module_add() 342 tmod->init = ifunc; in module_add() 343 tmod->finish = ffunc; in module_add() 344 if (tmod->name == NULL) in module_add() 347 if (!sk_CONF_MODULE_push(supported_modules, tmod)) in module_add() 351 return tmod; in module_add() 355 if (tmod != NULL) { in module_add() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/conf/ |
D | conf_mod.c | 329 CONF_MODULE *tmod = NULL; in module_add() local 341 if ((tmod = OPENSSL_zalloc(sizeof(*tmod))) == NULL) { in module_add() 346 tmod->dso = dso; in module_add() 347 tmod->name = OPENSSL_strdup(name); in module_add() 348 tmod->init = ifunc; in module_add() 349 tmod->finish = ffunc; in module_add() 350 if (tmod->name == NULL) in module_add() 353 if (!sk_CONF_MODULE_push(supported_modules, tmod)) in module_add() 357 return tmod; in module_add() 361 if (tmod != NULL) { in module_add() [all …]
|
/third_party/openssl/crypto/bn/ |
D | bn_mont.c | 283 BIGNUM tmod; in BN_MONT_CTX_set() local 286 bn_init(&tmod); in BN_MONT_CTX_set() 287 tmod.d = buf; in BN_MONT_CTX_set() 288 tmod.dmax = 2; in BN_MONT_CTX_set() 289 tmod.neg = 0; in BN_MONT_CTX_set() 292 BN_set_flags(&tmod, BN_FLG_CONSTTIME); in BN_MONT_CTX_set() 308 tmod.top = 0; in BN_MONT_CTX_set() 310 tmod.top = 1; in BN_MONT_CTX_set() 312 tmod.top = 2; in BN_MONT_CTX_set() 314 if (BN_is_one(&tmod)) in BN_MONT_CTX_set() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
D | bn_mont.c | 283 BIGNUM tmod; in BN_MONT_CTX_set() local 286 bn_init(&tmod); in BN_MONT_CTX_set() 287 tmod.d = buf; in BN_MONT_CTX_set() 288 tmod.dmax = 2; in BN_MONT_CTX_set() 289 tmod.neg = 0; in BN_MONT_CTX_set() 292 BN_set_flags(&tmod, BN_FLG_CONSTTIME); in BN_MONT_CTX_set() 308 tmod.top = 0; in BN_MONT_CTX_set() 310 tmod.top = 1; in BN_MONT_CTX_set() 312 tmod.top = 2; in BN_MONT_CTX_set() 314 if (BN_is_one(&tmod)) in BN_MONT_CTX_set() [all …]
|
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/kernel_space/ |
D | load_tmod.sh | 2 insmod -f ./tmod.ko || insmod -f ./tmod.o || exit 1 3 rm -f /dev/tmod 5 mknod /dev/tmod c $major 0
|
D | Makefile | 10 obj-m := tmod.o 21 rm -f tmod.o 2>/dev/null || true
|
/third_party/ltp/testcases/kernel/device-drivers/dev_sim_framework/ |
D | README | 22 tmod 3812 0 65 exit functions are located in the tmod.c file. Most of it 67 new test function is add an ioctl flag in tmod.h, a function 74 and ioctl flags in tmod.h, along with the tif structure. 93 For this example I just called everything tmod (short for test_mod), 95 sure that you change tmod and other such inferences, so that it
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | mpdecimal.c | 6836 MPD_NEW_STATIC(tmod,0,0,0,0); in mpd_qpowmod() 6889 mpd_qrescale(&tmod, mod, 0, &maxcontext, &maxcontext.status); in mpd_qpowmod() 6895 mpd_set_positive(&tmod); in mpd_qpowmod() 6907 mpd_qrem(&tbase, &tbase, &tmod, &maxcontext, status); in mpd_qpowmod() 6909 mpd_qrem(result, result, &tmod, &maxcontext, status); in mpd_qpowmod() 6911 mpd_qrem(&tbase, &tbase, &tmod, &maxcontext, status); in mpd_qpowmod() 6914 mpd_isspecial(&tmod)) { in mpd_qpowmod() 6919 _mpd_qpowmod_uint(&tmp, &tbase, 10, &tmod, status); in mpd_qpowmod() 6933 mpd_qrem(result, result, &tmod, &maxcontext, status); in mpd_qpowmod() 6936 mpd_qrem(&tbase, &tbase, &tmod, &maxcontext, status); in mpd_qpowmod() [all …]
|