ScmF32Vector      566 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorFill(ScmF32Vector *vec, float fill, int, int);
ScmF32Vector      567 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorRef(ScmF32Vector *vec, int index, ScmObj fallback);
ScmF32Vector      568 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorSet(ScmF32Vector *vec, int index, ScmObj val, int clamp);
ScmF32Vector      569 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorToList(ScmF32Vector *vec, int start, int end);
ScmF32Vector      571 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorCopy(ScmF32Vector *vec, int start, int end);
ScmF32Vector      572 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorCopyX(ScmF32Vector *dst, int dstart,
ScmF32Vector      573 ext/uvector/gauche/uvector.h                                   ScmF32Vector *src, int sstart, int send);
ScmF32Vector      574 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorToVector(ScmF32Vector *vec, int start, int end);
ScmF32Vector      578 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorAdd(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      579 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorAddX(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      580 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorSub(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      581 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorSubX(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      582 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorMul(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      583 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorMulX(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      584 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorDiv(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      585 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorDivX(ScmF32Vector *s0, ScmObj s1, int clamp);
ScmF32Vector      587 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorAnd(ScmF32Vector *s0, ScmObj s1);
ScmF32Vector      588 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorAndX(ScmF32Vector *s0, ScmObj s1);
ScmF32Vector      589 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorIor(ScmF32Vector *s0, ScmObj s1);
ScmF32Vector      590 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorIorX(ScmF32Vector *s0, ScmObj s1);
ScmF32Vector      591 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorXor(ScmF32Vector *s0, ScmObj s1);
ScmF32Vector      592 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorXorX(ScmF32Vector *s0, ScmObj s1);
ScmF32Vector      594 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorDotProd(ScmF32Vector *v0, ScmObj v1);
ScmF32Vector      595 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorRangeCheck(ScmF32Vector *v0, ScmObj min, ScmObj max);
ScmF32Vector      596 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorClamp(ScmF32Vector *v0, ScmObj min, ScmObj max);
ScmF32Vector      597 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorClampX(ScmF32Vector *v0, ScmObj min, ScmObj max);
ScmF32Vector      599 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorSwapBytes(ScmF32Vector *v0);
ScmF32Vector      600 ext/uvector/gauche/uvector.h extern ScmObj Scm_F32VectorSwapBytesX(ScmF32Vector *v0);
ScmF32Vector     2491 ext/uvector/uvector.c ScmObj Scm_F32VectorFill(ScmF32Vector *vec, float fill, int start, int end)
ScmF32Vector     2500 ext/uvector/uvector.c ScmObj Scm_F32VectorRef(ScmF32Vector *vec, int index, ScmObj fallback)
ScmF32Vector     2514 ext/uvector/uvector.c ScmObj Scm_F32VectorSet(ScmF32Vector *vec, int index, ScmObj val, int clamp)
ScmF32Vector     2525 ext/uvector/uvector.c ScmObj Scm_F32VectorToList(ScmF32Vector *vec, int start, int end)
ScmF32Vector     2539 ext/uvector/uvector.c ScmObj Scm_F32VectorToVector(ScmF32Vector *vec, int start, int end)
ScmF32Vector     2554 ext/uvector/uvector.c ScmObj Scm_F32VectorCopy(ScmF32Vector *vec, int start, int end)
ScmF32Vector     2562 ext/uvector/uvector.c ScmObj Scm_F32VectorCopyX(ScmF32Vector *dst,
ScmF32Vector     2564 ext/uvector/uvector.c                            ScmF32Vector *src,
ScmF32Vector     3467 ext/uvector/uvector.c ScmObj Scm_F32VectorAdd(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     3476 ext/uvector/uvector.c ScmObj Scm_F32VectorAddX(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     4237 ext/uvector/uvector.c ScmObj Scm_F32VectorSub(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     4246 ext/uvector/uvector.c ScmObj Scm_F32VectorSubX(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     5007 ext/uvector/uvector.c ScmObj Scm_F32VectorMul(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     5016 ext/uvector/uvector.c ScmObj Scm_F32VectorMulX(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     5161 ext/uvector/uvector.c ScmObj Scm_F32VectorDiv(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     5170 ext/uvector/uvector.c ScmObj Scm_F32VectorDivX(ScmF32Vector *s0, ScmObj s1, int clamp)
ScmF32Vector     7069 ext/uvector/uvector.c ScmObj Scm_F32VectorDotProd(ScmF32Vector *x, ScmObj y)
ScmF32Vector     8952 ext/uvector/uvector.c ScmObj Scm_F32VectorRangeCheck(ScmF32Vector *x, ScmObj min, ScmObj max)
ScmF32Vector     9026 ext/uvector/uvector.c ScmObj Scm_F32VectorClamp(ScmF32Vector *x, ScmObj min, ScmObj max)
ScmF32Vector     9100 ext/uvector/uvector.c ScmObj Scm_F32VectorClampX(ScmF32Vector *x, ScmObj min, ScmObj max)
ScmF32Vector     9552 ext/uvector/uvector.c static void f32vector_swapb(ScmF32Vector *v)
ScmF32Vector     9561 ext/uvector/uvector.c ScmObj Scm_F32VectorSwapBytes(ScmF32Vector *v)
ScmF32Vector     9568 ext/uvector/uvector.c ScmObj Scm_F32VectorSwapBytesX(ScmF32Vector *v)