代码搜索结果
找到约 10,000 项符合
N 的代码
dot_n.asm
;
; dot_n.asm
;
; calculates dot product of two n vectors
;
; float dot_n();
;
; float *a;
; float *b;
; float c;
; int n;
;
; c = dot_4( a, b, n );
;
;
;