Home
last modified time | relevance | path

Searched refs:vec2d (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/mindspore/lite/src/ops/
Dops_def.h89 auto vec2d = std::make_unique<schema::Vec2DT>(); \
90 if (vec2d == nullptr) { \
100 vec2d->data.push_back(std::move(vec)); \
102 schema_op->key = std::move(vec2d); \
/third_party/weston/libweston/
Dinput.c66 struct vec2d { struct
71 struct vec2d a; argument
72 struct vec2d b;
4112 vec2d_cross_product(struct vec2d a, struct vec2d b) in vec2d_cross_product()
4117 static struct vec2d
4118 vec2d_add(struct vec2d a, struct vec2d b) in vec2d_add()
4120 return (struct vec2d) { in vec2d_add()
4126 static struct vec2d
4127 vec2d_subtract(struct vec2d a, struct vec2d b) in vec2d_subtract()
4129 return (struct vec2d) { in vec2d_subtract()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/SVMFunctions/
Darm_svm_linear_predict_f32.c300 float32x4_t vec2,vec2a,vec2b,vec2c,vec2d; in arm_svm_linear_predict_f32() local
339 vec2d = vld1q_f32(pSupportd); in arm_svm_linear_predict_f32()
350 accumd = vmlaq_f32(accumd, vec1,vec2d); in arm_svm_linear_predict_f32()
Darm_svm_polynomial_predict_f32.c321 float32x4_t vec2,vec2a,vec2b,vec2c,vec2d; in arm_svm_polynomial_predict_f32() local
359 vec2d = vld1q_f32(pSupportd); in arm_svm_polynomial_predict_f32()
370 accumd = vmlaq_f32(accumd, vec1,vec2d); in arm_svm_polynomial_predict_f32()
Darm_svm_sigmoid_predict_f32.c319 float32x4_t vec2,vec2a,vec2b,vec2c,vec2d; in arm_svm_sigmoid_predict_f32() local
357 vec2d = vld1q_f32(pSupportd); in arm_svm_sigmoid_predict_f32()
368 accumd = vmlaq_f32(accumd, vec1,vec2d); in arm_svm_sigmoid_predict_f32()
Darm_svm_rbf_predict_f32.c339 float32x4_t vec2,vec2a,vec2b,vec2c,vec2d; in arm_svm_rbf_predict_f32() local
378 vec2d = vld1q_f32(pSupportd); in arm_svm_rbf_predict_f32()
395 temp = vsubq_f32(vec1, vec2d); in arm_svm_rbf_predict_f32()