Home
last modified time | relevance | path

Searched refs:num_var (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/yap/example/autodiff_library/
DBinaryOPNode.cpp492 for(unsigned int i=0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
497 index = AutoDiff::num_var; in hess_forward_calc0()
498 for(unsigned int i=0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
500 for(unsigned int j=i;j<AutoDiff::num_var;++j){ in hess_forward_calc0()
513 for(unsigned int i=0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
518 index = AutoDiff::num_var; in hess_forward_calc0()
519 for(unsigned int i=0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
521 for(unsigned int j=i;j<AutoDiff::num_var;++j){ in hess_forward_calc0()
536 for(unsigned int i =0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
541 index = AutoDiff::num_var; in hess_forward_calc0()
[all …]
DUaryOPNode.cpp344 for(unsigned int i =0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
349 index = AutoDiff::num_var; in hess_forward_calc0()
350 for(unsigned int i=0;i<AutoDiff::num_var;++i) in hess_forward_calc0()
352 for(unsigned int j=i;j<AutoDiff::num_var;++j) in hess_forward_calc0()
Dauto_diff_types.h15 extern unsigned int num_var;
Dautodiff.cpp26 unsigned int num_var = 0; variable
30 assert(nvar == num_var); in hess_forward()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-try-catch-macro.h67 #define ECMA_OP_TO_NUMBER_TRY_CATCH(num_var, value, return_value) \ argument
69 ecma_number_t num_var; \
70 return_value = ecma_get_number (value, &num_var); \
82 #define ECMA_OP_TO_NUMBER_FINALIZE(num_var) } argument
Decma-typedarray-object.c726 ecma_number_t num_var; in ecma_op_typedarray_from_helper() local
727 ecma_value_t mapped_number = ecma_get_number (mapped_value, &num_var); in ecma_op_typedarray_from_helper()
740 setter_cb (info_p->buffer_p + (index << info_p->shift), num_var); in ecma_op_typedarray_from_helper()
1319 ecma_number_t num_var; in ecma_op_typedarray_define_index_prop() local
1320 ecma_value_t error = ecma_get_number (property_desc_p->value, &num_var); in ecma_op_typedarray_define_index_prop()
1335 ecma_set_typedarray_element (src_buffer, num_var, info.id); in ecma_op_typedarray_define_index_prop()
Decma-objects.c1370 ecma_number_t num_var; in ecma_op_object_put_with_receiver() local
1371 ecma_value_t error = ecma_get_number (value, &num_var); in ecma_op_object_put_with_receiver()
1387 ecma_set_typedarray_element (info.buffer_p + byte_pos, num_var, info.id); in ecma_op_object_put_with_receiver()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray-prototype.c1734 ecma_number_t num_var; in ecma_builtin_typedarray_prototype_index_of() local
1735 if (ECMA_IS_VALUE_ERROR (ecma_op_to_integer (args[1], &num_var))) in ecma_builtin_typedarray_prototype_index_of()
1740 if (num_var >= info.length) in ecma_builtin_typedarray_prototype_index_of()
1746 from_index = ((num_var >= 0) ? (uint32_t) num_var in ecma_builtin_typedarray_prototype_index_of()
1747 : (uint32_t) (info.length + num_var)); in ecma_builtin_typedarray_prototype_index_of()
1814 ecma_number_t num_var; in ecma_builtin_typedarray_prototype_last_index_of() local
1815 if (ECMA_IS_VALUE_ERROR (ecma_op_to_integer (args[1], &num_var))) in ecma_builtin_typedarray_prototype_last_index_of()
1820 if (!ecma_number_is_nan (num_var) in ecma_builtin_typedarray_prototype_last_index_of()
1821 && -num_var > info.length) in ecma_builtin_typedarray_prototype_last_index_of()
1827 from_index = ((num_var >= 0) ? (uint32_t) JERRY_MIN (num_var, info.length - 1) in ecma_builtin_typedarray_prototype_last_index_of()
[all …]
/third_party/boost/libs/yap/example/
Dautodiff_example.cpp702 AutoDiff::num_var = nvar; in test_hess_forward()