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/external/cblas/cblas_dgemm.c
/* * * cblas_dgemm.c * This program is a C interface to dgemm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dgemm(const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, ...
2,580
26.168421
81
c
self
self-master/lib/dlib/external/cblas/cblas_chbmv.c
/* * cblas_chbmv.c * The program is a C interface to chbmv * * Keita Teranishi 5/18/98 * */ #include "cblas.h" #include "cblas_f77.h" #include <stdio.h> #include <stdlib.h> void cblas_chbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,const int N,const int K, const ...
3,178
20.773973
75
c
self
self-master/lib/dlib/external/cblas/cblas_chemv.c
/* * cblas_chemv.c * The program is a C interface to chemv * * Keita Teranishi 5/18/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_chemv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void *alpha...
3,128
20.285714
75
c
self
self-master/lib/dlib/external/cblas/cblas_ztbsv.c
/* * cblas_ztbsv.c * The program is a C interface to ztbsv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztbsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,466
23.076389
79
c
self
self-master/lib/dlib/external/cblas/cblas_sspr.c
/* * * cblas_sspr.c * This program is a C interface to sspr. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sspr(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float *X, const int...
1,373
21.16129
78
c
self
self-master/lib/dlib/external/cblas/cblas_ztrsv.c
/* * cblas_ztrsv.c * The program is a C interface to ztrsv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztrsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,404
23.673913
79
c
self
self-master/lib/dlib/external/cblas/cblas_chpr.c
/* * cblas_chpr.c * The program is a C interface to chpr. * * Keita Teranishi 3/23/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_chpr(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const void *X, ...
2,163
20.009709
74
c
self
self-master/lib/dlib/external/cblas/cblas_zgemv.c
/* * cblas_zgemv.c * The program is a C interface of zgemv * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zgemv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, ...
3,751
23.363636
79
c
self
self-master/lib/dlib/external/cblas/cblas_zdotu_sub.c
/* * cblas_zdotu_sub.c * * The program is a C interface to zdotu. * It calls the fortran wrapper before calling zdotu. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zdotu_sub( const int N, const void *X, const int incX, const void *Y, ...
572
21.92
65
c
self
self-master/lib/dlib/external/cblas/cblas_ctbsv.c
/* * cblas_ctbsv.c * The program is a C interface to ctbsv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctbsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,464
23.0625
79
c
self
self-master/lib/dlib/external/cblas/cblas_zher2k.c
/* * * cblas_zher2k.c * This program is a C interface to zher2k. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zher2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,476
24.802083
102
c
self
self-master/lib/dlib/external/cblas/cblas_dtrmv.c
/* * * cblas_dtrmv.c * This program is a C interface to sgemv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtrmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, ...
2,742
25.375
79
c
self
self-master/lib/dlib/external/cblas/cblas_daxpy.c
/* * cblas_daxpy.c * * The program is a C interface to daxpy. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_daxpy( const int N, const double alpha, const double *X, const int incX, double *Y, const int incY) { #ifdef F77_INT F77_INT...
505
21
67
c
self
self-master/lib/dlib/external/cblas/cblas_cgeru.c
/* * cblas_cgeru.c * The program is a C interface to cgeru. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_cgeru(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
23.564103
76
c
self
self-master/lib/dlib/external/cblas/cblas_zhemm.c
/* * * cblas_zhemm.c * This program is a C interface to zhemm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zhemm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, ...
2,266
23.641304
78
c
self
self-master/lib/dlib/external/cblas/cblas_ztrmm.c
/* * * cblas_ztrmm.c * This program is a C interface to ztrmm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztrmm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,349
25.377953
97
c
self
self-master/lib/dlib/external/cblas/cblas_stpmv.c
/* * * cblas_stpmv.c * This program is a C interface to stpmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_stpmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, ...
2,611
25.12
79
c
self
self-master/lib/dlib/external/cblas/cblas_ctrmm.c
/* * * cblas_ctrmm.c * This program is a C interface to ctrmm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctrmm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,330
25.862903
97
c
self
self-master/lib/dlib/external/cblas/cblas_ctpsv.c
/* * cblas_ctpsv.c * The program is a C interface to ctpsv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctpsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,277
22.582734
79
c
self
self-master/lib/dlib/external/cblas/cblas_cgerc.c
/* * cblas_cgerc.c * The program is a C interface to cgerc. * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_cgerc(const enum CBLAS_ORDER order, const int M, const int N, const void *alpha, const void *X, const int incX...
1,755
21.512821
79
c
self
self-master/lib/dlib/external/cblas/cblas_ssbmv.c
/* * * cblas_ssbmv.c * This program is a C interface to ssbmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ssbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const int K, const float alpha, const float *A, const...
1,650
24.015152
77
c
self
self-master/lib/dlib/external/cblas/cblas_dtrsm.c
/* * * cblas_dtrsm.c * This program is a C interface to dtrsm. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtrsm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,426
25.160305
79
c
self
self-master/lib/dlib/external/cblas/cblas_zgbmv.c
/* * cblas_zgbmv.c * The program is a C interface of zgbmv * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zgbmv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, ...
3,921
24.141026
79
c
self
self-master/lib/dlib/external/cblas/cblas_zsyrk.c
/* * * cblas_zsyrk.c * This program is a C interface to zsyrk. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zsyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,282
23.548387
78
c
self
self-master/lib/dlib/external/cblas/cblas_cgbmv.c
/* * cblas_cgbmv.c * The program is a C interface of cgbmv * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_cgbmv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, ...
3,904
24.193548
79
c
self
self-master/lib/dlib/external/cblas/cblas_csyr2k.c
/* * * cblas_csyr2k.c * This program is a C interface to csyr2k. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_csyr2k(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_stpsv.c
/* * cblas_stpsv.c * The program is a C interface to stpsv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_stpsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,597
24.98
79
c
self
self-master/lib/dlib/external/cblas/cblas_ddot.c
/* * cblas_ddot.c * * The program is a C interface to ddot. * It calls the fortran wrapper before calling ddot. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" double cblas_ddot( const int N, const double *X, const int incX, const double *Y, const ...
575
21.153846
70
c
self
self-master/lib/dlib/external/cblas/cblas_strmm.c
/* * * cblas_strmm.c * This program is a C interface to strmm. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_strmm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, ...
3,312
25.293651
98
c
self
self-master/lib/dlib/external/cblas/cblas_zgemm.c
/* * * cblas_zgemm.c * This program is a C interface to zgemm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zgemm(const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, ...
2,582
26.189474
81
c
self
self-master/lib/dlib/external/cblas/cblas_ztpsv.c
/* * cblas_ztpsv.c * The program is a C interface to ztpsv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ztpsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,279
22.597122
79
c
self
self-master/lib/dlib/external/cblas/cblas_zgerc.c
/* * cblas_zgerc.c * The program is a C interface to zgerc. * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_zgerc(const enum CBLAS_ORDER order, const int M, const int N, const void *alpha, const void *X, const int incX...
1,760
21.576923
79
c
self
self-master/lib/dlib/external/cblas/cblas_cher2.c
/* * cblas_cher2.c * The program is a C interface to cher2. * * Keita Teranishi 3/23/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_cher2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void *alpha, const void *X,...
3,102
21.164286
79
c
self
self-master/lib/dlib/external/cblas/cblas_dsyrk.c
/* * * cblas_dsyrk.c * This program is a C interface to dsyrk. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, ...
2,287
23.340426
77
c
self
self-master/lib/dlib/external/cblas/cblas_zsymm.c
/* * * cblas_zsymm.c * This program is a C interface to zsymm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zsymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, ...
2,272
23.706522
78
c
self
self-master/lib/dlib/external/cblas/cblas_chpr2.c
/* * cblas_chpr2.c * The program is a C interface to chpr2. * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_chpr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N,const void *alpha, const void...
2,939
20.459854
77
c
self
self-master/lib/dlib/external/cblas/cblas_dsymv.c
/* * * cblas_dsymv.c * This program is a C interface to dsymv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsymv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double *A, co...
1,668
24.287879
77
c
self
self-master/lib/dlib/external/cblas/cblas_stbsv.c
/* * cblas_stbsv.c * The program is a C interface to stbsv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_stbsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,784
25.778846
79
c
self
self-master/lib/dlib/external/cblas/cblas_dspr2.c
/* * cblas_dspr2.c * The program is a C interface to dspr2. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dspr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double *X, const int incX, con...
1,469
23.5
79
c
self
self-master/lib/dlib/external/cblas/cblas_sgemv.c
/* * * cblas_sgemv.c * This program is a C interface to sgemv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sgemv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const float alpha, c...
1,823
25.823529
80
c
self
self-master/lib/dlib/external/cblas/cblas_zdotc_sub.c
/* * cblas_zdotc_sub.c * * The program is a C interface to zdotc. * It calls the fortran wrapper before calling zdotc. * * Written by Keita Teranishi. 2/11/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_zdotc_sub( const int N, const void *X, const int incX, const void *Y, co...
570
21.84
65
c
self
self-master/lib/dlib/external/cblas/cblas_sspr2.c
/* * * cblas_sspr2.c * This program is a C interface to sspr2. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sspr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float *X, const...
1,470
23.114754
79
c
self
self-master/lib/dlib/external/cblas/cblas_dsyr.c
/* * * cblas_dsyr.c * This program is a C interface to dsyr. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsyr(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double *X, const ...
1,446
22.721311
78
c
self
self-master/lib/dlib/external/cblas/cblas_cgemv.c
/* * cblas_cgemv.c * The program is a C interface of cgemv * * Keita Teranishi 5/20/98 * */ #include <stdio.h> #include <stdlib.h> #include "cblas.h" #include "cblas_f77.h" void cblas_cgemv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, ...
3,787
23.921053
79
c
self
self-master/lib/dlib/external/cblas/cblas_ctrmv.c
/* * cblas_ctrmv.c * The program is a C interface to ctrmv. * * Keita Teranishi 3/23/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_ctrmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const...
3,386
23.722628
79
c
self
self-master/lib/dlib/external/cblas/cblas_dgemv.c
/* * * cblas_dgemv.c * This program is a C interface to dgemv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dgemv(const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const double alpha, c...
1,842
26.102941
79
c
self
self-master/lib/dlib/external/cblas/cblas_dsbmv.c
/* * * cblas_dsbmv.c * This program is a C interface to dsbmv. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dsbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const int K, const double alpha, const d...
1,725
24.761194
77
c
self
self-master/lib/dlib/external/cblas/cblas_sger.c
/* * * cblas_sger.c * This program is a C interface to sger. * Written by Keita Teranishi * 4/6/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sger(const enum CBLAS_ORDER order, const int M, const int N, const float alpha, const float *X, const int incX, const f...
944
22.625
76
c
self
self-master/lib/dlib/external/cblas/cblas_xerbla.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdarg.h> #include "cblas.h" #include "cblas_f77.h" void cblas_xerbla(int info, const char *rout, const char *form, ...) { char empty[1] = ""; va_list argptr; va_start(argptr, form); { if (strstr(rout,"gemm") != 0) { ...
1,863
26.820896
80
c
self
self-master/lib/dlib/external/cblas/cblas_zhbmv.c
/* * cblas_zhbmv.c * The program is a C interface to zhbmv * * Keita Teranishi 5/18/98 * */ #include "cblas.h" #include "cblas_f77.h" #include <stdio.h> #include <stdlib.h> void cblas_zhbmv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,const int N,const int K, const ...
3,188
20.842466
79
c
self
self-master/lib/dlib/external/cblas/cblas_dtrsv.c
/* * cblas_dtrsv.c * The program is a C interface to dtrsv. * * Keita Teranishi 5/20/98 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_dtrsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const ...
2,728
25.495146
79
c
self
self-master/lib/dlib/external/cblas/cblas_sgemm.c
/* * * cblas_sgemm.c * This program is a C interface to sgemm. * Written by Keita Teranishi * 4/8/1998 * */ #include "cblas.h" #include "cblas_f77.h" void cblas_sgemm(const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, ...
2,664
26.760417
110
c
self
self-master/lib/dlib/external/libpng/pnginfo.h
/* pnginfo.h - header file for PNG reference library * * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * Last changed in libpng 1.6.1 [March 28, 2013] * * This code is released...
12,346
46.306513
80
h
self
self-master/lib/dlib/external/libpng/pngconf.h
/* pngconf.h - machine configurable file for libpng * * libpng version 1.6.7 - November 14, 2013 * * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * This code is released under...
22,728
35.250399
85
h
self
self-master/lib/dlib/external/libpng/pngtrans.c
/* pngtrans.c - transforms the data in a row (used by both readers and writers) * * Last changed in libpng 1.6.2 [April 25, 2013] * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * ...
24,936
28.61639
80
c
self
self-master/lib/dlib/external/libpng/pngrio.c
/* pngrio.c - functions for data input * * Last changed in libpng 1.6.0 [February 14, 2013] * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * This code is released under the lib...
3,922
31.966387
77
c
self
self-master/lib/dlib/external/libpng/pngdebug.h
/* pngdebug.h - Debugging macros for libpng, also used in pngtest.c * * Copyright (c) 1998-2011 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * Last changed in libpng 1.5.0 [January 6, 2011] * * This ...
5,403
33.202532
79
h
self
self-master/lib/dlib/external/libpng/pnglibconf.h
/* libpng 1.6.7 STANDARD API DEFINITION */ /* pnglibconf.h - library build configuration */ /* Libpng version 1.6.7 - November 14, 2013 */ /* Copyright (c) 1998-2013 Glenn Randers-Pehrson */ /* This code is released under the libpng license. */ /* For conditions of distribution and use, see the disclaimer */ /* and...
7,266
33.278302
64
h
self
self-master/lib/dlib/external/libpng/pngstruct.h
/* pngstruct.h - header file for PNG reference library * * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * Last changed in libpng 1.6.1 [March 28, 2013] * * This code is releas...
20,408
40.65102
80
h
self
self-master/lib/dlib/external/libpng/pngwio.c
/* pngwio.c - functions for data output * * Last changed in libpng 1.6.0 [February 14, 2013] * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * This code is released under the li...
5,594
32.909091
78
c
self
self-master/lib/dlib/external/libpng/pngwtran.c
/* pngwtran.c - transforms the data in a row for PNG writers * * Last changed in libpng 1.6.0 [February 14, 2013] * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * This code is ...
17,293
26.106583
79
c
self
self-master/lib/dlib/external/libpng/pngmem.c
/* pngmem.c - stub functions for memory allocation * * Last changed in libpng 1.6.0 [February 14, 2013] * Copyright (c) 1998-2013 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) * * This code is released u...
8,104
28.154676
80
c
self
self-master/lib/dlib/external/libjpeg/jerror.h
/* * jerror.h * * Copyright (C) 1994-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file defines the error and message codes for the JPEG library. * Edit this file to add new codes, or to tr...
13,936
46.729452
81
h
self
self-master/lib/dlib/external/libjpeg/jinclude.h
/* * jinclude.h * * Copyright (C) 1991-1994, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file exists to provide a single place to fix any problems with * including the wrong system include file...
3,250
34.336957
90
h
self
self-master/lib/dlib/external/libjpeg/jmemsys.h
/* * jmemsys.h * * Copyright (C) 1992-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This include file defines the interface between the system-independent * and system-dependent portions of the ...
8,230
40.361809
79
h
self
self-master/lib/dlib/external/libjpeg/jdct.h
/* * jdct.h * * Copyright (C) 1994-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This include file contains common declarations for the forward and * inverse DCT modules. These declarations are...
7,030
38.723164
78
h
self
self-master/lib/dlib/external/libjpeg/jchuff.h
/* * jchuff.h * * Copyright (C) 1991-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file contains declarations for Huffman entropy encoding routines * that are shared between the sequential ...
1,571
31.75
76
h
self
self-master/lib/dlib/external/libjpeg/jpegint.h
/* * jpegint.h * * Copyright (C) 1991-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file provides common declarations for the various JPEG modules. * These declarations are considered inter...
15,621
38.750636
79
h
self
self-master/lib/dlib/external/libjpeg/jconfig.h
/* jconfig.h. Generated automatically by configure. */ /* jconfig.cfg --- source file edited by configure script */ /* see jconfig.doc for explanations */ #define HAVE_PROTOTYPES #define HAVE_UNSIGNED_CHAR #define HAVE_UNSIGNED_SHORT #undef void #undef const #undef CHAR_IS_UNSIGNED #define HAVE_STDDEF_H #define ...
1,258
26.369565
77
h
self
self-master/lib/dlib/external/libjpeg/jdhuff.h
/* * jdhuff.h * * Copyright (C) 1991-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file contains declarations for Huffman entropy decoding routines * that are shared between the sequential ...
8,135
39.277228
79
h
self
self-master/lib/dlib/external/libjpeg/jmorecfg.h
/* * jmorecfg.h * * Copyright (C) 1991-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file contains additional configuration options that customize the * JPEG software for special applicatio...
12,454
33.887955
85
h
self
self-master/lib/dlib/external/zlib/inflate.h
/* inflate.h -- internal inflate state definition * Copyright (C) 1995-2009 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of the compression library and is subject to change. A...
6,399
51.03252
79
h
self
self-master/lib/dlib/external/zlib/gzclose.c
/* gzclose.c -- zlib gzclose() function * Copyright (C) 2004, 2010 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "gzguts.h" /* gzclose() is in a separate file so that it is linked in only if it is used. That way the other gzclose functions can be used instead to...
678
25.115385
79
c
self
self-master/lib/dlib/external/zlib/infback.c
/* infback.c -- inflate using a call-back interface * Copyright (C) 1995-2011 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ /* This code is largely copied from inflate.c. Normally either infback.o or inflate.o would be linked into an application--not both. The interf...
22,709
34.429017
79
c
self
self-master/lib/dlib/external/zlib/gzread.c
/* gzread.c -- zlib functions for reading gzip files * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "gzguts.h" /* Local functions */ local int gz_load OF((gz_statep, unsigned char *, unsigned, unsigned *)); local in...
18,694
30.420168
79
c
self
self-master/lib/dlib/external/zlib/trees.h
/* header created automatically with -DGEN_TREES_H */ local const ct_data static_ltree[L_CODES+2] = { {{ 12},{ 8}}, {{140},{ 8}}, {{ 76},{ 8}}, {{204},{ 8}}, {{ 44},{ 8}}, {{172},{ 8}}, {{108},{ 8}}, {{236},{ 8}}, {{ 28},{ 8}}, {{156},{ 8}}, {{ 92},{ 8}}, {{220},{ 8}}, {{ 60},{ 8}}, {{188},{ 8}}, {{124},...
8,472
64.682171
79
h
self
self-master/lib/dlib/external/zlib/zconf.h
/* zconf.h -- configuration of the zlib compression library * Copyright (C) 1995-2013 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #ifndef ZCONF_H #define ZCONF_H /* * If you *really* need a unique prefix for all types and library functions, * com...
15,508
29.291016
79
h
self
self-master/lib/dlib/external/zlib/inffixed.h
/* inffixed.h -- table for decoding fixed codes * Generated automatically by makefixed(). */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of this library and is subject to change. Applications should only use zlib.h. */ static co...
6,332
65.663158
78
h
self
self-master/lib/dlib/external/zlib/inftrees.h
/* inftrees.h -- header to use inftrees.c * Copyright (C) 1995-2005, 2010 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of the compression library and is subject to change. App...
2,928
45.492063
79
h
self
self-master/lib/dlib/external/zlib/inftrees.c
/* inftrees.c -- generate Huffman trees for efficient decoding * Copyright (C) 1995-2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "inftrees.h" #define MAXBITS 15 const char inflate_copyright[] = " inflate 1.2.8 Copyright 1995-2013 Mark A...
13,028
41.439739
78
c
self
self-master/lib/dlib/external/zlib/zutil.h
/* zutil.h -- internal interface and configuration of the compression library * Copyright (C) 1995-2013 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of the compression lib...
6,766
25.641732
79
h
self
self-master/lib/dlib/external/zlib/zutil.c
/* zutil.c -- target dependent utility functions for the compression library * Copyright (C) 1995-2005, 2010, 2011, 2012 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #include "zutil.h" #ifndef Z_SOLO # include "gzguts.h" #endif #ifndef NO_DUMMY_DEC...
7,414
21.815385
76
c
self
self-master/lib/dlib/external/zlib/inffast.c
/* inffast.c -- fast decoding * Copyright (C) 1995-2008, 2010, 2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "inftrees.h" #include "inflate.h" #include "inffast.h" #ifndef ASMINF /* Allow machine dependent optimization for post-increment or...
13,455
38.460411
79
c
self
self-master/lib/dlib/external/zlib/crc32.c
/* crc32.c -- compute the CRC-32 of a data stream * Copyright (C) 1995-2006, 2010, 2011, 2012 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h * * Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster * CRC methods: exclusive-oring 32 bits of data at a time,...
13,174
29.92723
79
c
self
self-master/lib/dlib/external/zlib/gzwrite.c
/* gzwrite.c -- zlib functions for writing gzip files * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "gzguts.h" /* Local functions */ local int gz_init OF((gz_statep)); local int gz_comp OF((gz_statep, int)); local ...
16,199
27.027682
79
c
self
self-master/lib/dlib/external/zlib/uncompr.c
/* uncompr.c -- decompress a memory buffer * Copyright (C) 1995-2003, 2010 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #define ZLIB_INTERNAL #include "zlib.h" /* =========================================================================== Decom...
2,003
32.4
79
c
self
self-master/lib/dlib/external/zlib/compress.c
/* compress.c -- compress a memory buffer * Copyright (C) 1995-2005 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #define ZLIB_INTERNAL #include "zlib.h" /* =========================================================================== Compresses t...
2,529
30.234568
78
c
self
self-master/lib/dlib/external/zlib/deflate.h
/* deflate.h -- internal compression state * Copyright (C) 1995-2012 Jean-loup Gailly * For conditions of distribution and use, see copyright notice in zlib.h */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of the compression library and is subject to change. Ap...
12,774
35.815562
79
h
self
self-master/lib/dlib/external/zlib/adler32.c
/* adler32.c -- compute the Adler-32 checksum of a data stream * Copyright (C) 1995-2011 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #include "zutil.h" #define local static local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2)); #...
4,968
26.605556
79
c
self
self-master/lib/dlib/external/zlib/gzlib.c
/* gzlib.c -- zlib functions common to reading and writing gzip files * Copyright (C) 2004, 2010, 2011, 2012, 2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "gzguts.h" #if defined(_WIN32) && !defined(__BORLANDC__) # define LSEEK _lseeki64 #else #if defined(_LA...
16,415
24.851969
79
c
self
self-master/lib/dlib/external/zlib/gzguts.h
/* gzguts.h -- zlib internal header definitions for gz* operations * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #ifdef _MSC_VER // Disable the following warnings for Visual Studio // This is a warning you get from visual st...
6,944
30.568182
85
h
self
self-master/lib/dlib/set_utils/set_utils.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_SET_UTILs_ #define DLIB_SET_UTILs_ #include "../algs.h" #include "set_utils_abstract.h" namespace dlib { // -------------------------------------------------------------------...
5,442
21.036437
91
h
self
self-master/lib/dlib/set_utils/set_utils_abstract.h
// Copyright (C) 2007 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_SET_UTILs_ABSTRACT_ #ifdef DLIB_SET_UTILs_ABSTRACT_ #include "../set.h" #include "../algs.h" namespace dlib { // ---------------------------------------------------------------...
2,616
25.434343
91
h
self
self-master/lib/dlib/clustering/chinese_whispers_abstract.h
// Copyright (C) 2012 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_CHINESE_WHISPErS_ABSTRACT_Hh_ #ifdef DLIB_CHINESE_WHISPErS_ABSTRACT_Hh_ #include <vector> #include "../rand.h" #include "../graph_utils/ordered_sample_pair_abstract.h" #include "...
4,018
40.010204
91
h
self
self-master/lib/dlib/clustering/modularity_clustering_abstract.h
// Copyright (C) 2012 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_MODULARITY_ClUSTERING_ABSTRACT_Hh_ #ifdef DLIB_MODULARITY_ClUSTERING_ABSTRACT_Hh_ #include <vector> #include "../graph_utils/ordered_sample_pair_abstract.h" #include "../graph_ut...
6,193
48.15873
93
h
self
self-master/lib/dlib/clustering/modularity_clustering.h
// Copyright (C) 2012 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_MODULARITY_ClUSTERING__H__ #define DLIB_MODULARITY_ClUSTERING__H__ #include "modularity_clustering_abstract.h" #include "../sparse_vector.h" #include "../graph_utils/edge_list_g...
19,209
36.228682
119
h
self
self-master/lib/dlib/clustering/bottom_up_cluster_abstract.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_BOTTOM_uP_CLUSTER_ABSTRACT_Hh_ #ifdef DLIB_BOTTOM_uP_CLUSTER_ABSTRACT_Hh_ #include "../matrix.h" namespace dlib { // -----------------------------------------------------------...
1,979
37.076923
91
h
self
self-master/lib/dlib/clustering/spectral_cluster.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_SPECTRAL_CLUSTEr_H_ #define DLIB_SPECTRAL_CLUSTEr_H_ #include "spectral_cluster_abstract.h" #include <vector> #include "../matrix.h" #include "../svm/kkmeans.h" namespace dlib ...
2,776
33.283951
88
h
self
self-master/lib/dlib/clustering/spectral_cluster_abstract.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_SPECTRAL_CLUSTEr_ABSTRACT_H_ #ifdef DLIB_SPECTRAL_CLUSTEr_ABSTRACT_H_ #include <vector> namespace dlib { template < typename kernel_type, typename vector_typ...
1,690
37.431818
90
h
self
self-master/lib/dlib/clustering/bottom_up_cluster.h
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_BOTTOM_uP_CLUSTER_Hh_ #define DLIB_BOTTOM_uP_CLUSTER_Hh_ #include <queue> #include <map> #include "bottom_up_cluster_abstract.h" #include "../algs.h" #include "../matrix.h" #in...
4,507
31.431655
91
h