├── .gitignore ├── AppleXcode ├── FunctionDict.playground │ ├── Contents.swift │ ├── Sources │ │ └── VsipDictionary.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── timeline.xctimeline ├── JVExVector │ ├── JVExVector.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── judd.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── JVExVector.xcscheme │ │ │ └── xcschememanagement.plist │ └── JVExVector │ │ ├── JVVector.swift │ │ └── main.swift ├── JVSwift.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── judd.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ ├── WorkspaceSettings.xcsettings │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── KOmegaBFEx.playground │ ├── Contents.swift │ ├── Resources │ │ ├── beamformer_ex.c │ │ ├── kw.c │ │ ├── kw.h │ │ ├── param.c │ │ ├── param.h │ │ ├── param_file │ │ ├── ts.c │ │ └── ts.h │ ├── Sources │ │ ├── Parameters.swift │ │ ├── imagContext.swift │ │ ├── kw.swift │ │ └── ts.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── timeline.xctimeline ├── MatrixExplorer │ ├── MatrixExplorer.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── MatrixExplorer.xcscheme │ │ │ └── xcschememanagement.plist │ └── MatrixExplorer │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── MainWindowController.swift │ │ └── MainWindowController.xib ├── PngEx.playground │ ├── Contents.swift │ ├── Sources │ │ ├── Image.swift │ │ ├── Mandelbrot.swift │ │ └── setRGB.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── QrdEx.playground │ ├── Contents.swift │ └── contents.xcplayground ├── README ├── README.md ├── README_about ├── SJVsip │ ├── SJVsip.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── SJVsip 2.xcscheme │ │ │ ├── SJVsip.xcscheme │ │ │ └── xcschememanagement.plist │ ├── SJVsip │ │ ├── Block.swift │ │ ├── Functions.swift │ │ ├── Info.plist │ │ ├── JVSIP.swift │ │ ├── Matrix.swift │ │ ├── README.md │ │ ├── SJVsip.h │ │ ├── Scalar.swift │ │ ├── Vector.swift │ │ ├── View.swift │ │ ├── cholesky.swift │ │ ├── extensionBlocks.swift │ │ ├── extensionMatrix.swift │ │ ├── extensionVector.swift │ │ ├── lud.swift │ │ ├── qrd.swift │ │ ├── svd.swift │ │ └── utility.swift │ └── SJVsipTests │ │ ├── Info.plist │ │ └── SJVsipTests.swift ├── SvdEx.playground │ ├── Contents.swift │ ├── Resources │ │ └── Old │ ├── Sources │ │ └── Utils.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── timeline.xctimeline ├── SwiftAccelerate.playground │ ├── Contents.swift │ ├── Sources │ │ ├── Block.swift │ │ ├── Matrix.swift │ │ ├── Scalar.swift │ │ └── Vector.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ └── judd.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── SwiftVsip │ ├── SwiftVsip.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── judd.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── SwiftVsip.xcscheme │ │ │ └── xcschememanagement.plist │ ├── SwiftVsip │ │ ├── Block.swift │ │ ├── Info.plist │ │ ├── Jvsip.swift │ │ ├── Matrix.swift │ │ ├── SwiftVsip.h │ │ ├── Vector.swift │ │ ├── View.swift │ │ └── Vsip.swift │ └── SwiftVsipTests │ │ ├── Info.plist │ │ ├── SwiftVsipTests.swift │ │ └── solverTests.swift ├── TryIt.playground │ ├── Contents.swift │ ├── Resources │ │ └── Old │ ├── Sources │ │ └── Utils.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── timeline.xctimeline ├── VectorInspector │ ├── VectorExplorer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── VectorExplorer.xcscheme │ │ │ └── xcschememanagement.plist │ └── VectorInspector │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── VectorExplorer.swift │ │ ├── VectorExplorerControllerWindow.swift │ │ └── VectorExplorerControllerWindow.xib ├── example18.playground │ ├── Contents.swift │ ├── Resources │ │ └── example18.c │ ├── Sources │ │ ├── VU_vfprintyg_d.swift │ │ └── VU_vfreqswapIP_d.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── timeline.xctimeline ├── example20.playground │ ├── Contents.swift │ ├── Resources │ │ ├── File │ │ ├── Freq_Resp_Kaiser │ │ ├── conv_dec1 │ │ ├── conv_dec3 │ │ ├── example20.c │ │ ├── fir_dec1 │ │ ├── fir_dec3 │ │ ├── gplt_bat │ │ └── kaiser_window │ ├── Sources │ │ ├── VU_vfprintxyg_d.swift │ │ └── VU_vfrdB_d.swift │ ├── contents.xcplayground │ └── timeline.xctimeline ├── jvsipF │ ├── README │ ├── jvsipD │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── jvsipD-Info.plist │ │ └── jvsipD-Prefix.pch │ ├── jvsipF.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── jvsipF.xccheckout │ │ │ └── xcuserdata │ │ │ │ └── judd.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── jvsipD.xcscheme │ │ │ ├── jvsipF.xcscheme │ │ │ └── xcschememanagement.plist │ ├── jvsipF │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── jvsipF-Info.plist │ │ └── jvsipF-Prefix.pch │ └── jvsipFTests │ │ ├── Info.plist │ │ ├── jvsipF-Bridging-Header.h │ │ └── jvsipFTests.swift └── vsip │ ├── cVsipTest │ ├── cVsipTest.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── cVsipTest.xcscheme │ │ │ └── xcschememanagement.plist │ └── cVsipTest │ │ └── main.c │ ├── fftDev.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── timeline.xctimeline │ ├── vsip.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── jvsipF.xccheckout │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── judd.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── vsip.xcscheme │ │ ├── vsipExample.xcscheme │ │ └── xcschememanagement.plist │ ├── vsip │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── vsip-Info.plist │ └── vsip-Prefix.pch │ └── vsipExampleAdd │ ├── jofkTest.swift │ ├── main.swift │ ├── meansqvalEx.swift │ └── modulateEx.swift ├── Copyright ├── Makefile ├── README.md ├── README_make ├── c++ ├── cppJvsip │ ├── Block.cpp │ ├── Block.h │ ├── View.h │ ├── cppJvsip.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── cppJvsip.xccheckout │ │ │ └── xcuserdata │ │ │ │ └── judd.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── cppJvsip.xcscheme │ │ │ ├── test1.xcscheme │ │ │ ├── test2.xcscheme │ │ │ └── xcschememanagement.plist │ ├── elementary.h │ ├── gen.h │ ├── jvsipView.cpp │ ├── jvsiph.h │ ├── scalar.cpp │ ├── scalar.h │ ├── support.h │ ├── test1 │ │ └── main.cpp │ └── test2 │ │ └── main.cpp └── testing │ └── supportTest │ ├── supportTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── supportTest.xccheckout │ │ └── xcuserdata │ │ │ └── judd.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── judd.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── supportTest.xcscheme │ │ └── xcschememanagement.plist │ └── supportTest │ └── main.cpp ├── c_VSIP_example ├── example1 │ ├── Makefile │ └── example1.c ├── example11 │ ├── Makefile │ ├── README │ └── example11.c ├── example12 │ ├── Makefile │ └── example12.c ├── example14 │ ├── Makefile │ └── example14.c ├── example15 │ ├── Makefile │ └── example15.c ├── example16 │ ├── Makefile │ └── example16.c ├── example17 │ ├── Makefile │ └── example17.c ├── example20 │ ├── Makefile │ └── example20.c └── example21 │ ├── Makefile │ ├── exUtils.c │ ├── exUtils.h │ ├── example21.c │ └── plt.py ├── c_VSIP_src ├── Makefile ├── README ├── VI.h ├── VI_blockcreate_bl.h ├── VI_blockcreate_d.h ├── VI_blockcreate_f.h ├── VI_blockcreate_i.h ├── VI_blockcreate_li.h ├── VI_blockcreate_mi.h ├── VI_blockcreate_si.h ├── VI_blockcreate_uc.h ├── VI_blockcreate_vi.h ├── VI_blockdestroy_bl.h ├── VI_blockdestroy_d.h ├── VI_blockdestroy_f.h ├── VI_blockdestroy_i.h ├── VI_blockdestroy_li.h ├── VI_blockdestroy_mi.h ├── VI_blockdestroy_si.h ├── VI_blockdestroy_uc.h ├── VI_blockdestroy_vi.h ├── VI_cblockadmit_d_ai.h ├── VI_cblockadmit_d_as.h ├── VI_cblockadmit_d_di.h ├── VI_cblockadmit_d_ds.h ├── VI_cblockadmit_f_ai.h ├── VI_cblockadmit_f_as.h ├── VI_cblockadmit_f_di.h ├── VI_cblockadmit_f_ds.h ├── VI_cblockbind_d_ai.h ├── VI_cblockbind_d_as.h ├── VI_cblockbind_d_di.h ├── VI_cblockbind_d_ds.h ├── VI_cblockbind_f_ai.h ├── VI_cblockbind_f_as.h ├── VI_cblockbind_f_di.h ├── VI_cblockbind_f_ds.h ├── VI_cblockcreate_d.h ├── VI_cblockcreate_f.h ├── VI_cblockdestroy_d.h ├── VI_cblockdestroy_d_ai.h ├── VI_cblockdestroy_d_as.h ├── VI_cblockdestroy_d_di.h ├── VI_cblockdestroy_d_ds.h ├── VI_cblockdestroy_f.h ├── VI_cblockdestroy_f_ai.h ├── VI_cblockdestroy_f_as.h ├── VI_cblockdestroy_f_di.h ├── VI_cblockdestroy_f_ds.h ├── VI_cblockfind_d_ai.h ├── VI_cblockfind_d_as.h ├── VI_cblockfind_d_di.h ├── VI_cblockfind_d_ds.h ├── VI_cblockfind_f_ai.h ├── VI_cblockfind_f_as.h ├── VI_cblockfind_f_di.h ├── VI_cblockfind_f_ds.h ├── VI_cblockrebind_d_ai.h ├── VI_cblockrebind_d_as.h ├── VI_cblockrebind_d_di.h ├── VI_cblockrebind_d_ds.h ├── VI_cblockrebind_f_ai.h ├── VI_cblockrebind_f_as.h ├── VI_cblockrebind_f_di.h ├── VI_cblockrebind_f_ds.h ├── VI_cblockrelease_d_ai.h ├── VI_cblockrelease_d_as.h ├── VI_cblockrelease_d_di.h ├── VI_cblockrelease_d_ds.h ├── VI_cblockrelease_f_ai.h ├── VI_cblockrelease_f_as.h ├── VI_cblockrelease_f_di.h ├── VI_cblockrelease_f_ds.h ├── VI_ccfftip_create_d_def.h ├── VI_ccfftip_create_d_fftw.h ├── VI_ccfftip_create_f_def.h ├── VI_ccfftip_create_f_fftw.h ├── VI_ccfftip_d.h ├── VI_ccfftip_d_def.h ├── VI_ccfftip_d_fftw.h ├── VI_ccfftip_f.h ├── VI_ccfftip_f_def.h ├── VI_ccfftip_f_fftw.h ├── VI_ccfftmip_create_d_def.h ├── VI_ccfftmip_create_d_loop.h ├── VI_ccfftmip_create_f_def.h ├── VI_ccfftmip_create_f_loop.h ├── VI_ccfftmip_d_def.h ├── VI_ccfftmip_d_loop.h ├── VI_ccfftmip_f_def.h ├── VI_ccfftmip_f_loop.h ├── VI_ccfftmop_create_d_def.h ├── VI_ccfftmop_create_d_loop.h ├── VI_ccfftmop_create_f_def.h ├── VI_ccfftmop_create_f_loop.h ├── VI_ccfftmop_d_def.h ├── VI_ccfftmop_d_loop.h ├── VI_ccfftmop_f_def.h ├── VI_ccfftmop_f_loop.h ├── VI_ccfftop_create_d_def.h ├── VI_ccfftop_create_d_fftw.h ├── VI_ccfftop_create_f_def.h ├── VI_ccfftop_create_f_fftw.h ├── VI_ccfftop_d_def.h ├── VI_ccfftop_d_fftw.h ├── VI_ccfftop_f_def.h ├── VI_ccfftop_f_fftw.h ├── VI_cmcolview_d.h ├── VI_cmcolview_f.h ├── VI_cmcopy_d_d.h ├── VI_cmcopy_f_f.h ├── VI_cmfill_d.h ├── VI_cmfill_f.h ├── VI_cmrowview_d.h ├── VI_cmrowview_f.h ├── VI_cmtransview_d.h ├── VI_cmtransview_f.h ├── VI_crfftmop_create_d_def.h ├── VI_crfftmop_create_d_loop.h ├── VI_crfftmop_create_f_def.h ├── VI_crfftmop_create_f_loop.h ├── VI_crfftmop_d_def.h ├── VI_crfftmop_d_loop.h ├── VI_crfftmop_f_def.h ├── VI_crfftmop_f_loop.h ├── VI_crfftop_create_d_def.h ├── VI_crfftop_create_d_fftw.h ├── VI_crfftop_create_f_def.h ├── VI_crfftop_create_f_fftw.h ├── VI_crfftop_d_def.h ├── VI_crfftop_d_fftw.h ├── VI_crfftop_f_def.h ├── VI_crfftop_f_fftw.h ├── VI_csvmul_d.h ├── VI_csvmul_f.h ├── VI_cvadd_d.h ├── VI_cvadd_f.h ├── VI_cvalldestroy_d.h ├── VI_cvalldestroy_f.h ├── VI_cvcopy_d_d.h ├── VI_cvcopy_f_f.h ├── VI_cvcreate_d.h ├── VI_cvcreate_f.h ├── VI_cvdestroy_d.h ├── VI_cvdestroy_f.h ├── VI_cvfill_d.h ├── VI_cvfill_f.h ├── VI_cvget_d.h ├── VI_cvget_f.h ├── VI_cvsqrt_d.h ├── VI_cvsqrt_f.h ├── VI_fft_building_blocks_d.h ├── VI_fft_building_blocks_f.h ├── VI_fft_destroy_d_def.h ├── VI_fft_destroy_d_fftw.h ├── VI_fft_destroy_f_def.h ├── VI_fft_destroy_f_fftw.h ├── VI_fftm_building_blocks_d.h ├── VI_fftm_building_blocks_f.h ├── VI_ffttype.h ├── VI_fftw_obj.h ├── VI_jofk.h ├── VI_mcolview_d.h ├── VI_mcolview_f.h ├── VI_mcolview_i.h ├── VI_mcolview_li.h ├── VI_mcolview_si.h ├── VI_mcopy_d_d.h ├── VI_mcopy_f_f.h ├── VI_mfill_d.h ├── VI_mfill_f.h ├── VI_mimagview_d.h ├── VI_mimagview_f.h ├── VI_mrealview_d.h ├── VI_mrealview_f.h ├── VI_mrowview_d.h ├── VI_mrowview_f.h ├── VI_mrowview_i.h ├── VI_mrowview_li.h ├── VI_mrowview_si.h ├── VI_mtransview_d.h ├── VI_mtransview_f.h ├── VI_nuV.h ├── VI_rcfftmop_create_d_def.h ├── VI_rcfftmop_create_d_loop.h ├── VI_rcfftmop_create_f_def.h ├── VI_rcfftmop_create_f_loop.h ├── VI_rcfftmop_d_def.h ├── VI_rcfftmop_d_loop.h ├── VI_rcfftmop_f_def.h ├── VI_rcfftmop_f_loop.h ├── VI_rcfftop_create_d_def.h ├── VI_rcfftop_create_d_fftw.h ├── VI_rcfftop_create_f_def.h ├── VI_rcfftop_create_f_fftw.h ├── VI_rcfftop_d_def.h ├── VI_rcfftop_d_fftw.h ├── VI_rcfftop_f_def.h ├── VI_rcfftop_f_fftw.h ├── VI_rcvadd_d.h ├── VI_rcvadd_f.h ├── VI_rcvmul_d.h ├── VI_rcvmul_f.h ├── VI_rscvmul_d.h ├── VI_rscvmul_f.h ├── VI_support_cpriv_d.h ├── VI_support_cpriv_f.h ├── VI_support_priv_d.h ├── VI_support_priv_f.h ├── VI_support_priv_i.h ├── VI_support_priv_li.h ├── VI_support_priv_si.h ├── VI_support_priv_uc.h ├── VI_svmul_d.h ├── VI_svmul_f.h ├── VI_svsub_d.h ├── VI_svsub_f.h ├── VI_vacos_d.h ├── VI_vacos_f.h ├── VI_valldestroy_d.h ├── VI_valldestroy_f.h ├── VI_vclip_d.h ├── VI_vclip_f.h ├── VI_vcopy_d_d.h ├── VI_vcopy_f_f.h ├── VI_vcos_d.h ├── VI_vcos_f.h ├── VI_vcreate_d.h ├── VI_vcreate_f.h ├── VI_vcumsum_d.h ├── VI_vcumsum_f.h ├── VI_vcumsum_i.h ├── VI_vcumsum_li.h ├── VI_vcumsum_si.h ├── VI_vdestroy_d.h ├── VI_vdestroy_f.h ├── VI_veuler_d.h ├── VI_veuler_f.h ├── VI_vfill_d.h ├── VI_vfill_f.h ├── VI_vfill_i.h ├── VI_vfill_li.h ├── VI_vfill_si.h ├── VI_vget_d.h ├── VI_vget_f.h ├── VI_vimagview_d.h ├── VI_vimagview_f.h ├── VI_vmul_d.h ├── VI_vmul_f.h ├── VI_vput_d.h ├── VI_vput_f.h ├── VI_vramp_d.h ├── VI_vramp_f.h ├── VI_vramp_i.h ├── VI_vramp_li.h ├── VI_vrealview_d.h ├── VI_vrealview_f.h ├── VI_vsin_d.h ├── VI_vsin_f.h ├── jvsipF.h ├── jvsip_ceil.c ├── jvsip_floor.c ├── jvsip_round.c ├── jvsip_svd_d.c ├── jvsip_svd_f.c ├── vsip.h ├── vsipUnsafePointer.c ├── vsip_MATINDEXm.c ├── vsip_arg_d.c ├── vsip_arg_f.c ├── vsip_blockadmit_bl.c ├── vsip_blockadmit_d.c ├── vsip_blockadmit_f.c ├── vsip_blockadmit_i.c ├── vsip_blockadmit_li.c ├── vsip_blockadmit_mi.c ├── vsip_blockadmit_si.c ├── vsip_blockadmit_uc.c ├── vsip_blockadmit_vi.c ├── vsip_blockattributes_bl.h ├── vsip_blockattributes_d.h ├── vsip_blockattributes_f.h ├── vsip_blockattributes_i.h ├── vsip_blockattributes_li.h ├── vsip_blockattributes_mi.h ├── vsip_blockattributes_si.h ├── vsip_blockattributes_uc.h ├── vsip_blockattributes_vi.h ├── vsip_blockbind_bl.c ├── vsip_blockbind_d.c ├── vsip_blockbind_f.c ├── vsip_blockbind_i.c ├── vsip_blockbind_li.c ├── vsip_blockbind_mi.c ├── vsip_blockbind_si.c ├── vsip_blockbind_uc.c ├── vsip_blockbind_vi.c ├── vsip_blockcreate_bl.c ├── vsip_blockcreate_d.c ├── vsip_blockcreate_f.c ├── vsip_blockcreate_i.c ├── vsip_blockcreate_li.c ├── vsip_blockcreate_mi.c ├── vsip_blockcreate_si.c ├── vsip_blockcreate_uc.c ├── vsip_blockcreate_vi.c ├── vsip_blockdestroy_bl.c ├── vsip_blockdestroy_d.c ├── vsip_blockdestroy_f.c ├── vsip_blockdestroy_i.c ├── vsip_blockdestroy_li.c ├── vsip_blockdestroy_mi.c ├── vsip_blockdestroy_si.c ├── vsip_blockdestroy_uc.c ├── vsip_blockdestroy_vi.c ├── vsip_blockfind_bl.c ├── vsip_blockfind_d.c ├── vsip_blockfind_f.c ├── vsip_blockfind_i.c ├── vsip_blockfind_li.c ├── vsip_blockfind_mi.c ├── vsip_blockfind_si.c ├── vsip_blockfind_uc.c ├── vsip_blockfind_vi.c ├── vsip_blockrebind_bl.c ├── vsip_blockrebind_d.c ├── vsip_blockrebind_f.c ├── vsip_blockrebind_i.c ├── vsip_blockrebind_li.c ├── vsip_blockrebind_mi.c ├── vsip_blockrebind_si.c ├── vsip_blockrebind_uc.c ├── vsip_blockrebind_vi.c ├── vsip_blockrelease_bl.c ├── vsip_blockrelease_d.c ├── vsip_blockrelease_f.c ├── vsip_blockrelease_i.c ├── vsip_blockrelease_li.c ├── vsip_blockrelease_mi.c ├── vsip_blockrelease_si.c ├── vsip_blockrelease_uc.c ├── vsip_blockrelease_vi.c ├── vsip_cadd_d.c ├── vsip_cadd_f.c ├── vsip_cblockadmit_d.c ├── vsip_cblockadmit_f.c ├── vsip_cblockattributes_d.h ├── vsip_cblockattributes_f.h ├── vsip_cblockbind_d.c ├── vsip_cblockbind_f.c ├── vsip_cblockcreate_d.c ├── vsip_cblockcreate_f.c ├── vsip_cblockdestroy_d.c ├── vsip_cblockdestroy_f.c ├── vsip_cblockfind_d.c ├── vsip_cblockfind_f.c ├── vsip_cblockrebind_d.c ├── vsip_cblockrebind_f.c ├── vsip_cblockrelease_d.c ├── vsip_cblockrelease_f.c ├── vsip_ccfftip_create_d.c ├── vsip_ccfftip_create_f.c ├── vsip_ccfftip_d.c ├── vsip_ccfftip_f.c ├── vsip_ccfftmip_create_d.c ├── vsip_ccfftmip_create_f.c ├── vsip_ccfftmip_d.c ├── vsip_ccfftmip_f.c ├── vsip_ccfftmop_create_d.c ├── vsip_ccfftmop_create_f.c ├── vsip_ccfftmop_d.c ├── vsip_ccfftmop_f.c ├── vsip_ccfftop_create_d.c ├── vsip_ccfftop_create_f.c ├── vsip_ccfftop_d.c ├── vsip_ccfftop_f.c ├── vsip_cchold_create_d.c ├── vsip_cchold_create_f.c ├── vsip_cchold_d.c ├── vsip_cchold_destroy_d.c ├── vsip_cchold_destroy_f.c ├── vsip_cchold_f.c ├── vsip_cchold_getattr_d.c ├── vsip_cchold_getattr_f.c ├── vsip_ccholdattributes_d.h ├── vsip_ccholdattributes_f.h ├── vsip_ccholsol_d.c ├── vsip_ccholsol_f.c ├── vsip_ccorr1d_create_d.c ├── vsip_ccorr1d_create_f.c ├── vsip_ccorr1d_destroy_d.c ├── vsip_ccorr1d_destroy_f.c ├── vsip_ccorr1d_getattr_d.c ├── vsip_ccorr1d_getattr_f.c ├── vsip_ccorr1dattributes_d.h ├── vsip_ccorr1dattributes_f.h ├── vsip_ccorrelate1d_d.c ├── vsip_ccorrelate1d_f.c ├── vsip_ccovsol_d.c ├── vsip_ccovsol_f.c ├── vsip_cdiv_d.c ├── vsip_cdiv_f.c ├── vsip_cexp_d.c ├── vsip_cexp_f.c ├── vsip_cfir_create_d.c ├── vsip_cfir_create_f.c ├── vsip_cfir_destroy_d.c ├── vsip_cfir_destroy_f.c ├── vsip_cfir_getattr_d.c ├── vsip_cfir_getattr_f.c ├── vsip_cfir_reset_d.c ├── vsip_cfir_reset_f.c ├── vsip_cfirattributes_d.h ├── vsip_cfirattributes_f.h ├── vsip_cfirflt_d.c ├── vsip_cfirflt_f.c ├── vsip_cgemp_d.c ├── vsip_cgemp_f.c ├── vsip_cgems_d.c ├── vsip_cgems_f.c ├── vsip_chold_create_d.c ├── vsip_chold_create_f.c ├── vsip_chold_d.c ├── vsip_chold_destroy_d.c ├── vsip_chold_destroy_f.c ├── vsip_chold_f.c ├── vsip_chold_getattr_d.c ├── vsip_chold_getattr_f.c ├── vsip_choldattributes_d.h ├── vsip_choldattributes_f.h ├── vsip_cholsol_d.c ├── vsip_cholsol_f.c ├── vsip_cjmul_d.c ├── vsip_cjmul_f.c ├── vsip_cllsqsol_d.c ├── vsip_cllsqsol_f.c ├── vsip_clog_d.c ├── vsip_clog_f.c ├── vsip_clud_create_d.c ├── vsip_clud_create_f.c ├── vsip_clud_d.c ├── vsip_clud_destroy_d.c ├── vsip_clud_destroy_f.c ├── vsip_clud_f.c ├── vsip_clud_getattr_d.c ├── vsip_clud_getattr_f.c ├── vsip_cludattributes_d.h ├── vsip_cludattributes_f.h ├── vsip_clusol_d.c ├── vsip_clusol_f.c ├── vsip_cmadd_d.c ├── vsip_cmadd_f.c ├── vsip_cmag_d.c ├── vsip_cmag_f.c ├── vsip_cmagsq_d.c ├── vsip_cmagsq_f.c ├── vsip_cmalldestroy_d.c ├── vsip_cmalldestroy_f.c ├── vsip_cmbind_d.c ├── vsip_cmbind_f.c ├── vsip_cmcloneview_d.c ├── vsip_cmcloneview_f.c ├── vsip_cmcolview_d.c ├── vsip_cmcolview_f.c ├── vsip_cmconj_d.c ├── vsip_cmconj_f.c ├── vsip_cmcopy_d_d.c ├── vsip_cmcopy_d_f.c ├── vsip_cmcopy_f_d.c ├── vsip_cmcopy_f_f.c ├── vsip_cmcopyfrom_user_d.c ├── vsip_cmcopyfrom_user_f.c ├── vsip_cmcopyto_user_d.c ├── vsip_cmcopyto_user_f.c ├── vsip_cmcreate_d.c ├── vsip_cmcreate_f.c ├── vsip_cmdestroy_d.c ├── vsip_cmdestroy_f.c ├── vsip_cmdiagview_d.c ├── vsip_cmdiagview_f.c ├── vsip_cmdiv_d.c ├── vsip_cmdiv_f.c ├── vsip_cmexp_d.c ├── vsip_cmexp_f.c ├── vsip_cmexpoavg_d.c ├── vsip_cmexpoavg_f.c ├── vsip_cmfill_d.c ├── vsip_cmfill_f.c ├── vsip_cmfreqswap_d.c ├── vsip_cmfreqswap_f.c ├── vsip_cmgather_d.c ├── vsip_cmgather_f.c ├── vsip_cmget_d.c ├── vsip_cmget_f.c ├── vsip_cmgetattrib_d.c ├── vsip_cmgetattrib_f.c ├── vsip_cmgetblock_d.c ├── vsip_cmgetblock_f.c ├── vsip_cmgetcollength_d.c ├── vsip_cmgetcollength_f.c ├── vsip_cmgetcolstride_d.c ├── vsip_cmgetcolstride_f.c ├── vsip_cmgetoffset_d.c ├── vsip_cmgetoffset_f.c ├── vsip_cmgetrowlength_d.c ├── vsip_cmgetrowlength_f.c ├── vsip_cmgetrowstride_d.c ├── vsip_cmgetrowstride_f.c ├── vsip_cmherm_d.c ├── vsip_cmherm_f.c ├── vsip_cmjmul_d.c ├── vsip_cmjmul_f.c ├── vsip_cmkron_d.c ├── vsip_cmkron_f.c ├── vsip_cmlog_d.c ├── vsip_cmlog_f.c ├── vsip_cmmag_d.c ├── vsip_cmmag_f.c ├── vsip_cmmeansqval_d.c ├── vsip_cmmeansqval_f.c ├── vsip_cmmeanval_d.c ├── vsip_cmmeanval_f.c ├── vsip_cmmul_d.c ├── vsip_cmmul_f.c ├── vsip_cmneg_d.c ├── vsip_cmneg_f.c ├── vsip_cmpermute_once_d.c ├── vsip_cmpermute_once_f.c ├── vsip_cmplx_d.c ├── vsip_cmplx_f.c ├── vsip_cmprod3_d.c ├── vsip_cmprod3_f.c ├── vsip_cmprod4_d.c ├── vsip_cmprod4_f.c ├── vsip_cmprod_d.c ├── vsip_cmprod_f.c ├── vsip_cmprodh_d.c ├── vsip_cmprodh_f.c ├── vsip_cmprodj_d.c ├── vsip_cmprodj_f.c ├── vsip_cmprodt_d.c ├── vsip_cmprodt_f.c ├── vsip_cmput_d.c ├── vsip_cmput_f.c ├── vsip_cmputattrib_d.c ├── vsip_cmputattrib_f.c ├── vsip_cmputcollength_d.c ├── vsip_cmputcollength_f.c ├── vsip_cmputcolstride_d.c ├── vsip_cmputcolstride_f.c ├── vsip_cmputoffset_d.c ├── vsip_cmputoffset_f.c ├── vsip_cmputrowlength_d.c ├── vsip_cmputrowlength_f.c ├── vsip_cmputrowstride_d.c ├── vsip_cmputrowstride_f.c ├── vsip_cmrandn_d.c ├── vsip_cmrandn_f.c ├── vsip_cmrandu_d.c ├── vsip_cmrandu_f.c ├── vsip_cmrecip_d.c ├── vsip_cmrecip_f.c ├── vsip_cmrowview_d.c ├── vsip_cmrowview_f.c ├── vsip_cmrsdiv_d.c ├── vsip_cmrsdiv_f.c ├── vsip_cmscatter_d.c ├── vsip_cmscatter_f.c ├── vsip_cmsqrt_d.c ├── vsip_cmsqrt_f.c ├── vsip_cmsub_d.c ├── vsip_cmsub_f.c ├── vsip_cmsubview_d.c ├── vsip_cmsubview_f.c ├── vsip_cmsumval_d.c ├── vsip_cmsumval_f.c ├── vsip_cmswap_d.c ├── vsip_cmswap_f.c ├── vsip_cmtrans_d.c ├── vsip_cmtrans_f.c ├── vsip_cmtransview_d.c ├── vsip_cmtransview_f.c ├── vsip_cmul_d.c ├── vsip_cmul_f.c ├── vsip_cmviewattributes_d.h ├── vsip_cmviewattributes_f.h ├── vsip_cmvprod3_d.c ├── vsip_cmvprod3_f.c ├── vsip_cmvprod4_d.c ├── vsip_cmvprod4_f.c ├── vsip_cmvprod_d.c ├── vsip_cmvprod_f.c ├── vsip_cneg_d.c ├── vsip_cneg_f.c ├── vsip_conj_d.c ├── vsip_conj_f.c ├── vsip_conv1d_create_d.c ├── vsip_conv1d_create_f.c ├── vsip_conv1d_destroy_d.c ├── vsip_conv1d_destroy_f.c ├── vsip_conv1d_getattr_d.c ├── vsip_conv1d_getattr_f.c ├── vsip_conv1dattributes_d.h ├── vsip_conv1dattributes_f.h ├── vsip_convolve1d_d.c ├── vsip_convolve1d_f.c ├── vsip_corr1d_create_d.c ├── vsip_corr1d_create_f.c ├── vsip_corr1d_destroy_d.c ├── vsip_corr1d_destroy_f.c ├── vsip_corr1d_getattr_d.c ├── vsip_corr1d_getattr_f.c ├── vsip_corr1dattributes_d.h ├── vsip_corr1dattributes_f.h ├── vsip_correlate1d_d.c ├── vsip_correlate1d_f.c ├── vsip_covsol_d.c ├── vsip_covsol_f.c ├── vsip_cqrd_create_d.c ├── vsip_cqrd_create_f.c ├── vsip_cqrd_d.c ├── vsip_cqrd_destroy_d.c ├── vsip_cqrd_destroy_f.c ├── vsip_cqrd_f.c ├── vsip_cqrd_getattr_d.c ├── vsip_cqrd_getattr_f.c ├── vsip_cqrdattributes_d.h ├── vsip_cqrdattributes_f.h ├── vsip_cqrdprodq_d.c ├── vsip_cqrdprodq_f.c ├── vsip_cqrdsolr_d.c ├── vsip_cqrdsolr_f.c ├── vsip_cqrsol_d.c ├── vsip_cqrsol_f.c ├── vsip_crandn_d.c ├── vsip_crandn_f.c ├── vsip_crandu_d.c ├── vsip_crandu_f.c ├── vsip_crdiv_d.c ├── vsip_crdiv_f.c ├── vsip_crecip_d.c ├── vsip_crecip_f.c ├── vsip_crfftmop_create_d.c ├── vsip_crfftmop_create_f.c ├── vsip_crfftmop_d.c ├── vsip_crfftmop_f.c ├── vsip_crfftop_create_d.c ├── vsip_crfftop_create_f.c ├── vsip_crfftop_d.c ├── vsip_crfftop_f.c ├── vsip_crmdiv_d.c ├── vsip_crmdiv_f.c ├── vsip_crmsub_d.c ├── vsip_crmsub_f.c ├── vsip_crsub_d.c ├── vsip_crsub_f.c ├── vsip_crvdiv_d.c ├── vsip_crvdiv_f.c ├── vsip_crvsub_d.c ├── vsip_crvsub_f.c ├── vsip_csmadd_d.c ├── vsip_csmadd_f.c ├── vsip_csmdiv_d.c ├── vsip_csmdiv_f.c ├── vsip_csmmul_d.c ├── vsip_csmmul_f.c ├── vsip_csmsub_d.c ├── vsip_csmsub_f.c ├── vsip_csqrt_d.c ├── vsip_csqrt_f.c ├── vsip_cstorage.c ├── vsip_csub_d.c ├── vsip_csub_f.c ├── vsip_csvadd_d.c ├── vsip_csvadd_f.c ├── vsip_csvdiv_d.c ├── vsip_csvdiv_f.c ├── vsip_csvmul_d.c ├── vsip_csvmul_f.c ├── vsip_csvsub_d.c ├── vsip_csvsub_f.c ├── vsip_ctalldestroy_d.c ├── vsip_ctalldestroy_f.c ├── vsip_ctbind_d.c ├── vsip_ctbind_f.c ├── vsip_ctcloneview_d.c ├── vsip_ctcloneview_f.c ├── vsip_ctcreate_d.c ├── vsip_ctcreate_f.c ├── vsip_ctdestroy_d.c ├── vsip_ctdestroy_f.c ├── vsip_ctget_d.c ├── vsip_ctget_f.c ├── vsip_ctgetattrib_d.c ├── vsip_ctgetattrib_f.c ├── vsip_ctgetblock_d.c ├── vsip_ctgetblock_f.c ├── vsip_ctgetoffset_d.c ├── vsip_ctgetoffset_f.c ├── vsip_ctgetxlength_d.c ├── vsip_ctgetxlength_f.c ├── vsip_ctgetxstride_d.c ├── vsip_ctgetxstride_f.c ├── vsip_ctgetylength_d.c ├── vsip_ctgetylength_f.c ├── vsip_ctgetystride_d.c ├── vsip_ctgetystride_f.c ├── vsip_ctgetzlength_d.c ├── vsip_ctgetzlength_f.c ├── vsip_ctgetzstride_d.c ├── vsip_ctgetzstride_f.c ├── vsip_ctmatrixview_d.c ├── vsip_ctmatrixview_f.c ├── vsip_ctoepsol_d.c ├── vsip_ctoepsol_f.c ├── vsip_ctput_d.c ├── vsip_ctput_f.c ├── vsip_ctputattrib_d.c ├── vsip_ctputattrib_f.c ├── vsip_ctputoffset_d.c ├── vsip_ctputoffset_f.c ├── vsip_ctputxlength_d.c ├── vsip_ctputxlength_f.c ├── vsip_ctputxstride_d.c ├── vsip_ctputxstride_f.c ├── vsip_ctputylength_d.c ├── vsip_ctputylength_f.c ├── vsip_ctputystride_d.c ├── vsip_ctputystride_f.c ├── vsip_ctputzlength_d.c ├── vsip_ctputzlength_f.c ├── vsip_ctputzstride_d.c ├── vsip_ctputzstride_f.c ├── vsip_ctsubview_d.c ├── vsip_ctsubview_f.c ├── vsip_cttransview_d.c ├── vsip_cttransview_f.c ├── vsip_ctvectview_d.c ├── vsip_ctvectview_f.c ├── vsip_ctviewattributes_d.h ├── vsip_ctviewattributes_f.h ├── vsip_cvadd_d.c ├── vsip_cvadd_f.c ├── vsip_cvalldestroy_d.c ├── vsip_cvalldestroy_f.c ├── vsip_cvam_d.c ├── vsip_cvam_f.c ├── vsip_cvbind_d.c ├── vsip_cvbind_f.c ├── vsip_cvcloneview_d.c ├── vsip_cvcloneview_f.c ├── vsip_cvconj_d.c ├── vsip_cvconj_f.c ├── vsip_cvcopy_d_d.c ├── vsip_cvcopy_d_f.c ├── vsip_cvcopy_f_d.c ├── vsip_cvcopy_f_f.c ├── vsip_cvcopyfrom_user_d.c ├── vsip_cvcopyfrom_user_f.c ├── vsip_cvcopyto_user_d.c ├── vsip_cvcopyto_user_f.c ├── vsip_cvcreate_d.c ├── vsip_cvcreate_f.c ├── vsip_cvdestroy_d.c ├── vsip_cvdestroy_f.c ├── vsip_cvdiv_d.c ├── vsip_cvdiv_f.c ├── vsip_cvdot_d.c ├── vsip_cvdot_f.c ├── vsip_cvexp_d.c ├── vsip_cvexp_f.c ├── vsip_cvexpoavg_d.c ├── vsip_cvexpoavg_f.c ├── vsip_cvfill_d.c ├── vsip_cvfill_f.c ├── vsip_cvfreqswap_d.c ├── vsip_cvfreqswap_f.c ├── vsip_cvgather_d.c ├── vsip_cvgather_f.c ├── vsip_cvget_d.c ├── vsip_cvget_f.c ├── vsip_cvgetattrib_d.c ├── vsip_cvgetattrib_f.c ├── vsip_cvgetblock_d.c ├── vsip_cvgetblock_f.c ├── vsip_cvgetlength_d.c ├── vsip_cvgetlength_f.c ├── vsip_cvgetoffset_d.c ├── vsip_cvgetoffset_f.c ├── vsip_cvgetstride_d.c ├── vsip_cvgetstride_f.c ├── vsip_cvjdot_d.c ├── vsip_cvjdot_f.c ├── vsip_cvjmul_d.c ├── vsip_cvjmul_f.c ├── vsip_cvkron_d.c ├── vsip_cvkron_f.c ├── vsip_cvlog_d.c ├── vsip_cvlog_f.c ├── vsip_cvma_d.c ├── vsip_cvma_f.c ├── vsip_cvmag_d.c ├── vsip_cvmag_f.c ├── vsip_cvmeansqval_d.c ├── vsip_cvmeansqval_f.c ├── vsip_cvmeanval_d.c ├── vsip_cvmeanval_f.c ├── vsip_cvmmul_d.c ├── vsip_cvmmul_f.c ├── vsip_cvmodulate_d.c ├── vsip_cvmodulate_f.c ├── vsip_cvmprod_d.c ├── vsip_cvmprod_f.c ├── vsip_cvmsa_d.c ├── vsip_cvmsa_f.c ├── vsip_cvmsb_d.c ├── vsip_cvmsb_f.c ├── vsip_cvmul_d.c ├── vsip_cvmul_f.c ├── vsip_cvneg_d.c ├── vsip_cvneg_f.c ├── vsip_cvouter_d.c ├── vsip_cvouter_f.c ├── vsip_cvput_d.c ├── vsip_cvput_f.c ├── vsip_cvputattrib_d.c ├── vsip_cvputattrib_f.c ├── vsip_cvputlength_d.c ├── vsip_cvputlength_f.c ├── vsip_cvputoffset_d.c ├── vsip_cvputoffset_f.c ├── vsip_cvputstride_d.c ├── vsip_cvputstride_f.c ├── vsip_cvrandn_d.c ├── vsip_cvrandn_f.c ├── vsip_cvrandu_d.c ├── vsip_cvrandu_f.c ├── vsip_cvrecip_d.c ├── vsip_cvrecip_f.c ├── vsip_cvrsdiv_d.c ├── vsip_cvrsdiv_f.c ├── vsip_cvsam_d.c ├── vsip_cvsam_f.c ├── vsip_cvsbm_d.c ├── vsip_cvsbm_f.c ├── vsip_cvscatter_d.c ├── vsip_cvscatter_f.c ├── vsip_cvsma_d.c ├── vsip_cvsma_f.c ├── vsip_cvsmsa_d.c ├── vsip_cvsmsa_f.c ├── vsip_cvsqrt_d.c ├── vsip_cvsqrt_f.c ├── vsip_cvsub_d.c ├── vsip_cvsub_f.c ├── vsip_cvsubview_d.c ├── vsip_cvsubview_f.c ├── vsip_cvsumval_d.c ├── vsip_cvsumval_f.c ├── vsip_cvswap_d.c ├── vsip_cvswap_f.c ├── vsip_cvviewattributes_d.h ├── vsip_cvviewattributes_f.h ├── vsip_fft_destroy_d.c ├── vsip_fft_destroy_f.c ├── vsip_fft_getattr_d.c ├── vsip_fft_getattr_f.c ├── vsip_fftattributes_d.h ├── vsip_fftattributes_f.h ├── vsip_fftm_destroy_d.c ├── vsip_fftm_destroy_f.c ├── vsip_fftm_getattr_d.c ├── vsip_fftm_getattr_f.c ├── vsip_fftmattributes_d.h ├── vsip_fftmattributes_f.h ├── vsip_finalize.c ├── vsip_fir_create_d.c ├── vsip_fir_create_f.c ├── vsip_fir_destroy_d.c ├── vsip_fir_destroy_f.c ├── vsip_fir_getattr_d.c ├── vsip_fir_getattr_f.c ├── vsip_fir_reset_d.c ├── vsip_fir_reset_f.c ├── vsip_firattributes_d.h ├── vsip_firattributes_f.h ├── vsip_firflt_d.c ├── vsip_firflt_f.c ├── vsip_gemp_d.c ├── vsip_gemp_f.c ├── vsip_gems_d.c ├── vsip_gems_f.c ├── vsip_init.c ├── vsip_llsqsol_d.c ├── vsip_llsqsol_f.c ├── vsip_lud_create_d.c ├── vsip_lud_create_f.c ├── vsip_lud_d.c ├── vsip_lud_destroy_d.c ├── vsip_lud_destroy_f.c ├── vsip_lud_f.c ├── vsip_lud_getattr_d.c ├── vsip_lud_getattr_f.c ├── vsip_ludattributes_d.h ├── vsip_ludattributes_f.h ├── vsip_lusol_d.c ├── vsip_lusol_f.c ├── vsip_macos_d.c ├── vsip_macos_f.c ├── vsip_madd_d.c ├── vsip_madd_f.c ├── vsip_madd_i.c ├── vsip_madd_li.c ├── vsip_madd_si.c ├── vsip_malldestroy_bl.c ├── vsip_malldestroy_d.c ├── vsip_malldestroy_f.c ├── vsip_malldestroy_i.c ├── vsip_malldestroy_li.c ├── vsip_malldestroy_si.c ├── vsip_malldestroy_uc.c ├── vsip_malltrue_bl.c ├── vsip_mand_i.c ├── vsip_mand_li.c ├── vsip_mand_si.c ├── vsip_manytrue_bl.c ├── vsip_marg_d.c ├── vsip_marg_f.c ├── vsip_masin_d.c ├── vsip_masin_f.c ├── vsip_matan2_d.c ├── vsip_matan2_f.c ├── vsip_matan_d.c ├── vsip_matan_f.c ├── vsip_matindex.c ├── vsip_mbind_bl.c ├── vsip_mbind_d.c ├── vsip_mbind_f.c ├── vsip_mbind_i.c ├── vsip_mbind_li.c ├── vsip_mbind_si.c ├── vsip_mbind_uc.c ├── vsip_mclip_d.c ├── vsip_mclip_f.c ├── vsip_mclip_i.c ├── vsip_mclip_li.c ├── vsip_mclip_si.c ├── vsip_mcloneview_bl.c ├── vsip_mcloneview_d.c ├── vsip_mcloneview_f.c ├── vsip_mcloneview_i.c ├── vsip_mcloneview_li.c ├── vsip_mcloneview_si.c ├── vsip_mcloneview_uc.c ├── vsip_mcmagsq_d.c ├── vsip_mcmagsq_f.c ├── vsip_mcmaxmgsq_d.c ├── vsip_mcmaxmgsq_f.c ├── vsip_mcmaxmgsqval_d.c ├── vsip_mcmaxmgsqval_f.c ├── vsip_mcminmgsq_d.c ├── vsip_mcminmgsq_f.c ├── vsip_mcminmgsqval_d.c ├── vsip_mcminmgsqval_f.c ├── vsip_mcmplx_d.c ├── vsip_mcmplx_f.c ├── vsip_mcolview_bl.c ├── vsip_mcolview_d.c ├── vsip_mcolview_f.c ├── vsip_mcolview_i.c ├── vsip_mcolview_li.c ├── vsip_mcolview_si.c ├── vsip_mcolview_uc.c ├── vsip_mcopy_bl_bl.c ├── vsip_mcopy_bl_d.c ├── vsip_mcopy_bl_f.c ├── vsip_mcopy_d_bl.c ├── vsip_mcopy_d_d.c ├── vsip_mcopy_d_f.c ├── vsip_mcopy_d_i.c ├── vsip_mcopy_d_li.c ├── vsip_mcopy_d_uc.c ├── vsip_mcopy_f_bl.c ├── vsip_mcopy_f_d.c ├── vsip_mcopy_f_f.c ├── vsip_mcopy_f_i.c ├── vsip_mcopy_f_li.c ├── vsip_mcopy_f_uc.c ├── vsip_mcopy_i_f.c ├── vsip_mcopy_i_i.c ├── vsip_mcopy_i_li.c ├── vsip_mcopy_li_li.c ├── vsip_mcopy_si_f.c ├── vsip_mcopyfrom_user_d.c ├── vsip_mcopyfrom_user_f.c ├── vsip_mcopyto_user_d.c ├── vsip_mcopyto_user_f.c ├── vsip_mcos_d.c ├── vsip_mcos_f.c ├── vsip_mcosh_d.c ├── vsip_mcosh_f.c ├── vsip_mcreate_bl.c ├── vsip_mcreate_d.c ├── vsip_mcreate_f.c ├── vsip_mcreate_i.c ├── vsip_mcreate_li.c ├── vsip_mcreate_si.c ├── vsip_mcreate_uc.c ├── vsip_mcumsum_d.c ├── vsip_mcumsum_f.c ├── vsip_mcumsum_i.c ├── vsip_mcumsum_li.c ├── vsip_mcumsum_si.c ├── vsip_mdestroy_bl.c ├── vsip_mdestroy_d.c ├── vsip_mdestroy_f.c ├── vsip_mdestroy_i.c ├── vsip_mdestroy_li.c ├── vsip_mdestroy_si.c ├── vsip_mdestroy_uc.c ├── vsip_mdiagview_bl.c ├── vsip_mdiagview_d.c ├── vsip_mdiagview_f.c ├── vsip_mdiagview_i.c ├── vsip_mdiagview_li.c ├── vsip_mdiagview_si.c ├── vsip_mdiagview_uc.c ├── vsip_mdiv_d.c ├── vsip_mdiv_f.c ├── vsip_meuler_d.c ├── vsip_meuler_f.c ├── vsip_mexp10_d.c ├── vsip_mexp10_f.c ├── vsip_mexp_d.c ├── vsip_mexp_f.c ├── vsip_mexpoavg_d.c ├── vsip_mexpoavg_f.c ├── vsip_mfill_d.c ├── vsip_mfill_f.c ├── vsip_mfill_i.c ├── vsip_mfill_li.c ├── vsip_mfill_si.c ├── vsip_mfill_uc.c ├── vsip_mfreqswap_d.c ├── vsip_mfreqswap_f.c ├── vsip_mgather_d.c ├── vsip_mgather_f.c ├── vsip_mget_bl.c ├── vsip_mget_d.c ├── vsip_mget_f.c ├── vsip_mget_i.c ├── vsip_mget_li.c ├── vsip_mget_si.c ├── vsip_mget_uc.c ├── vsip_mgetattrib_bl.c ├── vsip_mgetattrib_d.c ├── vsip_mgetattrib_f.c ├── vsip_mgetattrib_i.c ├── vsip_mgetattrib_li.c ├── vsip_mgetattrib_si.c ├── vsip_mgetattrib_uc.c ├── vsip_mgetblock_bl.c ├── vsip_mgetblock_d.c ├── vsip_mgetblock_f.c ├── vsip_mgetblock_i.c ├── vsip_mgetblock_li.c ├── vsip_mgetblock_si.c ├── vsip_mgetblock_uc.c ├── vsip_mgetcollength_bl.c ├── vsip_mgetcollength_d.c ├── vsip_mgetcollength_f.c ├── vsip_mgetcollength_i.c ├── vsip_mgetcollength_li.c ├── vsip_mgetcollength_si.c ├── vsip_mgetcollength_uc.c ├── vsip_mgetcolstride_bl.c ├── vsip_mgetcolstride_d.c ├── vsip_mgetcolstride_f.c ├── vsip_mgetcolstride_i.c ├── vsip_mgetcolstride_li.c ├── vsip_mgetcolstride_si.c ├── vsip_mgetcolstride_uc.c ├── vsip_mgetoffset_bl.c ├── vsip_mgetoffset_d.c ├── vsip_mgetoffset_f.c ├── vsip_mgetoffset_i.c ├── vsip_mgetoffset_li.c ├── vsip_mgetoffset_si.c ├── vsip_mgetoffset_uc.c ├── vsip_mgetrowlength_bl.c ├── vsip_mgetrowlength_d.c ├── vsip_mgetrowlength_f.c ├── vsip_mgetrowlength_i.c ├── vsip_mgetrowlength_li.c ├── vsip_mgetrowlength_si.c ├── vsip_mgetrowlength_uc.c ├── vsip_mgetrowstride_bl.c ├── vsip_mgetrowstride_d.c ├── vsip_mgetrowstride_f.c ├── vsip_mgetrowstride_i.c ├── vsip_mgetrowstride_li.c ├── vsip_mgetrowstride_si.c ├── vsip_mgetrowstride_uc.c ├── vsip_mhisto_d.c ├── vsip_mhisto_f.c ├── vsip_mhisto_i.c ├── vsip_mhisto_li.c ├── vsip_mhisto_si.c ├── vsip_mhypot_d.c ├── vsip_mhypot_f.c ├── vsip_mimag_d.c ├── vsip_mimag_f.c ├── vsip_mimagview_d.c ├── vsip_mimagview_f.c ├── vsip_mindexbool.c ├── vsip_minterp_linear_d.c ├── vsip_minterp_linear_f.c ├── vsip_minterp_nearest_d.c ├── vsip_minterp_nearest_f.c ├── vsip_minterp_spline_d.c ├── vsip_minterp_spline_f.c ├── vsip_minvclip_d.c ├── vsip_minvclip_f.c ├── vsip_mkron_d.c ├── vsip_mkron_f.c ├── vsip_mleq_d.c ├── vsip_mleq_f.c ├── vsip_mlge_d.c ├── vsip_mlge_f.c ├── vsip_mlgt_d.c ├── vsip_mlgt_f.c ├── vsip_mlle_d.c ├── vsip_mlle_f.c ├── vsip_mllt_d.c ├── vsip_mllt_f.c ├── vsip_mlne_d.c ├── vsip_mlne_f.c ├── vsip_mlog10_d.c ├── vsip_mlog10_f.c ├── vsip_mlog_d.c ├── vsip_mlog_f.c ├── vsip_mmag_d.c ├── vsip_mmag_f.c ├── vsip_mmax_d.c ├── vsip_mmax_f.c ├── vsip_mmaxmg_d.c ├── vsip_mmaxmg_f.c ├── vsip_mmaxmgval_d.c ├── vsip_mmaxmgval_f.c ├── vsip_mmaxval_d.c ├── vsip_mmaxval_f.c ├── vsip_mmaxval_i.c ├── vsip_mmaxval_li.c ├── vsip_mmaxval_si.c ├── vsip_mmeansqval_d.c ├── vsip_mmeansqval_f.c ├── vsip_mmeanval_d.c ├── vsip_mmeanval_f.c ├── vsip_mmin_d.c ├── vsip_mmin_f.c ├── vsip_mminmg_d.c ├── vsip_mminmg_f.c ├── vsip_mminmgval_d.c ├── vsip_mminmgval_f.c ├── vsip_mminval_d.c ├── vsip_mminval_f.c ├── vsip_mminval_i.c ├── vsip_mminval_li.c ├── vsip_mminval_si.c ├── vsip_mmul_d.c ├── vsip_mmul_f.c ├── vsip_mneg_d.c ├── vsip_mneg_f.c ├── vsip_mpermute_create_d.c ├── vsip_mpermute_create_f.c ├── vsip_mpermute_d.c ├── vsip_mpermute_f.c ├── vsip_mpermute_once_d.c ├── vsip_mpermute_once_f.c ├── vsip_mpolar_d.c ├── vsip_mpolar_f.c ├── vsip_mprod3_d.c ├── vsip_mprod3_f.c ├── vsip_mprod4_d.c ├── vsip_mprod4_f.c ├── vsip_mprod_d.c ├── vsip_mprod_f.c ├── vsip_mprodt_d.c ├── vsip_mprodt_f.c ├── vsip_mput_bl.c ├── vsip_mput_d.c ├── vsip_mput_f.c ├── vsip_mput_i.c ├── vsip_mput_li.c ├── vsip_mput_si.c ├── vsip_mput_uc.c ├── vsip_mputattrib_bl.c ├── vsip_mputattrib_d.c ├── vsip_mputattrib_f.c ├── vsip_mputattrib_i.c ├── vsip_mputattrib_li.c ├── vsip_mputattrib_si.c ├── vsip_mputattrib_uc.c ├── vsip_mputcollength_bl.c ├── vsip_mputcollength_d.c ├── vsip_mputcollength_f.c ├── vsip_mputcollength_i.c ├── vsip_mputcollength_li.c ├── vsip_mputcollength_si.c ├── vsip_mputcollength_uc.c ├── vsip_mputcolstride_bl.c ├── vsip_mputcolstride_d.c ├── vsip_mputcolstride_f.c ├── vsip_mputcolstride_i.c ├── vsip_mputcolstride_li.c ├── vsip_mputcolstride_si.c ├── vsip_mputcolstride_uc.c ├── vsip_mputoffset_bl.c ├── vsip_mputoffset_d.c ├── vsip_mputoffset_f.c ├── vsip_mputoffset_i.c ├── vsip_mputoffset_li.c ├── vsip_mputoffset_si.c ├── vsip_mputoffset_uc.c ├── vsip_mputrowlength_bl.c ├── vsip_mputrowlength_d.c ├── vsip_mputrowlength_f.c ├── vsip_mputrowlength_i.c ├── vsip_mputrowlength_li.c ├── vsip_mputrowlength_si.c ├── vsip_mputrowlength_uc.c ├── vsip_mputrowstride_bl.c ├── vsip_mputrowstride_d.c ├── vsip_mputrowstride_f.c ├── vsip_mputrowstride_i.c ├── vsip_mputrowstride_li.c ├── vsip_mputrowstride_si.c ├── vsip_mputrowstride_uc.c ├── vsip_mrandn_d.c ├── vsip_mrandn_f.c ├── vsip_mrandu_d.c ├── vsip_mrandu_f.c ├── vsip_mreal_d.c ├── vsip_mreal_f.c ├── vsip_mrealview_d.c ├── vsip_mrealview_f.c ├── vsip_mrecip_d.c ├── vsip_mrecip_f.c ├── vsip_mrect_d.c ├── vsip_mrect_f.c ├── vsip_mrowview_bl.c ├── vsip_mrowview_d.c ├── vsip_mrowview_f.c ├── vsip_mrowview_i.c ├── vsip_mrowview_li.c ├── vsip_mrowview_si.c ├── vsip_mrowview_uc.c ├── vsip_mrsqrt_d.c ├── vsip_mrsqrt_f.c ├── vsip_mscatter_d.c ├── vsip_mscatter_f.c ├── vsip_msdiv_d.c ├── vsip_msdiv_f.c ├── vsip_msin_d.c ├── vsip_msin_f.c ├── vsip_msinh_d.c ├── vsip_msinh_f.c ├── vsip_msq_d.c ├── vsip_msq_f.c ├── vsip_msqrt_d.c ├── vsip_msqrt_f.c ├── vsip_msub_d.c ├── vsip_msub_f.c ├── vsip_msub_i.c ├── vsip_msub_li.c ├── vsip_msub_si.c ├── vsip_msubview_bl.c ├── vsip_msubview_d.c ├── vsip_msubview_f.c ├── vsip_msubview_i.c ├── vsip_msubview_li.c ├── vsip_msubview_si.c ├── vsip_msubview_uc.c ├── vsip_msumsqval_d.c ├── vsip_msumsqval_f.c ├── vsip_msumval_bl.c ├── vsip_msumval_d.c ├── vsip_msumval_f.c ├── vsip_mswap_d.c ├── vsip_mswap_f.c ├── vsip_mtan_d.c ├── vsip_mtan_f.c ├── vsip_mtanh_d.c ├── vsip_mtanh_f.c ├── vsip_mtrans_d.c ├── vsip_mtrans_f.c ├── vsip_mtransview_bl.c ├── vsip_mtransview_d.c ├── vsip_mtransview_f.c ├── vsip_mtransview_i.c ├── vsip_mtransview_li.c ├── vsip_mtransview_si.c ├── vsip_mtransview_uc.c ├── vsip_mviewattributes_bl.h ├── vsip_mviewattributes_d.h ├── vsip_mviewattributes_f.h ├── vsip_mviewattributes_i.h ├── vsip_mviewattributes_li.h ├── vsip_mviewattributes_si.h ├── vsip_mviewattributes_uc.h ├── vsip_mvprod3_d.c ├── vsip_mvprod3_f.c ├── vsip_mvprod4_d.c ├── vsip_mvprod4_f.c ├── vsip_mvprod_d.c ├── vsip_mvprod_f.c ├── vsip_permute_destroy.c ├── vsip_permute_init.c ├── vsip_permuteattributes.h ├── vsip_polar_d.c ├── vsip_polar_f.c ├── vsip_qrd_create_d.c ├── vsip_qrd_create_f.c ├── vsip_qrd_d.c ├── vsip_qrd_destroy_d.c ├── vsip_qrd_destroy_f.c ├── vsip_qrd_f.c ├── vsip_qrd_getattr_d.c ├── vsip_qrd_getattr_f.c ├── vsip_qrdattributes_d.h ├── vsip_qrdattributes_f.h ├── vsip_qrdprodq_d.c ├── vsip_qrdprodq_f.c ├── vsip_qrdsolr_d.c ├── vsip_qrdsolr_f.c ├── vsip_qrsol_d.c ├── vsip_qrsol_f.c ├── vsip_randcreate.c ├── vsip_randdestroy.c ├── vsip_randn_d.c ├── vsip_randn_f.c ├── vsip_randobject.h ├── vsip_randu_d.c ├── vsip_randu_f.c ├── vsip_rcadd_d.c ├── vsip_rcadd_f.c ├── vsip_rcfftmop_create_d.c ├── vsip_rcfftmop_create_f.c ├── vsip_rcfftmop_d.c ├── vsip_rcfftmop_f.c ├── vsip_rcfftop_create_d.c ├── vsip_rcfftop_create_f.c ├── vsip_rcfftop_d.c ├── vsip_rcfftop_f.c ├── vsip_rcfir_create_d.c ├── vsip_rcfir_create_f.c ├── vsip_rcfir_destroy_d.c ├── vsip_rcfir_destroy_f.c ├── vsip_rcfir_getattr_d.c ├── vsip_rcfir_getattr_f.c ├── vsip_rcfir_reset_d.c ├── vsip_rcfir_reset_f.c ├── vsip_rcfirattributes_d.h ├── vsip_rcfirattributes_f.h ├── vsip_rcfirflt_d.c ├── vsip_rcfirflt_f.c ├── vsip_rcmadd_d.c ├── vsip_rcmadd_f.c ├── vsip_rcmdiv_d.c ├── vsip_rcmdiv_f.c ├── vsip_rcmmul_d.c ├── vsip_rcmmul_f.c ├── vsip_rcmsub_d.c ├── vsip_rcmsub_f.c ├── vsip_rcmul_d.c ├── vsip_rcmul_f.c ├── vsip_rcsub_d.c ├── vsip_rcsub_f.c ├── vsip_rcvadd_d.c ├── vsip_rcvadd_f.c ├── vsip_rcvdiv_d.c ├── vsip_rcvdiv_f.c ├── vsip_rcvmul_d.c ├── vsip_rcvmul_f.c ├── vsip_rcvsub_d.c ├── vsip_rcvsub_f.c ├── vsip_rect_d.c ├── vsip_rect_f.c ├── vsip_rscmadd_d.c ├── vsip_rscmadd_f.c ├── vsip_rscmdiv_d.c ├── vsip_rscmdiv_f.c ├── vsip_rscmmul_d.c ├── vsip_rscmmul_f.c ├── vsip_rscmsub_d.c ├── vsip_rscmsub_f.c ├── vsip_rscvadd_d.c ├── vsip_rscvadd_f.c ├── vsip_rscvdiv_d.c ├── vsip_rscvdiv_f.c ├── vsip_rscvmul_d.c ├── vsip_rscvmul_f.c ├── vsip_rscvsub_d.c ├── vsip_rscvsub_f.c ├── vsip_rvcmmul_d.c ├── vsip_rvcmmul_f.c ├── vsip_scalars.h ├── vsip_smadd_d.c ├── vsip_smadd_f.c ├── vsip_smdiv_d.c ├── vsip_smdiv_f.c ├── vsip_smmul_d.c ├── vsip_smmul_f.c ├── vsip_smsub_d.c ├── vsip_smsub_f.c ├── vsip_smsub_i.c ├── vsip_smsub_li.c ├── vsip_smsub_si.c ├── vsip_spline_create_d.c ├── vsip_spline_create_f.c ├── vsip_spline_destroy_d.c ├── vsip_spline_destroy_f.c ├── vsip_splineattributes_d.h ├── vsip_splineattributes_f.h ├── vsip_svadd_d.c ├── vsip_svadd_f.c ├── vsip_svadd_i.c ├── vsip_svadd_li.c ├── vsip_svadd_si.c ├── vsip_svadd_uc.c ├── vsip_svadd_vi.c ├── vsip_svdattributes_d.h ├── vsip_svdattributes_f.h ├── vsip_svdiv_d.c ├── vsip_svdiv_f.c ├── vsip_svleq_d.c ├── vsip_svleq_f.c ├── vsip_svlge_d.c ├── vsip_svlge_f.c ├── vsip_svlgt.c ├── vsip_svlle.c ├── vsip_svllt.c ├── vsip_svlne.c ├── vsip_svmul_d.c ├── vsip_svmul_f.c ├── vsip_svmul_i.c ├── vsip_svmul_li.c ├── vsip_svmul_si.c ├── vsip_svmul_uc.c ├── vsip_svsub_d.c ├── vsip_svsub_f.c ├── vsip_svsub_i.c ├── vsip_svsub_li.c ├── vsip_svsub_si.c ├── vsip_svsub_uc.c ├── vsip_svsub_vi.c ├── vsip_talldestroy_d.c ├── vsip_talldestroy_f.c ├── vsip_talldestroy_i.c ├── vsip_talldestroy_li.c ├── vsip_talldestroy_si.c ├── vsip_talldestroy_uc.c ├── vsip_tbind_d.c ├── vsip_tbind_f.c ├── vsip_tbind_i.c ├── vsip_tbind_li.c ├── vsip_tbind_si.c ├── vsip_tbind_uc.c ├── vsip_tcloneview_d.c ├── vsip_tcloneview_f.c ├── vsip_tcloneview_i.c ├── vsip_tcloneview_li.c ├── vsip_tcloneview_si.c ├── vsip_tcloneview_uc.c ├── vsip_tcreate_d.c ├── vsip_tcreate_f.c ├── vsip_tcreate_i.c ├── vsip_tcreate_li.c ├── vsip_tcreate_si.c ├── vsip_tcreate_uc.c ├── vsip_tdestroy_d.c ├── vsip_tdestroy_f.c ├── vsip_tdestroy_i.c ├── vsip_tdestroy_li.c ├── vsip_tdestroy_si.c ├── vsip_tdestroy_uc.c ├── vsip_tget_d.c ├── vsip_tget_f.c ├── vsip_tget_i.c ├── vsip_tget_li.c ├── vsip_tget_si.c ├── vsip_tget_uc.c ├── vsip_tgetattrib_d.c ├── vsip_tgetattrib_f.c ├── vsip_tgetattrib_i.c ├── vsip_tgetattrib_li.c ├── vsip_tgetattrib_si.c ├── vsip_tgetattrib_uc.c ├── vsip_tgetblock_d.c ├── vsip_tgetblock_f.c ├── vsip_tgetblock_i.c ├── vsip_tgetblock_li.c ├── vsip_tgetblock_si.c ├── vsip_tgetblock_uc.c ├── vsip_tgetoffset_d.c ├── vsip_tgetoffset_f.c ├── vsip_tgetoffset_i.c ├── vsip_tgetoffset_li.c ├── vsip_tgetoffset_si.c ├── vsip_tgetoffset_uc.c ├── vsip_tgetxlength_d.c ├── vsip_tgetxlength_f.c ├── vsip_tgetxlength_i.c ├── vsip_tgetxlength_li.c ├── vsip_tgetxlength_si.c ├── vsip_tgetxlength_uc.c ├── vsip_tgetxstride_d.c ├── vsip_tgetxstride_f.c ├── vsip_tgetxstride_i.c ├── vsip_tgetxstride_li.c ├── vsip_tgetxstride_si.c ├── vsip_tgetxstride_uc.c ├── vsip_tgetylength_d.c ├── vsip_tgetylength_f.c ├── vsip_tgetylength_i.c ├── vsip_tgetylength_li.c ├── vsip_tgetylength_si.c ├── vsip_tgetylength_uc.c ├── vsip_tgetystride_d.c ├── vsip_tgetystride_f.c ├── vsip_tgetystride_i.c ├── vsip_tgetystride_li.c ├── vsip_tgetystride_si.c ├── vsip_tgetystride_uc.c ├── vsip_tgetzlength_d.c ├── vsip_tgetzlength_f.c ├── vsip_tgetzlength_i.c ├── vsip_tgetzlength_li.c ├── vsip_tgetzlength_si.c ├── vsip_tgetzlength_uc.c ├── vsip_tgetzstride_d.c ├── vsip_tgetzstride_f.c ├── vsip_tgetzstride_i.c ├── vsip_tgetzstride_li.c ├── vsip_tgetzstride_si.c ├── vsip_tgetzstride_uc.c ├── vsip_timagview_d.c ├── vsip_timagview_f.c ├── vsip_tmatrixview_d.c ├── vsip_tmatrixview_f.c ├── vsip_tmatrixview_i.c ├── vsip_tmatrixview_li.c ├── vsip_tmatrixview_si.c ├── vsip_tmatrixview_uc.c ├── vsip_toepsol_d.c ├── vsip_toepsol_f.c ├── vsip_tput_d.c ├── vsip_tput_f.c ├── vsip_tput_i.c ├── vsip_tput_li.c ├── vsip_tput_si.c ├── vsip_tput_uc.c ├── vsip_tputattrib_d.c ├── vsip_tputattrib_f.c ├── vsip_tputattrib_i.c ├── vsip_tputattrib_li.c ├── vsip_tputattrib_si.c ├── vsip_tputattrib_uc.c ├── vsip_tputoffset_d.c ├── vsip_tputoffset_f.c ├── vsip_tputoffset_i.c ├── vsip_tputoffset_li.c ├── vsip_tputoffset_si.c ├── vsip_tputoffset_uc.c ├── vsip_tputxlength_d.c ├── vsip_tputxlength_f.c ├── vsip_tputxlength_i.c ├── vsip_tputxlength_li.c ├── vsip_tputxlength_si.c ├── vsip_tputxlength_uc.c ├── vsip_tputxstride_d.c ├── vsip_tputxstride_f.c ├── vsip_tputxstride_i.c ├── vsip_tputxstride_li.c ├── vsip_tputxstride_si.c ├── vsip_tputxstride_uc.c ├── vsip_tputylength_d.c ├── vsip_tputylength_f.c ├── vsip_tputylength_i.c ├── vsip_tputylength_li.c ├── vsip_tputylength_si.c ├── vsip_tputylength_uc.c ├── vsip_tputystride_d.c ├── vsip_tputystride_f.c ├── vsip_tputystride_i.c ├── vsip_tputystride_li.c ├── vsip_tputystride_si.c ├── vsip_tputystride_uc.c ├── vsip_tputzlength_d.c ├── vsip_tputzlength_f.c ├── vsip_tputzlength_i.c ├── vsip_tputzlength_li.c ├── vsip_tputzlength_si.c ├── vsip_tputzlength_uc.c ├── vsip_tputzstride_d.c ├── vsip_tputzstride_f.c ├── vsip_tputzstride_i.c ├── vsip_tputzstride_li.c ├── vsip_tputzstride_si.c ├── vsip_tputzstride_uc.c ├── vsip_trealview_d.c ├── vsip_trealview_f.c ├── vsip_tsubview_d.c ├── vsip_tsubview_f.c ├── vsip_tsubview_i.c ├── vsip_tsubview_li.c ├── vsip_tsubview_si.c ├── vsip_tsubview_uc.c ├── vsip_ttransview_d.c ├── vsip_ttransview_f.c ├── vsip_ttransview_i.c ├── vsip_ttransview_li.c ├── vsip_ttransview_si.c ├── vsip_ttransview_uc.c ├── vsip_tvectview_d.c ├── vsip_tvectview_f.c ├── vsip_tvectview_i.c ├── vsip_tvectview_li.c ├── vsip_tvectview_si.c ├── vsip_tvectview_uc.c ├── vsip_tviewattributes_d.h ├── vsip_tviewattributes_f.h ├── vsip_tviewattributes_i.h ├── vsip_tviewattributes_li.h ├── vsip_tviewattributes_si.h ├── vsip_tviewattributes_uc.h ├── vsip_vacos_d.c ├── vsip_vacos_f.c ├── vsip_vadd_d.c ├── vsip_vadd_f.c ├── vsip_vadd_i.c ├── vsip_vadd_li.c ├── vsip_vadd_si.c ├── vsip_vadd_uc.c ├── vsip_vadd_vi.c ├── vsip_valldestroy_bl.c ├── vsip_valldestroy_d.c ├── vsip_valldestroy_f.c ├── vsip_valldestroy_i.c ├── vsip_valldestroy_li.c ├── vsip_valldestroy_mi.c ├── vsip_valldestroy_si.c ├── vsip_valldestroy_uc.c ├── vsip_valldestroy_vi.c ├── vsip_valltrue_bl.c ├── vsip_vam_d.c ├── vsip_vam_f.c ├── vsip_vand_bl.c ├── vsip_vand_i.c ├── vsip_vand_li.c ├── vsip_vand_si.c ├── vsip_vand_uc.c ├── vsip_vanytrue_bl.c ├── vsip_varg_d.c ├── vsip_varg_f.c ├── vsip_vasin_d.c ├── vsip_vasin_f.c ├── vsip_vatan2_d.c ├── vsip_vatan2_f.c ├── vsip_vatan_d.c ├── vsip_vatan_f.c ├── vsip_vbind_bl.c ├── vsip_vbind_d.c ├── vsip_vbind_f.c ├── vsip_vbind_i.c ├── vsip_vbind_li.c ├── vsip_vbind_mi.c ├── vsip_vbind_si.c ├── vsip_vbind_uc.c ├── vsip_vbind_vi.c ├── vsip_vclip_d.c ├── vsip_vclip_f.c ├── vsip_vclip_i.c ├── vsip_vclip_li.c ├── vsip_vclip_si.c ├── vsip_vclip_uc.c ├── vsip_vcloneview_bl.c ├── vsip_vcloneview_d.c ├── vsip_vcloneview_f.c ├── vsip_vcloneview_i.c ├── vsip_vcloneview_li.c ├── vsip_vcloneview_mi.c ├── vsip_vcloneview_si.c ├── vsip_vcloneview_uc.c ├── vsip_vcloneview_vi.c ├── vsip_vcmagsq_d.c ├── vsip_vcmagsq_f.c ├── vsip_vcmaxmgsq_d.c ├── vsip_vcmaxmgsq_f.c ├── vsip_vcmaxmgsqval_d.c ├── vsip_vcmaxmgsqval_f.c ├── vsip_vcminmgsq_d.c ├── vsip_vcminmgsq_f.c ├── vsip_vcminmgsqval_d.c ├── vsip_vcminmgsqval_f.c ├── vsip_vcmplx_d.c ├── vsip_vcmplx_f.c ├── vsip_vcopy_bl_bl.c ├── vsip_vcopy_bl_d.c ├── vsip_vcopy_bl_f.c ├── vsip_vcopy_d_bl.c ├── vsip_vcopy_d_d.c ├── vsip_vcopy_d_f.c ├── vsip_vcopy_d_i.c ├── vsip_vcopy_d_li.c ├── vsip_vcopy_d_si.c ├── vsip_vcopy_d_uc.c ├── vsip_vcopy_d_vi.c ├── vsip_vcopy_f_bl.c ├── vsip_vcopy_f_d.c ├── vsip_vcopy_f_f.c ├── vsip_vcopy_f_i.c ├── vsip_vcopy_f_li.c ├── vsip_vcopy_f_si.c ├── vsip_vcopy_f_uc.c ├── vsip_vcopy_f_vi.c ├── vsip_vcopy_i_d.c ├── vsip_vcopy_i_f.c ├── vsip_vcopy_i_i.c ├── vsip_vcopy_i_li.c ├── vsip_vcopy_i_uc.c ├── vsip_vcopy_i_vi.c ├── vsip_vcopy_li_li.c ├── vsip_vcopy_mi_mi.c ├── vsip_vcopy_si_d.c ├── vsip_vcopy_si_f.c ├── vsip_vcopy_si_si.c ├── vsip_vcopy_vi_d.c ├── vsip_vcopy_vi_f.c ├── vsip_vcopy_vi_i.c ├── vsip_vcopy_vi_li.c ├── vsip_vcopy_vi_vi.c ├── vsip_vcopyfrom_user_d.c ├── vsip_vcopyfrom_user_f.c ├── vsip_vcopyfrom_user_i.c ├── vsip_vcopyfrom_user_li.c ├── vsip_vcopyfrom_user_si.c ├── vsip_vcopyfrom_user_vi.c ├── vsip_vcopyto_user_d.c ├── vsip_vcopyto_user_f.c ├── vsip_vcopyto_user_i.c ├── vsip_vcopyto_user_li.c ├── vsip_vcopyto_user_si.c ├── vsip_vcopyto_user_vi.c ├── vsip_vcos_d.c ├── vsip_vcos_f.c ├── vsip_vcosh_d.c ├── vsip_vcosh_f.c ├── vsip_vcreate_bl.c ├── vsip_vcreate_blackman_d.c ├── vsip_vcreate_blackman_f.c ├── vsip_vcreate_cheby_d.c ├── vsip_vcreate_cheby_f.c ├── vsip_vcreate_d.c ├── vsip_vcreate_f.c ├── vsip_vcreate_hanning_d.c ├── vsip_vcreate_hanning_f.c ├── vsip_vcreate_i.c ├── vsip_vcreate_kaiser_d.c ├── vsip_vcreate_kaiser_f.c ├── vsip_vcreate_li.c ├── vsip_vcreate_mi.c ├── vsip_vcreate_si.c ├── vsip_vcreate_uc.c ├── vsip_vcreate_vi.c ├── vsip_vcumsum_d.c ├── vsip_vcumsum_f.c ├── vsip_vcumsum_i.c ├── vsip_vcumsum_li.c ├── vsip_vcumsum_si.c ├── vsip_vdestroy_bl.c ├── vsip_vdestroy_d.c ├── vsip_vdestroy_f.c ├── vsip_vdestroy_i.c ├── vsip_vdestroy_li.c ├── vsip_vdestroy_mi.c ├── vsip_vdestroy_si.c ├── vsip_vdestroy_uc.c ├── vsip_vdestroy_vi.c ├── vsip_vdiv_d.c ├── vsip_vdiv_f.c ├── vsip_vdot_d.c ├── vsip_vdot_f.c ├── vsip_veuler_d.c ├── vsip_veuler_f.c ├── vsip_vexp10_d.c ├── vsip_vexp10_f.c ├── vsip_vexp_d.c ├── vsip_vexp_f.c ├── vsip_vexpoavg_d.c ├── vsip_vexpoavg_f.c ├── vsip_vfill_d.c ├── vsip_vfill_f.c ├── vsip_vfill_i.c ├── vsip_vfill_li.c ├── vsip_vfill_si.c ├── vsip_vfill_uc.c ├── vsip_vfill_vi.c ├── vsip_vfirst_d.c ├── vsip_vfirst_f.c ├── vsip_vfirst_i.c ├── vsip_vfirst_li.c ├── vsip_vfirst_mi.c ├── vsip_vfirst_vi.c ├── vsip_vfreqswap_d.c ├── vsip_vfreqswap_f.c ├── vsip_vgather_d.c ├── vsip_vgather_f.c ├── vsip_vgather_i.c ├── vsip_vgather_li.c ├── vsip_vgather_mi.c ├── vsip_vgather_si.c ├── vsip_vgather_uc.c ├── vsip_vgather_vi.c ├── vsip_vget_bl.c ├── vsip_vget_d.c ├── vsip_vget_f.c ├── vsip_vget_i.c ├── vsip_vget_li.c ├── vsip_vget_mi.c ├── vsip_vget_si.c ├── vsip_vget_uc.c ├── vsip_vget_vi.c ├── vsip_vgetattrib_bl.c ├── vsip_vgetattrib_d.c ├── vsip_vgetattrib_f.c ├── vsip_vgetattrib_i.c ├── vsip_vgetattrib_li.c ├── vsip_vgetattrib_mi.c ├── vsip_vgetattrib_si.c ├── vsip_vgetattrib_uc.c ├── vsip_vgetattrib_vi.c ├── vsip_vgetblock_bl.c ├── vsip_vgetblock_d.c ├── vsip_vgetblock_f.c ├── vsip_vgetblock_i.c ├── vsip_vgetblock_li.c ├── vsip_vgetblock_mi.c ├── vsip_vgetblock_si.c ├── vsip_vgetblock_uc.c ├── vsip_vgetblock_vi.c ├── vsip_vgetlength_bl.c ├── vsip_vgetlength_d.c ├── vsip_vgetlength_f.c ├── vsip_vgetlength_i.c ├── vsip_vgetlength_li.c ├── vsip_vgetlength_mi.c ├── vsip_vgetlength_si.c ├── vsip_vgetlength_uc.c ├── vsip_vgetlength_vi.c ├── vsip_vgetoffset_bl.c ├── vsip_vgetoffset_d.c ├── vsip_vgetoffset_f.c ├── vsip_vgetoffset_i.c ├── vsip_vgetoffset_li.c ├── vsip_vgetoffset_mi.c ├── vsip_vgetoffset_si.c ├── vsip_vgetoffset_uc.c ├── vsip_vgetoffset_vi.c ├── vsip_vgetstride_bl.c ├── vsip_vgetstride_d.c ├── vsip_vgetstride_f.c ├── vsip_vgetstride_i.c ├── vsip_vgetstride_li.c ├── vsip_vgetstride_mi.c ├── vsip_vgetstride_si.c ├── vsip_vgetstride_uc.c ├── vsip_vgetstride_vi.c ├── vsip_vhisto_d.c ├── vsip_vhisto_f.c ├── vsip_vhisto_i.c ├── vsip_vhisto_li.c ├── vsip_vhisto_si.c ├── vsip_vhypot_d.c ├── vsip_vhypot_f.c ├── vsip_vimag_d.c ├── vsip_vimag_f.c ├── vsip_vimagview_d.c ├── vsip_vimagview_f.c ├── vsip_vindexbool.c ├── vsip_vinterp_linear_d.c ├── vsip_vinterp_linear_f.c ├── vsip_vinterp_nearest_d.c ├── vsip_vinterp_nearest_f.c ├── vsip_vinterp_spline_d.c ├── vsip_vinterp_spline_f.c ├── vsip_vinvclip_d.c ├── vsip_vinvclip_f.c ├── vsip_vinvclip_i.c ├── vsip_vinvclip_li.c ├── vsip_vinvclip_si.c ├── vsip_vinvclip_uc.c ├── vsip_vkron_d.c ├── vsip_vkron_f.c ├── vsip_vleq_d.c ├── vsip_vleq_f.c ├── vsip_vleq_i.c ├── vsip_vleq_li.c ├── vsip_vleq_si.c ├── vsip_vleq_uc.c ├── vsip_vlge_d.c ├── vsip_vlge_f.c ├── vsip_vlge_i.c ├── vsip_vlge_li.c ├── vsip_vlge_si.c ├── vsip_vlge_uc.c ├── vsip_vlgt_d.c ├── vsip_vlgt_f.c ├── vsip_vlgt_i.c ├── vsip_vlgt_li.c ├── vsip_vlgt_si.c ├── vsip_vlgt_uc.c ├── vsip_vlle_d.c ├── vsip_vlle_f.c ├── vsip_vlle_i.c ├── vsip_vlle_li.c ├── vsip_vlle_si.c ├── vsip_vlle_uc.c ├── vsip_vllt_d.c ├── vsip_vllt_f.c ├── vsip_vllt_i.c ├── vsip_vllt_li.c ├── vsip_vllt_si.c ├── vsip_vllt_uc.c ├── vsip_vlne_d.c ├── vsip_vlne_f.c ├── vsip_vlne_i.c ├── vsip_vlne_li.c ├── vsip_vlne_si.c ├── vsip_vlne_uc.c ├── vsip_vlog10_d.c ├── vsip_vlog10_f.c ├── vsip_vlog_d.c ├── vsip_vlog_f.c ├── vsip_vma_d.c ├── vsip_vma_f.c ├── vsip_vmag_d.c ├── vsip_vmag_f.c ├── vsip_vmag_i.c ├── vsip_vmag_li.c ├── vsip_vmag_si.c ├── vsip_vmax_d.c ├── vsip_vmax_f.c ├── vsip_vmaxmg_d.c ├── vsip_vmaxmg_f.c ├── vsip_vmaxmgval_d.c ├── vsip_vmaxmgval_f.c ├── vsip_vmaxval_d.c ├── vsip_vmaxval_f.c ├── vsip_vmaxval_i.c ├── vsip_vmaxval_li.c ├── vsip_vmaxval_si.c ├── vsip_vmaxval_vi.c ├── vsip_vmeansqval_d.c ├── vsip_vmeansqval_f.c ├── vsip_vmeanval_d.c ├── vsip_vmeanval_f.c ├── vsip_vmin_d.c ├── vsip_vmin_f.c ├── vsip_vminmg_d.c ├── vsip_vminmg_f.c ├── vsip_vminmgval_d.c ├── vsip_vminmgval_f.c ├── vsip_vminval_d.c ├── vsip_vminval_f.c ├── vsip_vminval_i.c ├── vsip_vminval_li.c ├── vsip_vminval_si.c ├── vsip_vminval_vi.c ├── vsip_vmmul_d.c ├── vsip_vmmul_f.c ├── vsip_vmodulate_d.c ├── vsip_vmodulate_f.c ├── vsip_vmprod_d.c ├── vsip_vmprod_f.c ├── vsip_vmsa_d.c ├── vsip_vmsa_f.c ├── vsip_vmsb_d.c ├── vsip_vmsb_f.c ├── vsip_vmul_d.c ├── vsip_vmul_f.c ├── vsip_vmul_i.c ├── vsip_vmul_li.c ├── vsip_vmul_si.c ├── vsip_vmul_uc.c ├── vsip_vneg_d.c ├── vsip_vneg_f.c ├── vsip_vneg_i.c ├── vsip_vneg_li.c ├── vsip_vneg_si.c ├── vsip_vnot_bl.c ├── vsip_vnot_i.c ├── vsip_vnot_li.c ├── vsip_vnot_si.c ├── vsip_vnot_uc.c ├── vsip_vor_bl.c ├── vsip_vor_i.c ├── vsip_vor_li.c ├── vsip_vor_si.c ├── vsip_vor_uc.c ├── vsip_vouter_d.c ├── vsip_vouter_f.c ├── vsip_vpolar_d.c ├── vsip_vpolar_f.c ├── vsip_vput_bl.c ├── vsip_vput_d.c ├── vsip_vput_f.c ├── vsip_vput_i.c ├── vsip_vput_li.c ├── vsip_vput_mi.c ├── vsip_vput_si.c ├── vsip_vput_uc.c ├── vsip_vput_vi.c ├── vsip_vputattrib_bl.c ├── vsip_vputattrib_d.c ├── vsip_vputattrib_f.c ├── vsip_vputattrib_i.c ├── vsip_vputattrib_li.c ├── vsip_vputattrib_mi.c ├── vsip_vputattrib_si.c ├── vsip_vputattrib_uc.c ├── vsip_vputattrib_vi.c ├── vsip_vputlength_bl.c ├── vsip_vputlength_d.c ├── vsip_vputlength_f.c ├── vsip_vputlength_i.c ├── vsip_vputlength_li.c ├── vsip_vputlength_mi.c ├── vsip_vputlength_si.c ├── vsip_vputlength_uc.c ├── vsip_vputlength_vi.c ├── vsip_vputoffset_bl.c ├── vsip_vputoffset_d.c ├── vsip_vputoffset_f.c ├── vsip_vputoffset_i.c ├── vsip_vputoffset_li.c ├── vsip_vputoffset_mi.c ├── vsip_vputoffset_si.c ├── vsip_vputoffset_uc.c ├── vsip_vputoffset_vi.c ├── vsip_vputstride_bl.c ├── vsip_vputstride_d.c ├── vsip_vputstride_f.c ├── vsip_vputstride_i.c ├── vsip_vputstride_li.c ├── vsip_vputstride_mi.c ├── vsip_vputstride_si.c ├── vsip_vputstride_uc.c ├── vsip_vputstride_vi.c ├── vsip_vramp_d.c ├── vsip_vramp_f.c ├── vsip_vramp_i.c ├── vsip_vramp_li.c ├── vsip_vramp_si.c ├── vsip_vramp_uc.c ├── vsip_vramp_vi.c ├── vsip_vrandn_d.c ├── vsip_vrandn_f.c ├── vsip_vrandu_d.c ├── vsip_vrandu_f.c ├── vsip_vreal_d.c ├── vsip_vreal_f.c ├── vsip_vrealview_d.c ├── vsip_vrealview_f.c ├── vsip_vrecip_d.c ├── vsip_vrecip_f.c ├── vsip_vrect_d.c ├── vsip_vrect_f.c ├── vsip_vrsqrt_d.c ├── vsip_vrsqrt_f.c ├── vsip_vsam_d.c ├── vsip_vsam_f.c ├── vsip_vsbm_d.c ├── vsip_vsbm_f.c ├── vsip_vscatter_d.c ├── vsip_vscatter_f.c ├── vsip_vscatter_i.c ├── vsip_vscatter_li.c ├── vsip_vscatter_si.c ├── vsip_vscatter_uc.c ├── vsip_vsdiv_d.c ├── vsip_vsdiv_f.c ├── vsip_vsin_d.c ├── vsip_vsin_f.c ├── vsip_vsinh_d.c ├── vsip_vsinh_f.c ├── vsip_vsma_d.c ├── vsip_vsma_f.c ├── vsip_vsmsa_d.c ├── vsip_vsmsa_f.c ├── vsip_vsortip_d.c ├── vsip_vsortip_f.c ├── vsip_vsortip_i.c ├── vsip_vsortip_li.c ├── vsip_vsortip_vi.c ├── vsip_vsq_d.c ├── vsip_vsq_f.c ├── vsip_vsqrt_d.c ├── vsip_vsqrt_f.c ├── vsip_vsub_d.c ├── vsip_vsub_f.c ├── vsip_vsub_i.c ├── vsip_vsub_li.c ├── vsip_vsub_si.c ├── vsip_vsub_uc.c ├── vsip_vsubview_bl.c ├── vsip_vsubview_d.c ├── vsip_vsubview_f.c ├── vsip_vsubview_i.c ├── vsip_vsubview_li.c ├── vsip_vsubview_mi.c ├── vsip_vsubview_si.c ├── vsip_vsubview_uc.c ├── vsip_vsubview_vi.c ├── vsip_vsumsqval_d.c ├── vsip_vsumsqval_f.c ├── vsip_vsumval_bl.c ├── vsip_vsumval_d.c ├── vsip_vsumval_f.c ├── vsip_vsumval_i.c ├── vsip_vsumval_li.c ├── vsip_vsumval_si.c ├── vsip_vsumval_uc.c ├── vsip_vswap_d.c ├── vsip_vswap_f.c ├── vsip_vswap_i.c ├── vsip_vswap_li.c ├── vsip_vswap_si.c ├── vsip_vswap_uc.c ├── vsip_vtan_d.c ├── vsip_vtan_f.c ├── vsip_vtanh_d.c ├── vsip_vtanh_f.c ├── vsip_vviewattributes_bl.h ├── vsip_vviewattributes_d.h ├── vsip_vviewattributes_f.h ├── vsip_vviewattributes_i.h ├── vsip_vviewattributes_li.h ├── vsip_vviewattributes_mi.h ├── vsip_vviewattributes_si.h ├── vsip_vviewattributes_uc.h ├── vsip_vviewattributes_vi.h ├── vsip_vxor_bl.c ├── vsip_vxor_i.c ├── vsip_vxor_li.c ├── vsip_vxor_si.c ├── vsip_vxor_uc.c └── vsipprivate.h ├── c_VSIP_testing ├── VU_cmprintm_d.include ├── VU_cmprintm_f.include ├── VU_cvprintm_d.include ├── VU_cvprintm_f.include ├── VU_mprintm_d.include ├── VU_mprintm_f.include ├── VU_vprintm_d.include ├── VU_vprintm_f.include ├── VU_vprintm_i.include ├── VU_vprintm_mi.include ├── VU_vprintm_si.include ├── VU_vprintm_vi.include ├── aTest.py ├── acos_d.h ├── acos_f.h ├── arg_d.h ├── arg_f.h ├── asin_d.h ├── asin_f.h ├── atan2_d.h ├── atan2_f.h ├── atan_d.h ├── atan_f.h ├── cadd_d.h ├── cadd_f.h ├── cblock_admit_release_d.h ├── cblock_admit_release_f.h ├── ccfftip_d.h ├── ccfftip_f.h ├── ccfftmip_d.h ├── ccfftmip_f.h ├── ccfftmop_d.h ├── ccfftmop_f.h ├── ccfftop_d.h ├── ccfftop_f.h ├── ccfftop_sc_d.h ├── ccfftop_sc_f.h ├── cchol_d.h ├── cchol_f.h ├── ccovsol_d.h ├── ccovsol_f.h ├── cdiv_d.h ├── cdiv_f.h ├── ceil_d.h ├── ceil_f.h ├── cexp_d.h ├── cexp_f.h ├── cfir_N201_D2_d.h ├── cfir_N201_D2_f.h ├── cfir_N201_D3_d.h ├── cfir_N201_D3_f.h ├── cgemp_d.h ├── cgemp_f.h ├── cgems_d.h ├── cgems_f.h ├── chol_d.h ├── chol_f.h ├── cjmul_d.h ├── cjmul_f.h ├── cllsqsol_d.h ├── cllsqsol_f.h ├── clog_d.h ├── clog_f.h ├── clud_d.h ├── clud_f.h ├── cmadd_d.h ├── cmadd_f.h ├── cmag_d.h ├── cmag_f.h ├── cmagsq_d.h ├── cmagsq_f.h ├── cmcloneview_d.h ├── cmcloneview_f.h ├── cmconj_d.h ├── cmconj_f.h ├── cmcopyfrom_user_d.h ├── cmcopyfrom_user_f.h ├── cmcopyto_user_d.h ├── cmcopyto_user_f.h ├── cmdiv_d.h ├── cmdiv_f.h ├── cmexp_d.h ├── cmexp_f.h ├── cmexpoavg_d.h ├── cmexpoavg_f.h ├── cmfill_d.h ├── cmfill_f.h ├── cmfreqswap_d.h ├── cmfreqswap_f.h ├── cmgather_d.h ├── cmgather_f.h ├── cmget_put_d.h ├── cmget_put_f.h ├── cmherm_d.h ├── cmherm_f.h ├── cmjmul_d.h ├── cmjmul_f.h ├── cmkron_d.h ├── cmkron_f.h ├── cmlog_d.h ├── cmlog_f.h ├── cmmag_d.h ├── cmmag_f.h ├── cmmeansqval_d.h ├── cmmeansqval_f.h ├── cmmeanval_d.h ├── cmmeanval_f.h ├── cmmul_d.h ├── cmmul_f.h ├── cmneg_d.h ├── cmneg_f.h ├── cmplx_d.h ├── cmplx_f.h ├── cmprod3_d.h ├── cmprod3_f.h ├── cmprod4_d.h ├── cmprod4_f.h ├── cmprod_d.h ├── cmprod_f.h ├── cmprodh_d.h ├── cmprodh_f.h ├── cmprodj_d.h ├── cmprodj_f.h ├── cmprodt_d.h ├── cmprodt_f.h ├── cmrealimagview_d.h ├── cmrealimagview_f.h ├── cmrecip_d.h ├── cmrecip_f.h ├── cmrsdiv_d.h ├── cmrsdiv_f.h ├── cmscatter_d.h ├── cmscatter_f.h ├── cmsqrt_d.h ├── cmsqrt_f.h ├── cmsub_d.h ├── cmsub_f.h ├── cmsubview_d.h ├── cmsubview_f.h ├── cmswap_d.h ├── cmswap_f.h ├── cmtrans_d.h ├── cmtrans_f.h ├── cmtransview_d.h ├── cmtransview_f.h ├── cmul_d.h ├── cmul_f.h ├── cmvprod3_d.h ├── cmvprod3_f.h ├── cmvprod4_d.h ├── cmvprod4_f.h ├── cmvprod_d.h ├── cmvprod_f.h ├── cneg_d.h ├── cneg_f.h ├── conj_d.h ├── conj_f.h ├── cos_d.h ├── cos_f.h ├── cosh_d.h ├── cosh_f.h ├── covsol_d.h ├── covsol_f.h ├── crecip_d.h ├── crecip_f.h ├── crfftop_d.h ├── crfftop_f.h ├── crmdiv_d.h ├── crmdiv_f.h ├── crmsub_d.h ├── crmsub_f.h ├── crow_col_view_d.h ├── crow_col_view_f.h ├── crvdiv_d.h ├── crvdiv_f.h ├── crvsub_d.h ├── crvsub_f.h ├── csmadd_d.h ├── csmadd_f.h ├── csmdiv_d.h ├── csmdiv_f.h ├── csmmul_d.h ├── csmmul_f.h ├── csmsub_d.h ├── csmsub_f.h ├── csqrt_d.h ├── csqrt_f.h ├── csub_d.h ├── csub_f.h ├── csvadd_d.h ├── csvadd_f.h ├── csvdiv_d.h ├── csvdiv_f.h ├── csvmul_d.h ├── csvmul_f.h ├── ctcloneview_d.h ├── ctcloneview_f.h ├── ctget_put_d.h ├── ctget_put_f.h ├── ctmisc_view_d.h ├── ctmisc_view_f.h ├── ctoeplitz_d.h ├── ctoeplitz_f.h ├── ctrealimagview_d.h ├── ctrealimagview_f.h ├── ctsubview_d.h ├── ctsubview_f.h ├── cvadd_d.h ├── cvadd_f.h ├── cvam_d.h ├── cvam_f.h ├── cvcloneview_d.h ├── cvcloneview_f.h ├── cvconj_d.h ├── cvconj_f.h ├── cvcopyfrom_user_d.h ├── cvcopyfrom_user_f.h ├── cvcopyto_user_d.h ├── cvcopyto_user_f.h ├── cvdiv_d.h ├── cvdiv_f.h ├── cvdot_d.h ├── cvdot_f.h ├── cvexp_d.h ├── cvexp_f.h ├── cvexpoavg_d.h ├── cvexpoavg_f.h ├── cvfill_d.h ├── cvfill_f.h ├── cvfreqswap_d.h ├── cvfreqswap_f.h ├── cvgather_d.h ├── cvgather_f.h ├── cvget_put_d.h ├── cvget_put_f.h ├── cvjdot_d.h ├── cvjdot_f.h ├── cvjmul_d.h ├── cvjmul_f.h ├── cvkron_d.h ├── cvkron_f.h ├── cvlog_d.h ├── cvlog_f.h ├── cvmag_d.h ├── cvmag_f.h ├── cvmeansqval_d.h ├── cvmeansqval_f.h ├── cvmmul_d.h ├── cvmmul_f.h ├── cvmprod_d.h ├── cvmprod_f.h ├── cvmsa_d.h ├── cvmsa_f.h ├── cvmul_d.h ├── cvmul_f.h ├── cvneg_d.h ├── cvneg_f.h ├── cvouter_covariance_d.h ├── cvouter_covariance_f.h ├── cvouter_d.h ├── cvouter_f.h ├── cvrealimagview_d.h ├── cvrealimagview_f.h ├── cvrsdiv_d.h ├── cvrsdiv_f.h ├── cvsam_d.h ├── cvsam_f.h ├── cvscatter_d.h ├── cvscatter_f.h ├── cvsma_d.h ├── cvsma_f.h ├── cvsub_d.h ├── cvsub_f.h ├── cvsubview_d.h ├── cvsubview_f.h ├── cvswap_d.h ├── cvswap_f.h ├── exp10_d.h ├── exp10_f.h ├── exp_d.h ├── exp_f.h ├── firE_n3_N67_D2_d.h ├── firE_n3_N67_D2_f.h ├── firO_n3_N67_D3_d.h ├── firO_n3_N67_D3_f.h ├── fir_N200_D1_d.h ├── fir_N200_D1_f.h ├── fir_N201_D1_NS_d.h ├── fir_N201_D1_NS_f.h ├── fir_N201_D1_NS_sc_d.h ├── fir_N201_D1_NS_sc_f.h ├── fir_N201_D1_d.h ├── fir_N201_D1_f.h ├── fir_N201_D2_NS_d.h ├── fir_N201_D2_NS_f.h ├── fir_N201_D2_NS_sc_d.h ├── fir_N201_D2_NS_sc_f.h ├── fir_N201_D2_d.h ├── fir_N201_D2_f.h ├── fir_N201_D3_NS_d.h ├── fir_N201_D3_NS_f.h ├── fir_N201_D3_d.h ├── fir_N201_D3_f.h ├── fir_N201_D3_sc_d.h ├── fir_N201_D3_sc_f.h ├── fir_n3_N67_D1_d.h ├── fir_n3_N67_D1_f.h ├── fir_n3_N67_D2_d.h ├── fir_n3_N67_D2_f.h ├── fir_n3_N67_D3_NS_d.h ├── fir_n3_N67_D3_NS_f.h ├── fir_n3_N67_D3_d.h ├── fir_n3_N67_D3_f.h ├── floor_d.h ├── floor_f.h ├── fmod_d.h ├── fmod_f.h ├── gemp_d.h ├── gemp_f.h ├── gems_d.h ├── gems_f.h ├── gen_all.sh ├── gen_atest.sh ├── get_put_attrib_bl.h ├── get_put_attrib_d.h ├── get_put_attrib_f.h ├── get_put_attrib_i.h ├── get_put_attrib_mi.h ├── get_put_attrib_si.h ├── get_put_attrib_uc.h ├── get_put_attrib_vi.h ├── get_put_length_bl.h ├── get_put_length_d.h ├── get_put_length_f.h ├── get_put_length_i.h ├── get_put_length_mi.h ├── get_put_length_si.h ├── get_put_length_uc.h ├── get_put_length_vi.h ├── get_put_offset_bl.h ├── get_put_offset_d.h ├── get_put_offset_f.h ├── get_put_offset_i.h ├── get_put_offset_mi.h ├── get_put_offset_si.h ├── get_put_offset_uc.h ├── get_put_offset_vi.h ├── get_put_stride_bl.h ├── get_put_stride_d.h ├── get_put_stride_f.h ├── get_put_stride_i.h ├── get_put_stride_mi.h ├── get_put_stride_si.h ├── get_put_stride_uc.h ├── get_put_stride_vi.h ├── hypot_d.h ├── hypot_f.h ├── iccfftip_d.h ├── iccfftip_f.h ├── iccfftop_d.h ├── iccfftop_f.h ├── imag_d.h ├── imag_f.h ├── interpolate_linear_d.h ├── interpolate_nearest_d.h ├── interpolate_spline_d.h ├── interpolate_spline_f.h ├── llsqsol_d.h ├── llsqsol_f.h ├── log10_d.h ├── log10_f.h ├── log_d.h ├── log_f.h ├── lud_d.h ├── lud_f.h ├── macos_d.h ├── macos_f.h ├── madd_d.h ├── madd_f.h ├── mag_d.h ├── mag_f.h ├── malltrue_bl.h ├── manytrue_bl.h ├── marg_d.h ├── marg_f.h ├── masin_d.h ├── masin_f.h ├── matan2_d.h ├── matan2_f.h ├── matan_d.h ├── matan_f.h ├── matindex.h ├── max_d.h ├── max_f.h ├── mclip_d.h ├── mclip_f.h ├── mcloneview_bl.h ├── mcloneview_d.h ├── mcloneview_f.h ├── mcloneview_i.h ├── mcloneview_si.h ├── mcloneview_uc.h ├── mcmagsq_d.h ├── mcmagsq_f.h ├── mcmaxmgsq_d.h ├── mcmaxmgsq_f.h ├── mcmaxmgsqval_d.h ├── mcmaxmgsqval_f.h ├── mcminmgsq_d.h ├── mcminmgsq_f.h ├── mcminmgsqval_d.h ├── mcminmgsqval_f.h ├── mcolindex.h ├── mcopyfrom_user_d.h ├── mcopyfrom_user_f.h ├── mcopyto_user_d.h ├── mcopyto_user_f.h ├── mcos_d.h ├── mcos_f.h ├── mcosh_d.h ├── mcosh_f.h ├── mdiv_d.h ├── mdiv_f.h ├── meuler_d.h ├── meuler_f.h ├── mexp10_d.h ├── mexp10_f.h ├── mexp_d.h ├── mexp_f.h ├── mexpoavg_d.h ├── mexpoavg_f.h ├── mfill_d.h ├── mfill_f.h ├── mfreqswap_d.h ├── mfreqswap_f.h ├── mgather_d.h ├── mgather_f.h ├── mget_put_bl.h ├── mget_put_d.h ├── mget_put_f.h ├── mget_put_i.h ├── mget_put_si.h ├── mget_put_uc.h ├── mhypot_d.h ├── mhypot_f.h ├── min_d.h ├── min_f.h ├── mindexbool.h ├── minvclip_d.h ├── minvclip_f.h ├── mkron_d.h ├── mkron_f.h ├── mleq_d.h ├── mleq_f.h ├── mlge_d.h ├── mlge_f.h ├── mlgt_d.h ├── mlgt_f.h ├── mlle_d.h ├── mlle_f.h ├── mllt_d.h ├── mllt_f.h ├── mlne_d.h ├── mlne_f.h ├── mlog10_d.h ├── mlog10_f.h ├── mlog_d.h ├── mlog_f.h ├── mmag_d.h ├── mmag_f.h ├── mmax_d.h ├── mmax_f.h ├── mmaxmg_d.h ├── mmaxmg_f.h ├── mmaxmgval_d.h ├── mmaxmgval_f.h ├── mmaxval_d.h ├── mmaxval_f.h ├── mmeansqval_d.h ├── mmeansqval_f.h ├── mmeanval_d.h ├── mmeanval_f.h ├── mmin_d.h ├── mmin_f.h ├── mminmg_d.h ├── mminmg_f.h ├── mminmgval_d.h ├── mminmgval_f.h ├── mminval_d.h ├── mminval_f.h ├── mmul_d.h ├── mmul_f.h ├── mneg_d.h ├── mneg_f.h ├── mprod3_d.h ├── mprod3_f.h ├── mprod4_d.h ├── mprod4_f.h ├── mprod_d.h ├── mprod_f.h ├── mprodt_d.h ├── mprodt_f.h ├── mrecip_d.h ├── mrecip_f.h ├── mrowindex.h ├── mrsqrt_d.h ├── mrsqrt_f.h ├── mscatter_d.h ├── mscatter_f.h ├── msdiv_d.h ├── msdiv_f.h ├── msin_d.h ├── msin_f.h ├── msinh_d.h ├── msinh_f.h ├── msq_d.h ├── msq_f.h ├── msqrt_d.h ├── msqrt_f.h ├── msub_d.h ├── msub_f.h ├── msubview_bl.h ├── msubview_d.h ├── msubview_f.h ├── msubview_i.h ├── msubview_si.h ├── msubview_uc.h ├── msumsqval_d.h ├── msumsqval_f.h ├── msumval_bl.h ├── msumval_d.h ├── msumval_f.h ├── mswap_d.h ├── mswap_f.h ├── mtan_d.h ├── mtan_f.h ├── mtanh_d.h ├── mtanh_f.h ├── mtrans_d.h ├── mtrans_f.h ├── mtransview_bl.h ├── mtransview_d.h ├── mtransview_f.h ├── mtransview_i.h ├── mtransview_si.h ├── mtransview_uc.h ├── mvprod3_d.h ├── mvprod3_f.h ├── mvprod4_d.h ├── mvprod4_f.h ├── mvprod_d.h ├── mvprod_f.h ├── permute_d.h ├── permute_f.h ├── polar_d.h ├── polar_f.h ├── pow_d.h ├── pow_f.h ├── rcfftop_d.h ├── rcfftop_f.h ├── rcmadd_d.h ├── rcmadd_f.h ├── rcmdiv_d.h ├── rcmdiv_f.h ├── rcmmul_d.h ├── rcmmul_f.h ├── rcmsub_d.h ├── rcmsub_f.h ├── rcvadd_d.h ├── rcvadd_f.h ├── rcvdiv_d.h ├── rcvdiv_f.h ├── rcvmul_d.h ├── rcvmul_f.h ├── rcvsub_d.h ├── rcvsub_f.h ├── real_f.h ├── rect_d.h ├── rect_f.h ├── row_col_view_bl.h ├── row_col_view_d.h ├── row_col_view_f.h ├── row_col_view_i.h ├── row_col_view_si.h ├── row_col_view_uc.h ├── rscmadd_d.h ├── rscmadd_f.h ├── rscmdiv_d.h ├── rscmdiv_f.h ├── rscmmul_d.h ├── rscmmul_f.h ├── rscmsub_d.h ├── rscmsub_f.h ├── rscvadd_d.h ├── rscvadd_f.h ├── rscvdiv_d.h ├── rscvdiv_f.h ├── rsqrt_d.h ├── rsqrt_f.h ├── rvcmmul_d.h ├── rvcmmul_f.h ├── sin_d.h ├── sin_f.h ├── sinh_d.h ├── sinh_f.h ├── smadd_d.h ├── smadd_f.h ├── smdiv_d.h ├── smdiv_f.h ├── smmul_d.h ├── smmul_f.h ├── smsub_d.h ├── smsub_f.h ├── sort1_d.h ├── sort1_f.h ├── sort2_d.h ├── sort2_f.h ├── sort3_d.h ├── sort3_f.h ├── sort_d.h ├── sort_f.h ├── sqrt_d.h ├── sqrt_f.h ├── svadd_d.h ├── svadd_f.h ├── svd1_d.h ├── svd1_f.h ├── svd2_d.h ├── svd2_f.h ├── svd3_d.h ├── svd3_f.h ├── svd4_d.h ├── svd4_f.h ├── svd5_d.h ├── svd5_f.h ├── svd6_d.h ├── svd6_f.h ├── svd7_d.h ├── svd7_f.h ├── svd8_f.h ├── svmul_d.h ├── svmul_f.h ├── tan_d.h ├── tan_f.h ├── tanh_d.h ├── tanh_f.h ├── tcloneview_d.h ├── tcloneview_f.h ├── tcloneview_i.h ├── tcloneview_si.h ├── tcloneview_uc.h ├── testing.tmplt ├── tget_put_d.h ├── tget_put_f.h ├── tget_put_i.h ├── tget_put_si.h ├── tget_put_uc.h ├── tmisc_view_d.h ├── tmisc_view_f.h ├── tmisc_view_i.h ├── tmisc_view_si.h ├── tmisc_view_uc.h ├── toeplitz_d.h ├── toeplitz_f.h ├── tsubview_d.h ├── tsubview_f.h ├── tsubview_i.h ├── tsubview_si.h ├── tsubview_uc.h ├── vacos_d.h ├── vacos_f.h ├── vadd_d.h ├── vadd_f.h ├── valltrue_bl.h ├── vam_d.h ├── vam_f.h ├── vanytrue_bl.h ├── varg_d.h ├── varg_f.h ├── vasin_d.h ├── vasin_f.h ├── vatan2_d.h ├── vatan2_f.h ├── vatan_d.h ├── vatan_f.h ├── vclip_d.h ├── vclip_f.h ├── vcloneview_bl.h ├── vcloneview_d.h ├── vcloneview_f.h ├── vcloneview_i.h ├── vcloneview_mi.h ├── vcloneview_si.h ├── vcloneview_uc.h ├── vcloneview_vi.h ├── vcmaxmgsq_d.h ├── vcmaxmgsq_f.h ├── vcminmgsqval_d.h ├── vcminmgsqval_f.h ├── vcmplx_d.h ├── vcmplx_f.h ├── vcopyfrom_user_d.h ├── vcopyfrom_user_f.h ├── vcopyfrom_user_i.h ├── vcopyfrom_user_si.h ├── vcopyto_user_d.h ├── vcopyto_user_f.h ├── vcopyto_user_i.h ├── vcopyto_user_si.h ├── vcos_d.h ├── vcos_f.h ├── vcosh_d.h ├── vcosh_f.h ├── vdiv_d.h ├── vdiv_f.h ├── vdot_d.h ├── vdot_f.h ├── veuler_d.h ├── veuler_f.h ├── vexp_d.h ├── vexp_f.h ├── vexpoavg_d.h ├── vexpoavg_f.h ├── vfill_d.h ├── vfill_f.h ├── vfirst_d.h ├── vfirst_f.h ├── vfirst_i.h ├── vfirst_vi.h ├── vfreqswap_d.h ├── vfreqswap_f.h ├── vgather_d.h ├── vgather_f.h ├── vget_put_bl.h ├── vget_put_d.h ├── vget_put_f.h ├── vget_put_i.h ├── vget_put_mi.h ├── vget_put_si.h ├── vget_put_uc.h ├── vget_put_vi.h ├── vhisto_d.h ├── vhisto_f.h ├── vhypot_d.h ├── vhypot_f.h ├── vimag_d.h ├── vimag_f.h ├── vinvclip_d.h ├── vinvclip_f.h ├── vkron_d.h ├── vkron_f.h ├── vleq_d.h ├── vleq_f.h ├── vlge_d.h ├── vlge_f.h ├── vlgt_d.h ├── vlgt_f.h ├── vlle_d.h ├── vlle_f.h ├── vllt_d.h ├── vllt_f.h ├── vlne_d.h ├── vlne_f.h ├── vlog10_d.h ├── vlog10_f.h ├── vlog_d.h ├── vlog_f.h ├── vmag_d.h ├── vmag_f.h ├── vmax_d.h ├── vmax_f.h ├── vmaxmg_d.h ├── vmaxmg_f.h ├── vmeansqval_d.h ├── vmeansqval_f.h ├── vmin_d.h ├── vmin_f.h ├── vminmg_d.h ├── vminmg_f.h ├── vmmul_d.h ├── vmmul_f.h ├── vmodulate_d.h ├── vmodulate_f.h ├── vmprod_d.h ├── vmprod_f.h ├── vmsa_d.h ├── vmsa_f.h ├── vmul_d.h ├── vmul_f.h ├── vneg_d.h ├── vneg_f.h ├── vnot_bl.h ├── vouter_d.h ├── vouter_f.h ├── vpolar_d.h ├── vpolar_f.h ├── vramp_d.h ├── vramp_f.h ├── vreal_d.h ├── vreal_f.h ├── vrecip_d.h ├── vrecip_f.h ├── vrect_d.h ├── vrect_f.h ├── vsam_d.h ├── vsam_f.h ├── vscatter_d.h ├── vscatter_f.h ├── vsdiv_d.h ├── vsdiv_f.h ├── vsin_d.h ├── vsin_f.h ├── vsinh_d.h ├── vsinh_f.h ├── vsma_d.h ├── vsma_f.h ├── vsub_d.h ├── vsub_f.h ├── vsubview_bl.h ├── vsubview_d.h ├── vsubview_f.h ├── vsubview_i.h ├── vsubview_mi.h ├── vsubview_si.h ├── vsubview_uc.h ├── vsubview_vi.h ├── vsumval_bl.h ├── vsumval_d.h ├── vsumval_f.h ├── vtan_d.h ├── vtan_f.h ├── vtanh_d.h └── vtanh_f.h ├── doc ├── JVSIP_testing.pdf ├── OS_X_WithJvsip.pdf ├── README_about ├── VSIPL1p3.pdf ├── VSIPL_python_module.pdf ├── jvsipDataModel │ ├── BlockBasicsOne.png │ ├── BlockBasicsTwo.png │ ├── BlockViewRelationshipDerived.png │ ├── InterfaceBlockMemoryRelationship.png │ ├── block.tex │ ├── codeEx │ │ ├── mgetsub.py │ │ ├── strassFunc.c │ │ ├── strassFunc.cpp │ │ └── strassFunc.py │ ├── cppDataModel.tex │ ├── dataInterface.tex │ ├── dataModel.tex │ ├── dataModelIntroduction.tex │ ├── dataModelParts.tex │ ├── dataModelRecomendations.tex │ ├── domains.tex │ ├── scalar.tex │ ├── scalarModelForVSIP.tex │ ├── subNotation.tex │ ├── subPurposeApproachGoal.tex │ ├── useCasesForVSIPL.tex │ └── view.tex ├── jvsipEnvironment.pdf ├── jvsip_book │ ├── BinaryOperations.tex │ ├── BitwiseOperators.tex │ ├── BlockSupport.tex │ ├── ConvCorrFunctions.tex │ ├── ElementGenerationOperations.tex │ ├── ElementaryMath.tex │ ├── FftFunctions.tex │ ├── FilterFunctions.tex │ ├── FunctionPages.tex │ ├── InitSupport.tex │ ├── JvsipPrecisions.tex │ ├── LogicalOperations.tex │ ├── ManipulationOperations.tex │ ├── MatrixOperations.tex │ ├── MatrixSupport.tex │ ├── MiscSigProcFunctions.tex │ ├── OverDeterminedSolvers.tex │ ├── SelectionOperations.tex │ ├── SingularValueDecompostion.tex │ ├── SpecialSolvers.tex │ ├── SquareSolvers.tex │ ├── SymmetricPositiveDefinitSolvers.tex │ ├── TensorSupport.tex │ ├── TernaryOperations.tex │ ├── UnaryOperations.tex │ ├── VSIP.bbprojectd │ │ ├── Scratchpad.txt │ │ ├── Unix Worksheet.worksheet │ │ ├── judd.bbprojectsettings │ │ └── project.bbprojectdata │ ├── VSIP1p3Addendum.tex │ ├── VSIP1p3Chapters.tex │ ├── VSIP1p3ElementwiseFunctions.tex │ ├── VSIP1p3LinearAlgebraFunctions.tex │ ├── VSIP1p3RandomNumberGeneration.tex │ ├── VSIP1p3ScalarFunctions.tex │ ├── VSIP1p3SignalProcessingFunctions.tex │ ├── VSIP1p3SummaryOfTypes.tex │ ├── VSIP1p3SupportFunctions.tex │ ├── VectorSupport.tex │ ├── ViewSupport.tex │ ├── WindowFunctions.tex │ ├── acosFunc.tex │ ├── addFunc.tex │ ├── alldestroyFunc.tex │ ├── alltrueFunc.tex │ ├── amFunc.tex │ ├── andFunc.tex │ ├── anytrueFunc.tex │ ├── argFunc.tex │ ├── asinFunc.tex │ ├── atan2Func.tex │ ├── atanFunc.tex │ ├── blockFunc.tex │ ├── c1.tex │ ├── c2.tex │ ├── c3.tex │ ├── c4.tex │ ├── c5.tex │ ├── c6.tex │ ├── c7.tex │ ├── c_examples │ │ ├── README │ │ ├── example1.c │ │ └── example18.c │ ├── ceilFunc.tex │ ├── choldFunc.tex │ ├── clipFunc.tex │ ├── cmaxmgsqFunc.tex │ ├── cmaxmgsqvalFunc.tex │ ├── cminmgsqFunc.tex │ ├── cminmgsqvalFunc.tex │ ├── cmplxFunc.tex │ ├── conjFunc.tex │ ├── convFunc.tex │ ├── copyFunc.tex │ ├── copyfrom_userFunc.tex │ ├── copyto_userFunc.tex │ ├── corrFunc.tex │ ├── cosFunc.tex │ ├── coshFunc.tex │ ├── covsolFunc.tex │ ├── cumsumFunc.tex │ ├── destroyFunc.tex │ ├── divFunc.tex │ ├── dotFunc.tex │ ├── eulerFunc.tex │ ├── exp10Func.tex │ ├── expFunc.tex │ ├── expoavgFunc.tex │ ├── fftFunc.tex │ ├── fillFunc.tex │ ├── finalizeFunc.tex │ ├── firFunc.tex │ ├── firstFunc.tex │ ├── floorFunc.tex │ ├── freqswapFunc.tex │ ├── gatherFunc.tex │ ├── gempFunc.tex │ ├── gemsFunc.tex │ ├── hermFunc.tex │ ├── histoFunc.tex │ ├── hypotFunc.tex │ ├── imagFunc.tex │ ├── indexboolFunc.tex │ ├── initFunc.tex │ ├── invclipFunc.tex │ ├── jdotFunc.tex │ ├── jmulFunc.tex │ ├── jvsipBook.bbprojectd │ │ ├── Scratchpad.txt │ │ ├── Unix Worksheet.worksheet │ │ ├── judd.bbprojectsettings │ │ └── project.bbprojectdata │ ├── jvsipFuncPageTest.tex │ ├── jvsipFuncs.bbprojectd │ │ ├── Scratchpad.txt │ │ ├── Unix Worksheet.worksheet │ │ ├── judd.bbprojectsettings │ │ └── project.bbprojectdata │ ├── jvsip_book.tex │ ├── kronFunc.tex │ ├── leqFunc.tex │ ├── lgeFunc.tex │ ├── lgtFunc.tex │ ├── linearFunc.tex │ ├── lleFunc.tex │ ├── llsqsolFunc.tex │ ├── lltFunc.tex │ ├── lneFunc.tex │ ├── log10Func.tex │ ├── logFunc.tex │ ├── ludFunc.tex │ ├── maFunc.tex │ ├── magFunc.tex │ ├── magsqFunc.tex │ ├── max.tex │ ├── maxFunc.tex │ ├── maxmgFunc.tex │ ├── maxmgvalFunc.tex │ ├── maxvalFunc.tex │ ├── meansqvalFunc.tex │ ├── meanvalFunc.tex │ ├── minFunc.tex │ ├── minmgFunc.tex │ ├── minmgvalFunc.tex │ ├── minvalFunc.tex │ ├── modulateFunc.tex │ ├── msbFunc.tex │ ├── mulFunc.tex │ ├── nearestFunc.tex │ ├── negFunc.tex │ ├── notFunc.tex │ ├── orFunc.tex │ ├── outerFunc.tex │ ├── permuteFunc.tex │ ├── polarFunc.tex │ ├── preface.tex │ ├── prod3Func.tex │ ├── prod4Func.tex │ ├── prodFunc.tex │ ├── prodhFunc.tex │ ├── prodjFunc.tex │ ├── prodtFunc.tex │ ├── pyJvsip_examples │ │ ├── README │ │ ├── clipEx.ipynb │ │ ├── eXclip.pdf │ │ ├── eXclip.py │ │ ├── eXinvclip.pdf │ │ ├── eXinvclip.py │ │ ├── eXspline.ipynb │ │ ├── eXspline.pdf │ │ ├── eXspline.py │ │ ├── example1.py │ │ ├── example1a.py │ │ └── example1b.py │ ├── qrdFunc.tex │ ├── rampFunc.tex │ ├── randFunc.tex │ ├── realFunc.tex │ ├── recipFunc.tex │ ├── rectFunc.tex │ ├── roundFunc.tex │ ├── rsqrtFunc.tex │ ├── sbmFunc.tex │ ├── scatterFunc.tex │ ├── sinFunc.tex │ ├── sinhFunc.tex │ ├── sortipFunc.tex │ ├── splineFunc.tex │ ├── sqFunc.tex │ ├── sqrtFunc.tex │ ├── subFunc.tex │ ├── submatrixFunc.tex │ ├── sumsqvalFunc.tex │ ├── sumvalFunc.tex │ ├── svdFunc.tex │ ├── swapFunc.tex │ ├── tanFunc.tex │ ├── tanhFunc.tex │ ├── titlePage.tex │ ├── toepsolFunc.tex │ ├── transFunc.tex │ ├── userblockFunc.tex │ ├── vmmulFunc.tex │ ├── vsipNamingConvention.tex │ ├── windowFunc.tex │ └── xorFunc.tex ├── jvsip_howToMake.pdf ├── notebooks │ ├── BasicCreationInfoBlocksAndViews.ipynb │ ├── InfoBlockAndView_NB.ipynb │ ├── InfoBlockAndView_NB.py │ ├── InfoElementary_NB.ipynb │ ├── InfoElementary_NB.py │ ├── Info_FFT_ExNb.ipynb │ ├── Info_FirExNb.ipynb │ ├── Info_FloorCeilRoundNB.ipynb │ ├── Info_InterpolateNB.ipynb │ ├── Info_LU_decompositionNB.ipynb │ ├── Info_LU_decompositionNB.py │ ├── Info_QR_decompositionNB.ipynb │ ├── Info_QR_decompositionNB.py │ ├── Info_Rand_dataGeneratorNB.ipynb │ ├── Info_SVD_decompositionNB.ipynb │ ├── Info_WindowsNB.ipynb │ ├── Info_gemp_NB.ipynb │ ├── LU Decompostion.pdf │ ├── LinearAlgebra.ipynb │ ├── MatrixProduct.ipynb │ ├── README │ ├── Untitled.ipynb │ ├── Untitled1.ipynb │ ├── eXspline.pdf │ ├── faffine.py │ ├── firebp.py │ ├── firfbe.py │ ├── frefine.py │ ├── info_Permute.ipynb │ ├── info_Sort.ipynb │ ├── localmax.py │ └── matlabToPyJvsipNB.ipynb ├── pyJvsipUsersManual.pdf └── tasp_core_plus_book.pdf ├── examples ├── example1.c ├── example1.py └── komegaExamples │ ├── README │ ├── kw_c │ ├── .DS_Store │ ├── Makefile │ ├── README │ ├── beamformer_ex.c │ ├── kw.c │ ├── kw.h │ ├── param.c │ ├── param.h │ ├── param_file │ ├── plt.m │ ├── ts.c │ └── ts.h │ ├── kw_o │ ├── Makefile │ ├── README │ ├── beamformer_ex │ ├── beamformer_ex.m │ ├── gramOut │ ├── kw.h │ ├── kw.m │ ├── param.m │ ├── param_file │ ├── plt.m │ ├── ts.h │ └── ts.m │ └── kw_py │ ├── README │ ├── beamformer.py │ ├── bf_ex.py │ ├── kw.py │ ├── kw_pyJvsip.ipynb │ ├── param.py │ ├── param_file │ └── ts.py ├── java └── README └── python ├── README.md ├── ctypeDemo ├── BasicExample.ipynb ├── README ├── pyCtypesJvsip.py └── simpleEx.py ├── pyJvsip ├── README.md ├── pyJvsip.py ├── setup.py ├── vsipAddendum.py ├── vsipElementwiseBandB.py ├── vsipElementwiseBinary.py ├── vsipElementwiseCopy.py ├── vsipElementwiseElementary.py ├── vsipElementwiseLogical.py ├── vsipElementwiseManipulation.py ├── vsipElementwiseSelection.py ├── vsipElementwiseTernary.py ├── vsipElementwiseUnary.py ├── vsipLinearAlgebra.py └── vsipSignalProcessing.py ├── pyJvsip_example ├── example1 │ └── example1.py ├── example11 │ ├── README │ ├── example11.ipynb │ └── example11.py ├── example12 │ ├── example12.ipynb │ └── example12.py ├── example15 │ ├── ex15.ipynb │ └── example15.py ├── example16 │ ├── Example16.ipynb │ └── example16.py ├── example17 │ ├── example17.ipynb │ └── example17.py ├── example20 │ ├── Ex20.ipynb │ └── ex20.py └── example21 │ ├── ex21.ipynb │ ├── exUtils.py │ └── example21.py ├── python_examples ├── LinearAlgebraSimple │ ├── SVD_exploration.py │ ├── determinantEx.py │ └── luEx.py ├── fftDev │ ├── dftBB_NB.ipynb │ ├── dftCoef.py │ ├── dftCoefNB.ipynb │ └── nFactorNP.ipynb ├── givens_R │ ├── README │ ├── VI_cgivens.c │ ├── VI_givens_d.py │ └── testGivens.py ├── matrixDecomposition │ ├── GivensNB.ipynb │ ├── HouseholderNB.ipynb │ ├── README │ ├── SVD_DevelopmentNB.ipynb │ ├── SVD_exploration.ipynb │ ├── biDiagPhaseToZeroNB.ipynb │ ├── decompositionIntroduction.py │ ├── decompositionIntroductionNB.ipynb │ ├── decompositionUtilities.py │ ├── decompositionUtilitiesTestingNB.ipynb │ ├── miscSVDroutineNB.ipynb │ ├── svdBidiag.py │ ├── svdBidiagNB.ipynb │ ├── svdIterationNB.ipynb │ ├── svdSortNB.ipynb │ └── svd_test.py └── svdDev │ ├── README │ ├── svdBidiag.py │ ├── svdIteration.py │ ├── svdNB.ipynb │ ├── svdSort.py │ ├── svd_f │ ├── README │ ├── svd_f.c │ ├── svd_f.h │ ├── svd_f.py │ ├── test_svd_f.c │ └── test_svd_f.ipynb │ ├── svdprod_testing │ ├── README │ ├── cprodUtesting_dNB.ipynb │ ├── cprodUtesting_fNB.ipynb │ ├── cprodVtesting_dNB.ipynb │ ├── cprodVtesting_fNB.ipynb │ ├── prodUtesting_dNB.ipynb │ ├── prodUtesting_fNB.ipynb │ ├── prodVtesting_dNB.ipynb │ └── prodVtesting_fNB.ipynb │ └── test_svd_c │ ├── README │ ├── csvd_test_d.c │ ├── csvd_test_f.c │ ├── make_clean.sh │ ├── make_test.sh │ ├── svd.c │ ├── svd.h │ ├── svd_test_d.c │ └── svd_test_f.c ├── python_testing ├── README ├── chold.py ├── lud.py └── test_create_destroy.py ├── vsip ├── README.md ├── c_numpy_src │ ├── README │ ├── README.pdf │ ├── jvsipNumpy.py │ ├── jvsipNumpyUtils.i │ ├── numpyArrayCopies.c │ ├── numpyArrayCopies.h │ └── setup.py ├── c_src │ ├── README │ ├── copyToList.c │ ├── indexptr.c │ ├── jvsip.h │ ├── jvsip_mprod.c │ ├── pyVsip.h │ ├── py_jdot.c │ ├── vsipScalarFunctions.c │ └── vsipScalarFunctions.h ├── setup.py ├── setupOld.py └── vsip.i ├── vsipUser ├── setup.py └── vsipUser.py └── vsiputils ├── setup.py └── vsiputils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/.gitignore -------------------------------------------------------------------------------- /AppleXcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/AppleXcode/README -------------------------------------------------------------------------------- /AppleXcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/AppleXcode/README.md -------------------------------------------------------------------------------- /AppleXcode/README_about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/AppleXcode/README_about -------------------------------------------------------------------------------- /AppleXcode/jvsipF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/AppleXcode/jvsipF/README -------------------------------------------------------------------------------- /Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/Copyright -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/README.md -------------------------------------------------------------------------------- /README_make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/README_make -------------------------------------------------------------------------------- /c++/cppJvsip/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/Block.cpp -------------------------------------------------------------------------------- /c++/cppJvsip/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/Block.h -------------------------------------------------------------------------------- /c++/cppJvsip/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/View.h -------------------------------------------------------------------------------- /c++/cppJvsip/elementary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/elementary.h -------------------------------------------------------------------------------- /c++/cppJvsip/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/gen.h -------------------------------------------------------------------------------- /c++/cppJvsip/jvsiph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/jvsiph.h -------------------------------------------------------------------------------- /c++/cppJvsip/scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/scalar.cpp -------------------------------------------------------------------------------- /c++/cppJvsip/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/scalar.h -------------------------------------------------------------------------------- /c++/cppJvsip/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c++/cppJvsip/support.h -------------------------------------------------------------------------------- /c_VSIP_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/Makefile -------------------------------------------------------------------------------- /c_VSIP_src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/README -------------------------------------------------------------------------------- /c_VSIP_src/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_ccfftip_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_ccfftip_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_ccfftip_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_ccfftip_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cmfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cmfill_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cmfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cmfill_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_csvmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_csvmul_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_csvmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_csvmul_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvadd_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvadd_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvfill_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvfill_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvget_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvget_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvget_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvget_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvsqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvsqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_cvsqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_cvsqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_ffttype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_ffttype.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_fftw_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_fftw_obj.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_jofk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_jofk.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_mcopy_d_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_mcopy_d_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_mcopy_f_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_mcopy_f_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_mfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_mfill_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_mfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_mfill_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_nuV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_nuV.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_rcvadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_rcvadd_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_rcvadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_rcvadd_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_rcvmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_rcvmul_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_rcvmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_rcvmul_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_rscvmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_rscvmul_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_rscvmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_rscvmul_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_svmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_svmul_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_svmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_svmul_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_svsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_svsub_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_svsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_svsub_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vacos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vacos_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vacos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vacos_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vclip_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vclip_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vclip_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vclip_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcopy_d_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcopy_d_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcopy_f_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcopy_f_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcos_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcos_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcreate_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcreate_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcreate_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcreate_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcumsum_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcumsum_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcumsum_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcumsum_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vcumsum_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vcumsum_i.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_veuler_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_veuler_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_veuler_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_veuler_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vfill_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vfill_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vfill_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vfill_i.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vfill_li.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vfill_li.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vfill_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vfill_si.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vget_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vget_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vget_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vget_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vmul_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vmul_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vput_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vput_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vput_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vput_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vramp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vramp_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vramp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vramp_f.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vramp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vramp_i.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vramp_li.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vramp_li.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vsin_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vsin_d.h -------------------------------------------------------------------------------- /c_VSIP_src/VI_vsin_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/VI_vsin_f.h -------------------------------------------------------------------------------- /c_VSIP_src/jvsipF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/jvsipF.h -------------------------------------------------------------------------------- /c_VSIP_src/jvsip_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/jvsip_ceil.c -------------------------------------------------------------------------------- /c_VSIP_src/jvsip_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/jvsip_floor.c -------------------------------------------------------------------------------- /c_VSIP_src/jvsip_round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/jvsip_round.c -------------------------------------------------------------------------------- /c_VSIP_src/jvsip_svd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/jvsip_svd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/jvsip_svd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/jvsip_svd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip.h -------------------------------------------------------------------------------- /c_VSIP_src/vsip_arg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_arg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_arg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_arg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cexp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cexp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cexp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cexp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cgemp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cgemp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cgemp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cgemp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cgems_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cgems_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cgems_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cgems_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_chold_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_chold_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_chold_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_chold_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cjmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cjmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cjmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cjmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_clog_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_clog_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_clog_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_clog_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_clud_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_clud_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_clud_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_clud_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmexp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmexp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmexp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmexp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmget_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmget_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmget_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmget_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmlog_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmlog_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmlog_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmlog_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmmag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmmag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmmag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmmag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmneg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmneg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmneg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmneg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmplx_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmplx_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmplx_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmplx_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmput_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmput_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmput_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmput_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cneg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cneg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cneg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cneg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_conj_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_conj_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_conj_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_conj_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cqrd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cqrd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cqrd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cqrd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_crdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_crdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_crdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_crdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_crsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_crsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_crsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_crsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_csqrt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_csqrt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_csqrt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_csqrt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_csub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_csub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_csub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_csub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_ctget_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_ctget_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_ctget_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_ctget_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_ctput_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_ctput_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_ctput_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_ctput_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvam_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvam_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvam_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvam_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvdot_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvdot_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvdot_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvdot_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvexp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvexp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvexp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvexp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvget_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvget_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvget_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvget_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvlog_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvlog_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvlog_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvlog_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvma_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvma_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvma_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvma_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmsa_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmsa_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmsa_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmsa_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmsb_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmsb_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmsb_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmsb_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvneg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvneg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvneg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvneg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvput_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvput_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvput_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvput_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsam_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsam_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsam_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsam_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsbm_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsbm_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsbm_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsbm_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsma_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsma_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsma_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsma_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_cvsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_cvsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_gemp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_gemp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_gemp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_gemp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_gems_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_gems_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_gems_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_gems_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_init.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_lud_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_lud_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_lud_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_lud_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_lusol_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_lusol_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_lusol_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_lusol_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_macos_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_macos_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_macos_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_macos_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_madd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_madd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_madd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_madd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_madd_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_madd_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_madd_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_madd_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_madd_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_madd_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mand_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mand_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mand_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mand_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mand_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mand_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_marg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_marg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_marg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_marg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_masin_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_masin_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_masin_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_masin_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_matan_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_matan_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_matan_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_matan_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mbind_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mbind_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mbind_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mbind_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mbind_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mbind_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mclip_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mclip_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mclip_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mclip_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mclip_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mclip_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mcos_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mcos_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mcos_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mcos_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mcosh_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mcosh_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mcosh_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mcosh_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mexp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mexp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mexp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mexp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mfill_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mfill_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mfill_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mfill_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mfill_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mfill_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mget_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mget_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mimag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mimag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mimag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mimag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mkron_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mkron_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mkron_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mkron_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mleq_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mleq_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mleq_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mleq_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlge_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlge_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlge_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlge_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlgt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlgt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlgt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlgt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlle_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlle_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlle_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlle_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mllt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mllt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mllt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mllt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlne_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlne_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlne_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlne_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlog_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlog_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mlog_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mlog_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmax_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmax_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmax_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmax_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmin_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmin_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmin_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmin_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mneg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mneg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mneg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mneg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mprod_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mprod_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mprod_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mprod_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mput_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mput_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mreal_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mreal_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mreal_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mreal_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mrect_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mrect_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mrect_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mrect_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msin_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msin_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msin_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msin_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msinh_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msinh_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msinh_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msinh_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msq_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msq_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msq_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msq_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msqrt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msqrt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msqrt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msqrt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msub_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msub_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msub_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msub_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_msub_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_msub_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mswap_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mswap_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mswap_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mswap_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mtan_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mtan_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mtan_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mtan_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mtanh_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mtanh_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_mtanh_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_mtanh_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_polar_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_polar_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_polar_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_polar_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_qrd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_qrd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_qrd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_qrd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_qrsol_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_qrsol_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_qrsol_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_qrsol_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_randn_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_randn_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_randn_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_randn_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_randu_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_randu_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_randu_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_randu_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rcadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rcadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rcadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rcadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rcmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rcmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rcmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rcmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rcsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rcsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rcsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rcsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rect_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rect_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_rect_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_rect_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_scalars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_scalars.h -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_smsub_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_smsub_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svadd_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svadd_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svleq_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svleq_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svleq_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svleq_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svlge_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svlge_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svlge_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svlge_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svlgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svlgt.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svlle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svlle.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svllt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svllt.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svlne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svlne.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svmul_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svmul_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_svsub_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_svsub_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tbind_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tbind_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tbind_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tbind_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tbind_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tbind_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tget_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tget_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tget_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tget_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tget_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tget_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tget_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tget_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tget_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tget_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tget_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tget_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tput_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tput_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tput_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tput_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tput_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tput_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tput_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tput_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tput_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tput_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_tput_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_tput_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vacos_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vacos_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vacos_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vacos_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vadd_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vadd_vi.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vam_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vam_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vam_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vam_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vand_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vand_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vand_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vand_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vand_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vand_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vand_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vand_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vand_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vand_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_varg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_varg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_varg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_varg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vasin_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vasin_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vasin_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vasin_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vatan_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vatan_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vatan_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vatan_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vbind_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vbind_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vbind_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vbind_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vbind_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vbind_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vclip_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vclip_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vclip_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vclip_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vclip_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vclip_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vcos_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vcos_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vcos_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vcos_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vcosh_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vcosh_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vcosh_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vcosh_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vdot_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vdot_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vdot_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vdot_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vexp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vexp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vexp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vexp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vfill_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vfill_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vfill_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vfill_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vfill_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vfill_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_mi.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vget_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vget_vi.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vimag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vimag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vimag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vimag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vkron_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vkron_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vkron_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vkron_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vleq_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vleq_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vleq_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vleq_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vleq_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vleq_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vleq_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vleq_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vleq_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vleq_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vleq_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vleq_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlge_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlge_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlge_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlge_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlge_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlge_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlge_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlge_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlge_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlge_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlge_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlge_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlgt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlgt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlgt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlgt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlgt_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlgt_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlgt_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlgt_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlgt_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlgt_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlgt_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlgt_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlle_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlle_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlle_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlle_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlle_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlle_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlle_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlle_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlle_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlle_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlle_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlle_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vllt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vllt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vllt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vllt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vllt_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vllt_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vllt_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vllt_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vllt_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vllt_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vllt_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vllt_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlne_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlne_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlne_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlne_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlne_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlne_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlne_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlne_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlne_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlne_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlne_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlne_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlog_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlog_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vlog_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vlog_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vma_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vma_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vma_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vma_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmag_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmag_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmag_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmag_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmag_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmag_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmag_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmag_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmag_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmag_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmax_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmax_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmax_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmax_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmin_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmin_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmin_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmin_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmsa_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmsa_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmsa_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmsa_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmsb_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmsb_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmsb_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmsb_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmul_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmul_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmul_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmul_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmul_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmul_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmul_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmul_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmul_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vmul_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vmul_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vneg_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vneg_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vneg_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vneg_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vneg_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vneg_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vneg_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vneg_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vneg_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vneg_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vnot_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vnot_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vnot_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vnot_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vnot_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vnot_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vnot_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vnot_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vnot_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vnot_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vor_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vor_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vor_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vor_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vor_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vor_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vor_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vor_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vor_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vor_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_mi.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vput_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vput_vi.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vramp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vramp_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vramp_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vramp_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vramp_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vramp_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vreal_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vreal_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vreal_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vreal_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vrect_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vrect_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vrect_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vrect_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsam_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsam_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsam_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsam_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsbm_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsbm_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsbm_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsbm_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsdiv_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsdiv_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsdiv_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsdiv_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsin_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsin_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsin_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsin_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsinh_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsinh_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsinh_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsinh_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsma_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsma_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsma_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsma_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsmsa_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsmsa_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsmsa_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsmsa_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsq_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsq_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsq_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsq_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsqrt_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsqrt_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsqrt_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsqrt_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsub_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsub_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsub_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsub_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsub_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsub_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsub_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsub_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsub_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vsub_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vsub_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vswap_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vswap_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vswap_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vswap_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vswap_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vswap_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vtan_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vtan_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vtan_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vtan_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vtanh_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vtanh_d.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vtanh_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vtanh_f.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vxor_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vxor_bl.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vxor_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vxor_i.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vxor_li.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vxor_li.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vxor_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vxor_si.c -------------------------------------------------------------------------------- /c_VSIP_src/vsip_vxor_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsip_vxor_uc.c -------------------------------------------------------------------------------- /c_VSIP_src/vsipprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_src/vsipprivate.h -------------------------------------------------------------------------------- /c_VSIP_testing/aTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/aTest.py -------------------------------------------------------------------------------- /c_VSIP_testing/acos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/acos_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/acos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/acos_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/arg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/arg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/arg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/arg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/asin_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/asin_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/asin_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/asin_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/atan2_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/atan2_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/atan2_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/atan2_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/atan_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/atan_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/atan_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/atan_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cchol_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cchol_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cchol_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cchol_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/ceil_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/ceil_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/ceil_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/ceil_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cexp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cexp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cexp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cexp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cgemp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cgemp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cgemp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cgemp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cgems_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cgems_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cgems_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cgems_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/chol_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/chol_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/chol_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/chol_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cjmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cjmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cjmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cjmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/clog_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/clog_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/clog_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/clog_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/clud_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/clud_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/clud_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/clud_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmag_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmag_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmag_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmag_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmagsq_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmagsq_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmagsq_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmagsq_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmconj_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmconj_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmconj_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmconj_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmexp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmexp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmexp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmexp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmfill_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmfill_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmherm_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmherm_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmherm_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmherm_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmjmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmjmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmjmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmjmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmkron_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmkron_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmkron_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmkron_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmlog_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmlog_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmlog_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmlog_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmmag_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmmag_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmmag_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmmag_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmneg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmneg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmneg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmneg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmplx_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmplx_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmplx_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmplx_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmprod_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmprod_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmprod_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmprod_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmsqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmsqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmsqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmsqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmswap_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmswap_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmswap_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmswap_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cneg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cneg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cneg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cneg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/conj_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/conj_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/conj_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/conj_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cos_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cos_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cosh_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cosh_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cosh_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cosh_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/covsol_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/covsol_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/covsol_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/covsol_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/crecip_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crecip_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/crecip_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crecip_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/crmdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crmdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/crmdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crmdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/crmsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crmsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/crmsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crmsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/crvdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crvdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/crvdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crvdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/crvsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crvsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/crvsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/crvsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csmsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csmsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csvadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csvadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csvadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csvadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csvdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csvdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csvdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csvdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/csvmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csvmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/csvmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/csvmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvam_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvam_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvam_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvam_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvconj_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvconj_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvconj_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvconj_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvdot_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvdot_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvdot_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvdot_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvexp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvexp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvexp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvexp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvfill_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvfill_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvjdot_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvjdot_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvjdot_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvjdot_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvjmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvjmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvjmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvjmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvkron_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvkron_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvkron_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvkron_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvlog_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvlog_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvlog_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvlog_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmag_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmag_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmag_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmag_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmsa_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmsa_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmsa_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmsa_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvneg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvneg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvneg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvneg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvsam_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvsam_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvsam_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvsam_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvsma_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvsma_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvsma_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvsma_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvswap_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvswap_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/cvswap_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/cvswap_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/exp10_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/exp10_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/exp10_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/exp10_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/exp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/exp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/exp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/exp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/floor_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/floor_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/floor_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/floor_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/fmod_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/fmod_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/fmod_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/fmod_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/gemp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/gemp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/gemp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/gemp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/gems_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/gems_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/gems_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/gems_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/gen_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/gen_all.sh -------------------------------------------------------------------------------- /c_VSIP_testing/hypot_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/hypot_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/hypot_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/hypot_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/imag_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/imag_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/imag_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/imag_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/log10_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/log10_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/log10_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/log10_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/log_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/log_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/log_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/log_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/lud_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/lud_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/lud_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/lud_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/macos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/macos_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/macos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/macos_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/madd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/madd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/madd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/madd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mag_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mag_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mag_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mag_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/marg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/marg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/marg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/marg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/masin_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/masin_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/masin_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/masin_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/matan2_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/matan2_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/matan2_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/matan2_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/matan_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/matan_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/matan_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/matan_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/matindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/matindex.h -------------------------------------------------------------------------------- /c_VSIP_testing/max_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/max_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/max_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/max_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mclip_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mclip_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mclip_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mclip_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mcos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mcos_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mcos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mcos_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mcosh_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mcosh_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mcosh_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mcosh_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/meuler_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/meuler_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/meuler_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/meuler_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mexp10_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mexp10_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mexp10_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mexp10_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mexp_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mexp_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mexp_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mexp_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mfill_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mfill_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mfill_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mfill_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mhypot_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mhypot_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mhypot_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mhypot_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/min_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/min_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/min_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/min_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mkron_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mkron_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mkron_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mkron_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mleq_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mleq_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mleq_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mleq_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlge_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlge_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlge_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlge_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlgt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlgt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlgt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlgt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlle_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlle_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlle_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlle_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mllt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mllt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mllt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mllt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlne_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlne_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlne_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlne_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlog10_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlog10_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlog10_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlog10_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlog_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlog_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mlog_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mlog_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmag_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmag_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmag_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmag_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmax_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmax_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmax_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmax_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmaxmg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmaxmg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmaxmg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmaxmg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmin_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmin_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmin_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmin_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mminmg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mminmg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mminmg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mminmg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mneg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mneg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mneg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mneg_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprod3_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprod3_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprod3_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprod3_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprod4_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprod4_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprod4_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprod4_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprod_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprod_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprod_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprod_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprodt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprodt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mprodt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mprodt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mrecip_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mrecip_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mrecip_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mrecip_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mrsqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mrsqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mrsqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mrsqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/msdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/msdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/msin_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msin_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/msin_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msin_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/msinh_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msinh_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/msinh_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msinh_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/msq_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msq_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/msq_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msq_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/msqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/msqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/msub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/msub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/msub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mswap_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mswap_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mswap_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mswap_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mtan_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mtan_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mtan_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mtan_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mtanh_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mtanh_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mtanh_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mtanh_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mtrans_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mtrans_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mtrans_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mtrans_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/mvprod_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mvprod_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/mvprod_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/mvprod_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/polar_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/polar_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/polar_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/polar_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/pow_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/pow_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/pow_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/pow_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcmsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcmsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rcvsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rcvsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/real_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/real_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rect_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rect_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rect_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rect_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/rsqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rsqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/rsqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/rsqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sin_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sin_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sin_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sin_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sinh_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sinh_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sinh_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sinh_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/smadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/smadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/smdiv_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smdiv_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/smdiv_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smdiv_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/smmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/smmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/smsub_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smsub_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/smsub_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/smsub_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort1_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort1_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort1_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort1_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort2_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort2_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort2_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort2_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort3_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort3_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort3_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort3_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sort_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sort_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/sqrt_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sqrt_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/sqrt_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/sqrt_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd1_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd1_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd1_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd1_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd2_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd2_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd2_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd2_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd3_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd3_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd3_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd3_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd4_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd4_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd4_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd4_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd5_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd5_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd5_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd5_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd6_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd6_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd6_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd6_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd7_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd7_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd7_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd7_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svd8_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svd8_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/svmul_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svmul_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/svmul_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/svmul_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/tan_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/tan_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/tan_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/tan_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/tanh_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/tanh_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/tanh_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/tanh_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/vacos_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/vacos_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/vacos_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/vacos_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/vadd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/vadd_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/vadd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/vadd_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/vam_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/vam_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/vam_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/vam_f.h -------------------------------------------------------------------------------- /c_VSIP_testing/varg_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/varg_d.h -------------------------------------------------------------------------------- /c_VSIP_testing/varg_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/c_VSIP_testing/varg_f.h -------------------------------------------------------------------------------- /doc/JVSIP_testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/JVSIP_testing.pdf -------------------------------------------------------------------------------- /doc/OS_X_WithJvsip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/OS_X_WithJvsip.pdf -------------------------------------------------------------------------------- /doc/README_about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/README_about -------------------------------------------------------------------------------- /doc/VSIPL1p3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/VSIPL1p3.pdf -------------------------------------------------------------------------------- /doc/jvsip_book/VSIP.bbprojectd/Scratchpad.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/jvsip_book/VSIP.bbprojectd/Unix Worksheet.worksheet: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/jvsip_book/c1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c1.tex -------------------------------------------------------------------------------- /doc/jvsip_book/c2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c2.tex -------------------------------------------------------------------------------- /doc/jvsip_book/c3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c3.tex -------------------------------------------------------------------------------- /doc/jvsip_book/c4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c4.tex -------------------------------------------------------------------------------- /doc/jvsip_book/c5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c5.tex -------------------------------------------------------------------------------- /doc/jvsip_book/c6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c6.tex -------------------------------------------------------------------------------- /doc/jvsip_book/c7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/c7.tex -------------------------------------------------------------------------------- /doc/jvsip_book/jvsipBook.bbprojectd/Scratchpad.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/jvsip_book/jvsipBook.bbprojectd/Unix Worksheet.worksheet: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/jvsip_book/jvsipFuncs.bbprojectd/Scratchpad.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/jvsip_book/jvsipFuncs.bbprojectd/Unix Worksheet.worksheet: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/jvsip_book/max.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/jvsip_book/max.tex -------------------------------------------------------------------------------- /doc/notebooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/doc/notebooks/README -------------------------------------------------------------------------------- /examples/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/examples/example1.c -------------------------------------------------------------------------------- /examples/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/examples/example1.py -------------------------------------------------------------------------------- /java/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/java/README -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/python/README.md -------------------------------------------------------------------------------- /python/vsip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/python/vsip/README.md -------------------------------------------------------------------------------- /python/vsip/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/python/vsip/setup.py -------------------------------------------------------------------------------- /python/vsip/vsip.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrjudd/jvsip/HEAD/python/vsip/vsip.i --------------------------------------------------------------------------------