/third_party/ltp/testcases/misc/math/float/trigo/ |
H A D | gentrigo.c | 69 char *funct, *bin_path; in main() local 79 funct = malloc(strlen(bin_path) + MAX_FNAME_LEN); in main() 80 sprintf(funct, "%s/gencos", bin_path); in main() 81 child = create_file(funct, 0); in main() 84 sprintf(funct, "%s/gensin", bin_path); in main() 85 child = create_file(funct, 0); in main() 88 sprintf(funct, "%s/gentan", bin_path); in main() 89 child = create_file(funct, 0); in main() 92 sprintf(funct, "%s/genatan", bin_path); in main() 93 child = create_file(funct, in main() [all...] |
/third_party/ltp/testcases/misc/math/float/exp_log/ |
H A D | genexp_log.c | 68 char *funct, *bin_path; in main() local 78 funct = malloc(strlen(bin_path) + MAX_FNAME_LEN); in main() 79 sprintf(funct, "%s/genexp", bin_path); in main() 80 child = create_file(funct, 0); in main() 83 sprintf(funct, "%s/genlog", bin_path); in main() 84 child = create_file(funct, 0); in main() 87 sprintf(funct, "%s/genlog10", bin_path); in main() 88 child = create_file(funct, 0); in main() 91 sprintf(funct, "%s/genfrexp", bin_path); in main() 92 child = create_file(funct, in main() [all...] |
/third_party/ltp/testcases/misc/math/float/bessel/ |
H A D | genbessel.c | 72 char *funct, *bin_path; in main() local 79 funct = malloc(strlen(bin_path) + MAX_FNAME_LEN); in main() 80 if (funct == NULL) in main() 82 sprintf(funct, "%s/genj0", bin_path); in main() 83 child = create_file(funct, 0); in main() 86 sprintf(funct, "%s/genj1", bin_path); in main() 87 child = create_file(funct, 0); in main() 90 sprintf(funct, "%s/geny0", bin_path); in main() 91 child = create_file(funct, 0); in main() 94 sprintf(funct, " in main() [all...] |
/third_party/ltp/testcases/misc/math/float/power/ |
H A D | genpower.c | 68 char *funct, *bin_path; in main() local 78 funct = malloc(strlen(bin_path) + MAX_FNAME_LEN); in main() 79 sprintf(funct, "%s/genceil", bin_path); in main() 80 child = create_file(funct, 0); in main() 83 sprintf(funct, "%s/genfabs", bin_path); in main() 84 child = create_file(funct, 0); in main() 87 sprintf(funct, "%s/genfloor", bin_path); in main() 88 child = create_file(funct, 0); in main() 91 sprintf(funct, "%s/genfmod", bin_path); in main() 92 child = create_file(funct, in main() [all...] |
/third_party/node/deps/openssl/openssl/crypto/engine/ |
H A D | eng_table.c | 23 ENGINE *funct; member 25 * Zero if 'sk' is newer than the cached 'funct', non-zero otherwise 116 fnd->funct = NULL; in engine_table_register() 138 if (fnd->funct) in engine_table_register() 139 engine_unlocked_finish(fnd->funct, 0); in engine_table_register() 140 fnd->funct = e; in engine_table_register() 159 if (pile->funct == e) { in int_unregister_cb() 161 pile->funct = NULL; in int_unregister_cb() 182 if (p->funct) in int_cleanup_cb_doall() 183 engine_unlocked_finish(p->funct, in int_cleanup_cb_doall() [all...] |
/third_party/openssl/crypto/engine/ |
H A D | eng_table.c | 23 ENGINE *funct; member 25 * Zero if 'sk' is newer than the cached 'funct', non-zero otherwise 113 fnd->funct = NULL; in engine_table_register() 135 if (fnd->funct) in engine_table_register() 136 engine_unlocked_finish(fnd->funct, 0); in engine_table_register() 137 fnd->funct = e; in engine_table_register() 156 if (pile->funct == e) { in int_unregister_cb() 158 pile->funct = NULL; in int_unregister_cb() 179 if (p->funct) in int_cleanup_cb_doall() 180 engine_unlocked_finish(p->funct, in int_cleanup_cb_doall() [all...] |
/third_party/ltp/testcases/misc/math/float/iperb/ |
H A D | geniperb.c | 72 char *funct, *bin_path; in main() local 80 funct = malloc(strlen(bin_path) + MAX_FNAME_LEN); in main() 81 sprintf(funct, "%s/gencosh", bin_path); in main() 82 child = create_file(funct, 0); in main() 85 sprintf(funct, "%s/gensinh", bin_path); in main() 86 child = create_file(funct, 0); in main() 89 sprintf(funct, "%s/gentanh", bin_path); in main() 90 child = create_file(funct, 0); in main()
|
/third_party/ltp/testcases/misc/math/float/ |
H A D | thread_code.c | 161 r = (*(th_data->th_func.funct)) (d); in compute_normal() 175 r = (*(th_data->th_func.funct)) (sin(d), cos(d)); in compute_atan2_hypot() 191 r = (*(th_data->th_func.funct)) (d, &tmp); in compute_modf() 217 r = (*(th_data->th_func.funct)) (d, dex2[index]); in compute_fmod_pow() 235 r = (*(th_data->th_func.funct)) (d, &tmp); in compute_frexp_lgamma() 263 r = (*(th_data->th_func.funct)) (d, din2[index]); in compute_ldexp()
|
H A D | tfloat.h | 80 * funct function pointer 89 double (*funct)(); member
|
/third_party/python/Lib/test/ |
H A D | test_decimal.py | 328 funct, value = (x.strip().lower() for x in s.split(':')) 329 if funct == 'rounding': 337 funct = self.ChangeDict.get(funct, (lambda *args: None)) 338 funct(value) 353 funct = L[1].lower() 369 fname = self.NameAdapter.get(funct, funct) 372 funct = getattr(self.context, fname) 397 funct(sel [all...] |
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | assembler-riscv64.cc | 1017 uint8_t funct, Register rs2) { in GenInstrCA() 1019 is_uint2(funct)); in GenInstrCA() 1022 (funct6 << kRvcFunct6Shift) | (funct << kRvcFunct2Shift); in GenInstrCA() 1016 GenInstrCA(uint8_t funct6, Opcode opcode, Register rd, uint8_t funct, Register rs2) GenInstrCA() argument
|
H A D | assembler-riscv64.h | 1589 void GenInstrCA(uint8_t funct6, Opcode opcode, Register rd, uint8_t funct,
|