repo
stringlengths
1
152
file
stringlengths
14
221
code
stringlengths
501
25k
file_length
int64
501
25k
avg_line_length
float64
20
99.5
max_line_length
int64
21
134
extension_type
stringclasses
2 values
self
self-master/lib/dlib/string/string_abstract.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_STRINg_ABSTRACT_ #ifdef DLIB_STRINg_ABSTRACT_ #include <string> #include <iostream> #include <vector> #include "../error.h" namespace dlib { // --------------------------------...
20,951
31.085758
105
h
self
self-master/lib/dlib/bit_stream/bit_stream_multi_abstract.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_BIT_STREAM_MULTi_ABSTRACT_ #ifdef DLIB_BIT_STREAM_MULTi_ABSTRACT_ #include "bit_stream_kernel_abstract.h" namespace dlib { template < typename bit_stream_base ...
2,177
26.923077
94
h
self
self-master/lib/dlib/bit_stream/bit_stream_kernel_c.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_BIT_STREAM_KERNEl_C_ #define DLIB_BIT_STREAM_KERNEl_C_ #include "bit_stream_kernel_abstract.h" #include "../algs.h" #include "../assert.h" #include <iosfwd> namespace dlib { ...
4,748
26.450867
100
h
self
self-master/lib/dlib/bit_stream/bit_stream_kernel_1.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_BIT_STREAM_KERNEl_1_ #define DLIB_BIT_STREAM_KERNEl_1_ #include "bit_stream_kernel_abstract.h" #include <iosfwd> namespace dlib { class bit_stream_kernel_1 { ...
3,084
24.495868
91
h
self
self-master/lib/dlib/bit_stream/bit_stream_multi_1.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_BIT_STREAM_MULTi_1_ #define DLIB_BIT_STREAM_MULTi_1_ #include "bit_stream_multi_abstract.h" namespace dlib { template < typename bit_stream_base > class...
2,567
23.692308
91
h
self
self-master/lib/dlib/bit_stream/bit_stream_multi_c.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_BIT_STREAM_MULTi_C_ #define DLIB_BIT_STREAM_MULTi_C_ #include "bit_stream_multi_abstract.h" #include "../algs.h" #include "../assert.h" namespace dlib { template < ...
3,115
29.54902
102
h
self
self-master/lib/dlib/bit_stream/bit_stream_kernel_abstract.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_BIT_STREAM_KERNEl_ABSTRACT_ #ifdef DLIB_BIT_STREAM_KERNEl_ABSTRACT_ #include <iosfwd> namespace dlib { class bit_stream { /*! INITIAL VALUE ...
5,315
27.580645
84
h
self
self-master/lib/dlib/control/approximate_linear_models_abstract.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_APPROXIMATE_LINEAR_MODELS_ABSTRACT_Hh_ #ifdef DLIB_APPROXIMATE_LINEAR_MODELS_ABSTRACT_Hh_ #include "../matrix.h" namespace dlib { // -------------------------------------------...
7,264
32.948598
91
h
self
self-master/lib/dlib/control/approximate_linear_models.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_APPROXIMATE_LINEAR_MODELS_Hh_ #define DLIB_APPROXIMATE_LINEAR_MODELS_Hh_ #include "approximate_linear_models_abstract.h" #include "../matrix.h" namespace dlib { // -----------...
3,608
26.976744
107
h
self
self-master/lib/dlib/control/lspi_abstract.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_LSPI_ABSTRACT_Hh_ #ifdef DLIB_LSPI_ABSTRACT_Hh_ #include "approximate_linear_models_abstract.h" namespace dlib { // ------------------------------------------------------------...
6,106
30.479381
91
h
self
self-master/lib/dlib/control/mpc.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_MPC_Hh_ #define DLIB_MPC_Hh_ #include "mpc_abstract.h" #include "../matrix.h" #include "../algs.h" namespace dlib { template < long S_, long I_, un...
12,283
32.110512
130
h
self
self-master/lib/dlib/control/lspi.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_LSPI_Hh_ #define DLIB_LSPI_Hh_ #include "lspi_abstract.h" #include "approximate_linear_models.h" namespace dlib { // ----------------------------------------------------------...
4,947
25.179894
97
h
self
self-master/lib/dlib/control/mpc_abstract.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_MPC_ABSTRACT_Hh_ #ifdef DLIB_MPC_ABSTRACT_Hh_ #include "../matrix.h" namespace dlib { template < long S_, long I_, unsigned long horizon_ > ...
9,822
34.462094
91
h
self
self-master/lib/dlib/threads/threads_kernel_abstract.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_THREADS_KERNEl_ABSTRACT_ #ifdef DLIB_THREADS_KERNEl_ABSTRACT_ namespace dlib { // ---------------------------------------------------------------------------------------- /...
11,111
35.673267
105
h
self
self-master/lib/dlib/threads/auto_mutex_extension.h
// Copyright (C) 2005 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_AUTO_MUTEX_EXTENSIOn_ #define DLIB_AUTO_MUTEX_EXTENSIOn_ #include "threads_kernel.h" #include "rmutex_extension.h" #include "read_write_mutex_extension.h" #include "auto_mutex_e...
4,212
22.276243
91
h
self
self-master/lib/dlib/threads/rmutex_extension_abstract.h
// Copyright (C) 2005 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_RMUTEX_EXTENSIOn_ABSTRACT_ #ifdef DLIB_RMUTEX_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // -----------------------------------------------------...
3,733
33.574074
93
h
self
self-master/lib/dlib/threads/parallel_for_extension.h
// Copyright (C) 2013 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_PARALLEL_FoR_Hh_ #define DLIB_PARALLEL_FoR_Hh_ #include "parallel_for_extension_abstract.h" #include "thread_pool_extension.h" #include "../console_progress_indicator.h" names...
19,307
30.861386
118
h
self
self-master/lib/dlib/threads/thread_specific_data_extension_abstract.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_THREAD_SPECIFIC_DATA_EXTENSIOn_ABSTRACT_ #ifdef DLIB_THREAD_SPECIFIC_DATA_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // -------------------------...
3,123
34.5
95
h
self
self-master/lib/dlib/threads/threads_kernel_2.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_THREADS_KERNEl_2_ #define DLIB_THREADS_KERNEl_2_ #ifdef DLIB_ISO_CPP_ONLY #error "DLIB_ISO_CPP_ONLY is defined so you can't use this OS dependent code. Turn DLIB_ISO_CPP_ONLY o...
4,965
26.436464
129
h
self
self-master/lib/dlib/threads/rsignaler_extension.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_RSIGNALER_EXTENSIOn_ #define DLIB_RSIGNALER_EXTENSIOn_ #include "rsignaler_extension_abstract.h" #include "rmutex_extension.h" namespace dlib { // ---------------------------...
2,019
21.197802
91
h
self
self-master/lib/dlib/threads/multithreaded_object_extension_abstract.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_MULTITHREADED_OBJECT_EXTENSIOn_ABSTRACT_ #ifdef DLIB_MULTITHREADED_OBJECT_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // ------------------------...
6,210
32.213904
111
h
self
self-master/lib/dlib/threads/auto_unlock_extension.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_AUTO_UNLOCK_EXTENSIOn_ #define DLIB_AUTO_UNLOCK_EXTENSIOn_ #include "threads_kernel.h" #include "rmutex_extension.h" #include "read_write_mutex_extension.h" #include "auto_unloc...
2,886
23.675214
91
h
self
self-master/lib/dlib/threads/create_new_thread_extension.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CREATE_NEW_THREAD_EXTENSIOn_ #define DLIB_CREATE_NEW_THREAD_EXTENSIOn_ #include "threads_kernel_abstract.h" #include "create_new_thread_extension_abstract.h" #include "../threa...
1,111
22.659574
91
h
self
self-master/lib/dlib/threads/thread_function_extension.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_THREAD_FUNCTIOn_ #define DLIB_THREAD_FUNCTIOn_ #include "thread_function_extension_abstract.h" #include "threads_kernel.h" #include "auto_mutex_extension.h" #include "threaded_...
4,696
20.846512
91
h
self
self-master/lib/dlib/threads/read_write_mutex_extension.h
// Copyright (C) 2010 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_READ_WRITE_MUTEX_EXTENSIOn_ #define DLIB_READ_WRITE_MUTEX_EXTENSIOn_ #include "threads_kernel.h" #include "read_write_mutex_extension_abstract.h" namespace dlib { // ---------...
5,150
27.938202
97
h
self
self-master/lib/dlib/threads/threaded_object_extension_abstract.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_THREADED_OBJECT_EXTENSIOn_ABSTRACT_ #ifdef DLIB_THREADED_OBJECT_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // ----------------------------------...
6,084
29.425
107
h
self
self-master/lib/dlib/threads/thread_function_extension_abstract.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_THREAD_FUNCTIOn_ABSTRACT_ #ifdef DLIB_THREAD_FUNCTIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // ------------------------------------------------------...
4,484
29.510204
91
h
self
self-master/lib/dlib/threads/read_write_mutex_extension_abstract.h
// Copyright (C) 2010 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_READWRITE_MUTEX_EXTENSIOn_ABSTRACT_ #ifdef DLIB_READWRITE_MUTEX_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // -----------------------------------...
5,459
36.142857
104
h
self
self-master/lib/dlib/threads/threads_kernel_1.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_THREADS_KERNEl_1_ #define DLIB_THREADS_KERNEl_1_ #ifdef DLIB_ISO_CPP_ONLY #error "DLIB_ISO_CPP_ONLY is defined so you can't use this OS dependent code. Turn DLIB_ISO_CPP_ONLY o...
7,539
27.134328
129
h
self
self-master/lib/dlib/threads/rsignaler_extension_abstract.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_RSIGNALER_EXTENSIOn_ABSTRACT_ #ifdef DLIB_RSIGNALER_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" #include "rmutex_extension_abstract.h" namespace dlib { // -------...
4,115
32.193548
100
h
self
self-master/lib/dlib/threads/auto_mutex_extension_abstract.h
// Copyright (C) 2005 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_AUTO_MUTEX_EXTENSIOn_ABSTRACT_ #ifdef DLIB_AUTO_MUTEX_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" #include "rmutex_extension_abstract.h" #include "read_write_mutex_e...
6,138
32.005376
97
h
self
self-master/lib/dlib/threads/auto_unlock_extension_abstract.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_AUTO_UNLOCK_EXTENSIOn_ABSTRACT_ #ifdef DLIB_AUTO_UNLOCK_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" #include "rmutex_extension_abstract.h" #include "read_write_mutex...
3,574
29.555556
93
h
self
self-master/lib/dlib/threads/threaded_object_extension.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_THREADED_OBJECT_EXTENSIOn_ #define DLIB_THREADED_OBJECT_EXTENSIOn_ #include "threaded_object_extension_abstract.h" #include "threads_kernel.h" #include "auto_mutex_extension.h"...
2,652
20.395161
91
h
self
self-master/lib/dlib/threads/create_new_thread_extension_abstract.h
// Copyright (C) 2006 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_CREATE_NEW_THREAD_EXTENSIOn_ABSTRACT_ #ifdef DLIB_CREATE_NEW_THREAD_EXTENSIOn_ABSTRACT_ #include "threads_kernel_abstract.h" namespace dlib { // ------------------------------...
844
23.852941
91
h
self
self-master/lib/dlib/threads/async.h
// Copyright (C) 2016 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_AsYNC_Hh_ #define DLIB_AsYNC_Hh_ // C++11 things don't work in old versions of visual studio #if !defined( _MSC_VER) || _MSC_VER >= 1900 #include "async_abstract.h" #include...
2,878
26.160377
123
h
self
self-master/lib/dlib/threads/multithreaded_object_extension.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_MULTITHREADED_OBJECT_EXTENSIOn_ #define DLIB_MULTITHREADED_OBJECT_EXTENSIOn_ #include "multithreaded_object_extension_abstract.h" #include "threads_kernel.h" #include "auto_mut...
3,959
24.714286
91
h
self
self-master/lib/dlib/threads/rmutex_extension.h
// Copyright (C) 2005 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_RMUTEX_EXTENSIOn_ #define DLIB_RMUTEX_EXTENSIOn_ #include "threads_kernel.h" #include "rmutex_extension_abstract.h" namespace dlib { // ---------------------------------------...
2,689
23.454545
91
h
self
self-master/lib/dlib/threads/async_abstract.h
// Copyright (C) 2016 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_AsYNC_ABSTRACT_Hh_ #ifdef DLIB_AsYNC_ABSTRACT_Hh_ #include "thread_pool_extension_abstract.h" #include <future> #include <functional> namespace dlib { // ---------------------...
2,274
32.455882
110
h
self
self-master/lib/dlib/threads/parallel_for_extension_abstract.h
// Copyright (C) 2013 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_PARALLEL_FoR_ABSTRACT_Hh_ #ifdef DLIB_PARALLEL_FoR_ABSTRACT_Hh_ #include "thread_pool_extension_abstract.h" namespace dlib { // -----------------------------------------------...
14,084
33.437653
95
h
self
self-master/lib/dlib/disjoint_subsets/disjoint_subsets.h
// Copyright (C) 2011 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_DISJOINT_SUBsETS_Hh_ #define DLIB_DISJOINT_SUBsETS_Hh_ #include "disjoint_subsets_abstract.h" #include <vector> #include "../algs.h" namespace dlib { // ----------------------...
3,748
25.216783
91
h
self
self-master/lib/dlib/disjoint_subsets/disjoint_subsets_abstract.h
// Copyright (C) 2011 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_DISJOINT_SUBsETS_ABSTRACT_Hh_ #ifdef DLIB_DISJOINT_SUBsETS_ABSTRACT_Hh_ #include <vector> #include "../algs.h" namespace dlib { // ---------------------------------------------...
3,060
29.61
103
h
self
self-master/lib/dlib/conditioning_class/conditioning_class_kernel_c.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CONDITIONING_CLASS_KERNEl_C_ #define DLIB_CONDITIONING_CLASS_KERNEl_C_ #include "conditioning_class_kernel_abstract.h" #include "../algs.h" #include "../assert.h" #include <iost...
5,231
31.09816
91
h
self
self-master/lib/dlib/conditioning_class/conditioning_class_kernel_1.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CONDITIONING_CLASS_KERNEl_1_ #define DLIB_CONDITIONING_CLASS_KERNEl_1_ #include "conditioning_class_kernel_abstract.h" #include "../assert.h" #include "../algs.h" namespace dli...
9,281
26.790419
120
h
self
self-master/lib/dlib/conditioning_class/conditioning_class_kernel_2.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CONDITIONING_CLASS_KERNEl_2_ #define DLIB_CONDITIONING_CLASS_KERNEl_2_ #include "conditioning_class_kernel_abstract.h" #include "../assert.h" #include "../algs.h" namespace dli...
14,755
28.453094
120
h
self
self-master/lib/dlib/conditioning_class/conditioning_class_kernel_abstract.h
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_CONDITIONING_CLASS_KERNEl_ABSTRACT_ #ifdef DLIB_CONDITIONING_CLASS_KERNEl_ABSTRACT_ #include "../algs.h" namespace dlib { template < unsigned long alphabet_size ...
7,951
33.724891
115
h
self
self-master/lib/dlib/conditioning_class/conditioning_class_kernel_3.h
// Copyright (C) 2004 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_CONDITIONING_CLASS_KERNEl_3_ #define DLIB_CONDITIONING_CLASS_KERNEl_3_ #include "conditioning_class_kernel_abstract.h" #include "../assert.h" #include "../algs.h" namespace dl...
12,279
26.972665
120
h
self
self-master/lib/dlib/external/cblas/cblas_ctrsv.c
/* * cblas_ctrsv.c * The program is a C interface to ctrsv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctrsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,402
23.65942
79
c
self
self-master/lib/dlib/external/cblas/cblas_ztpmv.c
/* * cblas_ztpmv.c * The program is a C interface to ztpmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztpmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,269
23.402985
79
c
self
self-master/lib/dlib/external/cblas/cblas_ctbmv.c
/* * cblas_ctbmv.c * The program is a C interface to ctbmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,455
23.685714
79
c
self
self-master/lib/dlib/external/cblas/cblas_ztrsm.c
/* * * cblas_ztrsm.c * This program is a C interface to ztrsm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztrsm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,371
24.353383
79
c
self
self-master/lib/dlib/external/cblas/cblas_dtpsv.c
/* * cblas_dtpsv.c * The program is a C interface to dtpsv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtpsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,599
25
79
c
self
self-master/lib/dlib/external/cblas/cblas_dtbsv.c
/* * cblas_dtbsv.c * The program is a C interface to dtbsv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtbsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,785
25.788462
79
c
self
self-master/lib/dlib/external/cblas/cblas_dtpmv.c
/* * cblas_dtpmv.c * The program is a C interface to dtpmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtpmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,598
25.252525
79
c
self
self-master/lib/dlib/external/cblas/cblas_cdotc_sub.c
/* * cblas_cdotc_sub.c * * The program is a C interface to cdotc. * It calls the fortran wrapper before calling cdotc. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_cdotc_sub( const int N, const void *X, const int incX, const void *Y, co...
558
22.291667
65
c
self
self-master/lib/dlib/external/cblas/cblas_sdot.c
/* * cblas_sdot.c * * The program is a C interface to sdot. * It calls the fortran wrapper before calling sdot. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" float cblas_sdot( const int N, const float *X, const int incX, const float *Y, const int...
571
21
69
c
self
self-master/lib/dlib/external/cblas/cblas_saxpy.c
/* * cblas_saxpy.c * * The program is a C interface to saxpy. * It calls the fortran wrapper before calling saxpy. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_saxpy( const int N, const float alpha, const float *X, const int incX, fl...
556
22.208333
65
c
self
self-master/lib/dlib/external/cblas/cblas_sgbmv.c
/* * * cblas_sgbmv.c * This program is a C interface to sgbmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sgbmv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const int KL, const ...
2,004
26.465753
79
c
self
self-master/lib/dlib/external/cblas/cblas_chemm.c
/* * * cblas_chemm.c * This program is a C interface to chemm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_chemm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, ...
2,265
23.630435
78
c
self
self-master/lib/dlib/external/cblas/cblas_zgeru.c
/* * cblas_zgeru.c * The program is a C interface to zgeru. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zgeru(const enum CBLAS_ORDER order, const int M, const int N, const void *alpha, const void *X, const int incX, const void *Y, const...
957
24.210526
77
c
self
self-master/lib/dlib/external/cblas/cblas_ztrmv.c
/* * cblas_ztrmv.c * The program is a C interface to ztrmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztrmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,402
23.65942
79
c
self
self-master/lib/dlib/external/cblas/cblas_dsyr2k.c
/* * * cblas_dsyr2k.c * This program is a C interface to dsyr2k. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsyr2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,414
24.421053
78
c
self
self-master/lib/dlib/external/cblas/cblas_zher2.c
/* * cblas_zher2.c * The program is a C interface to zher2. * * Keita Teranishi 3/23/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zher2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void *alpha, const void *X,...
3,118
21.120567
79
c
self
self-master/lib/dlib/external/cblas/cblas_dsdot.c
/* * cblas_dsdot.c * * The program is a C interface to dsdot. * It calls fthe fortran wrapper before calling dsdot. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" double cblas_dsdot( const int N, const float *X, const int incX, const float *Y, co...
580
21.346154
69
c
self
self-master/lib/dlib/external/cblas/cblas_csyrk.c
/* * * cblas_csyrk.c * This program is a C interface to csyrk. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_csyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,282
23.287234
78
c
self
self-master/lib/dlib/external/cblas/cblas_dsymm.c
/* * * cblas_dsymm.c * This program is a C interface to dsymm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, ...
2,275
23.73913
77
c
self
self-master/lib/dlib/external/cblas/cblas_ztbmv.c
/* * cblas_ztbmv.c * The program is a C interface to ztbmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,457
23.7
79
c
self
self-master/lib/dlib/external/cblas/cblas_dtrmm.c
/* * * cblas_dtrmm.c * This program is a C interface to dtrmm. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtrmm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,340
25.515873
98
c
self
self-master/lib/dlib/external/cblas/cblas_cgemm.c
/* * * cblas_cgemm.c * This program is a C interface to cgemm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_cgemm(const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, ...
2,585
26.221053
81
c
self
self-master/lib/dlib/external/cblas/cblas_zherk.c
/* * * cblas_zherk.c * This program is a C interface to zherk. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zherk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,284
24.10989
78
c
self
self-master/lib/dlib/external/cblas/cblas_ssymv.c
/* * * cblas_ssymv.c * This program is a C interface to ssymv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssymv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float *A, cons...
1,663
24.212121
77
c
self
self-master/lib/dlib/external/cblas/cblas_ssyr2.c
/* * * cblas_ssyr2.c * This program is a C interface to ssyr2. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssyr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float *X, const...
1,611
23.424242
79
c
self
self-master/lib/dlib/external/cblas/cblas_stbmv.c
/* * cblas_stbmv.c * This program is a C interface to stbmv. * Written by Keita Teranishi * 3/3/1998 */ #include "cblas.h" #include "cblas_f77.h" void cblas_stbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, ...
2,800
25.932692
79
c
self
self-master/lib/dlib/external/cblas/cblas_strsv.c
/* * cblas_strsv.c * The program is a C interface to strsv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_strsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,726
25.475728
79
c
self
self-master/lib/dlib/external/cblas/cblas_dspr.c
/* * * cblas_dspr.c * This program is a C interface to dspr. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dspr(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double *X, const in...
1,373
21.9
78
c
self
self-master/lib/dlib/external/cblas/cblas_dspmv.c
/* * * cblas_dspmv.c * This program is a C interface to dspmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dspmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double *AP,...
1,602
23.287879
77
c
self
self-master/lib/dlib/external/cblas/cblas_srot.c
/* * cblas_srot.c * * The program is a C interface to srot. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_srot( const int N, float *X, const int incX, float *Y, const int incY, const float c, const float s) { #ifdef F77_INT F77_IN...
504
20.956522
69
c
self
self-master/lib/dlib/external/cblas/cblas_dsyr2.c
/* * * cblas_dsyr2.c * This program is a C interface to dsyr2. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsyr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double *X, con...
1,615
23.484848
79
c
self
self-master/lib/dlib/external/cblas/cblas_zhemv.c
/* * cblas_zhemv.c * The program is a C interface to zhemv * * Keita Teranishi 5/18/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zhemv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void *alpha...
3,136
20.340136
79
c
self
self-master/lib/dlib/external/cblas/cblas_dtbmv.c
/* * cblas_dtbmv.c * The program is a C interface to dtbmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,775
25.692308
79
c
self
self-master/lib/dlib/external/cblas/cblas_zher.c
/* * cblas_zher.c * The program is a C interface to zher. * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zher(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const void *X, co...
2,214
21.15
78
c
self
self-master/lib/dlib/external/cblas/cblas_zhpr2.c
/* * cblas_zhpr2.c * The program is a C interface to zhpr2. * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zhpr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N,const void *alpha, const void...
2,963
20.478261
77
c
self
self-master/lib/dlib/external/cblas/cblas_cher2k.c
/* * * cblas_cher2k.c * This program is a C interface to cher2k. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_cher2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,476
24.536082
102
c
self
self-master/lib/dlib/external/cblas/cblas_dger.c
/* * * cblas_dger.c * This program is a C interface to dger. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dger(const enum CBLAS_ORDER order, const int M, const int N, const double alpha, const double *X, const int incX, const ...
978
22.878049
76
c
self
self-master/lib/dlib/external/cblas/cblas_ssyr2k.c
/* * * cblas_ssyr2k.c * This program is a C interface to ssyr2k. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssyr2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,489
24.670103
103
c
self
self-master/lib/dlib/external/cblas/cblas_ssyr.c
/* * * cblas_ssyr.c * This program is a C interface to ssyr. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssyr(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float *X, const int...
1,442
23.05
78
c
self
self-master/lib/dlib/external/cblas/cblas_cher.c
/* * cblas_cher.c * The program is a C interface to cher. * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_cher(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const void *X, con...
2,238
20.528846
77
c
self
self-master/lib/dlib/external/cblas/cblas_cdotu_sub.c
/* * cblas_cdotu_sub.f * * The program is a C interface to cdotu. * It calls the forteran wrapper before calling cdotu. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_cdotu_sub( const int N, const void *X, const int incX, const void *Y, ...
560
22.375
78
c
self
self-master/lib/dlib/external/cblas/cblas_zsyr2k.c
/* * * cblas_zsyr2k.c * This program is a C interface to zsyr2k. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zsyr2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,391
24.446809
101
c
self
self-master/lib/dlib/external/cblas/cblas_sdsdot.c
/* * cblas_sdsdot.c * * The program is a C interface to sdsdot. * It calls the fortran wrapper before calling sdsdot. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" float cblas_sdsdot( const int N, const float alpha, const float *X, const int incX...
608
22.423077
69
c
self
self-master/lib/dlib/external/cblas/cblas_ctrsm.c
/* * * cblas_ctrsm.c * This program is a C interface to ctrsm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctrsm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,370
24.345865
79
c
self
self-master/lib/dlib/external/cblas/cblas_cherk.c
/* * * cblas_cherk.c * This program is a C interface to cherk. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_cherk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,282
24.087912
78
c
self
self-master/lib/dlib/external/cblas/cblas_dgbmv.c
/* * * cblas_dgbmv.c * This program is a C interface to dgbmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dgbmv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const int KL, const i...
1,997
27.140845
79
c
self
self-master/lib/dlib/external/cblas/cblas_sspmv.c
/* * * cblas_sspmv.c * This program is a C interface to sspmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sspmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float *AP, ...
1,583
24.142857
77
c
self
self-master/lib/dlib/external/cblas/cblas_ssymm.c
/* * * cblas_ssymm.c * This program is a C interface to ssymm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, ...
2,349
24
102
c
self
self-master/lib/dlib/external/cblas/cblas_strmv.c
/* * * cblas_strmv.c * This program is a C interface to strmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_strmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, ...
2,741
25.365385
79
c
self
self-master/lib/dlib/external/cblas/cblas_ssyrk.c
/* * * cblas_ssyrk.c * This program is a C interface to ssyrk. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,365
23.645833
89
c
self
self-master/lib/dlib/external/cblas/cblas_zhpr.c
/* * cblas_zhpr.c * The program is a C interface to zhpr. * * Keita Teranishi 3/23/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zhpr(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const void *X, ...
2,169
20.067961
74
c
self
self-master/lib/dlib/external/cblas/cblas_csymm.c
/* * * cblas_csymm.c * This program is a C interface to csymm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_csymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, ...
2,271
23.695652
77
c
self
self-master/lib/dlib/external/cblas/cblas_ctpmv.c
/* * cblas_ctpmv.c * The program is a C interface to ctpmv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctpmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,267
23.38806
79
c
self
self-master/lib/dlib/external/cblas/cblas_strsm.c
/* * * cblas_strsm.c * This program is a C interface to strsm. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_strsm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,340
26.61157
98
c