code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/***************************************************************************/ /* */ /* gxvmorx2.c */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/gxvmorx2.c
C
apache-2.0
11,439
/***************************************************************************/ /* */ /* gxvmorx4.c */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/gxvmorx4.c
C
apache-2.0
2,830
/***************************************************************************/ /* */ /* gxvmorx5.c */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/gxvmorx5.c
C
apache-2.0
8,426
/***************************************************************************/ /* */ /* gxvopbd.c */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/gxvopbd.c
C
apache-2.0
8,318
/***************************************************************************/ /* */ /* gxvprop.c */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/gxvprop.c
C
apache-2.0
11,315
/***************************************************************************/ /* */ /* gxvtrak.c */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/gxvtrak.c
C
apache-2.0
10,589
# # FreeType 2 gxvalid module definition # # Copyright 2004, 2005, 2006 # by suzuki toshiya, Masatake YAMATO, Red Hat K.K., # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project li...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/module.mk
Makefile
apache-2.0
717
# # FreeType 2 TrueTypeGX/AAT validation driver configuration rules # # Copyright 2004, 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the Fre...
YifuLiu/AliOS-Things
components/freetype/src/gxvalid/rules.mk
Makefile
apache-2.0
2,600
/* adler32.c -- compute the Adler-32 checksum of a data stream * Copyright (C) 1995-2002 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #include "zlib.h" #define BASE 65521L /* largest prime smaller than 65536 */ #define NMAX 5552 /* NMAX is the largest n su...
YifuLiu/AliOS-Things
components/freetype/src/gzip/adler32.c
C
apache-2.0
1,267
/***************************************************************************/ /* */ /* ftgzip.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/gzip/ftgzip.c
C
apache-2.0
19,846
/* infblock.c -- interpret and process block types to last block * Copyright (C) 1995-2002 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "infblock.h" #include "inftrees.h" #include "infcodes.h" #include "infutil.h" /* simplify the use of the inf...
YifuLiu/AliOS-Things
components/freetype/src/gzip/infblock.c
C
apache-2.0
12,162
/* infblock.h -- header to use infblock.c * Copyright (C) 1995-2002 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. Applicati...
YifuLiu/AliOS-Things
components/freetype/src/gzip/infblock.h
C
apache-2.0
1,051
/* infcodes.c -- process literals and length/distance pairs * Copyright (C) 1995-2002 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "inftrees.h" #include "infblock.h" #include "infcodes.h" #include "infutil.h" /* simplify the use of the inflate_h...
YifuLiu/AliOS-Things
components/freetype/src/gzip/infcodes.c
C
apache-2.0
7,646
/* infcodes.h -- header to use infcodes.c * Copyright (C) 1995-2002 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. Applicati...
YifuLiu/AliOS-Things
components/freetype/src/gzip/infcodes.h
C
apache-2.0
799
/* inffixed.h -- table for decoding fixed codes * Generated automatically by the maketree.c program */ /* WARNING: this file should *not* be used by applications. It is part of the implementation of the compression library and is subject to change. Applications should only use zlib.h. */ local const uInt fix...
YifuLiu/AliOS-Things
components/freetype/src/gzip/inffixed.h
C
apache-2.0
8,952
/* inflate.c -- zlib interface to inflate modules * Copyright (C) 1995-2002 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "infblock.h" #define DONE INFLATE_DONE #define BAD INFLATE_BAD typedef enum { METHOD, /* waiting for method by...
YifuLiu/AliOS-Things
components/freetype/src/gzip/inflate.c
C
apache-2.0
7,277
/* inftrees.c -- generate Huffman trees for efficient decoding * Copyright (C) 1995-2002 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "inftrees.h" #if !defined(BUILDFIXED) && !defined(STDC) # define BUILDFIXED /* non ANSI compilers may not ac...
YifuLiu/AliOS-Things
components/freetype/src/gzip/inftrees.c
C
apache-2.0
16,135
/* inftrees.h -- header to use inftrees.c * Copyright (C) 1995-2002 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. Applicati...
YifuLiu/AliOS-Things
components/freetype/src/gzip/inftrees.h
C
apache-2.0
2,682
/* inflate_util.c -- data and routines common to blocks and codes * Copyright (C) 1995-2002 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ #include "zutil.h" #include "infblock.h" #include "inftrees.h" #include "infcodes.h" #include "infutil.h" /* And'ing with mask[n] masks...
YifuLiu/AliOS-Things
components/freetype/src/gzip/infutil.c
C
apache-2.0
1,957
/* infutil.h -- types and macros common to blocks and codes * Copyright (C) 1995-2002 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...
YifuLiu/AliOS-Things
components/freetype/src/gzip/infutil.h
C
apache-2.0
3,638
# # FreeType 2 GZip support configuration rules # # Copyright 2002, 2003, 2013 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, ...
YifuLiu/AliOS-Things
components/freetype/src/gzip/rules.mk
Makefile
apache-2.0
2,018
/* zconf.h -- configuration of the zlib compression library * Copyright (C) 1995-2002 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, * c...
YifuLiu/AliOS-Things
components/freetype/src/gzip/zconf.h
C
apache-2.0
8,097
/* zlib.h -- interface of the 'zlib' general purpose compression library version 1.1.4, March 11th, 2002 Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising fr...
YifuLiu/AliOS-Things
components/freetype/src/gzip/zlib.h
C++
apache-2.0
37,304
/* zutil.c -- target dependent utility functions for the compression library * Copyright (C) 1995-2002 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #include "zutil.h" #ifndef STDC extern void exit OF((int)); #endif #ifndef HAVE_MEMCPY void zmemcp...
YifuLiu/AliOS-Things
components/freetype/src/gzip/zutil.c
C
apache-2.0
4,370
/* zutil.h -- internal interface and configuration of the compression library * Copyright (C) 1995-2002 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...
YifuLiu/AliOS-Things
components/freetype/src/gzip/zutil.h
C
apache-2.0
5,416
/***************************************************************************/ /* */ /* ftlzw.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/lzw/ftlzw.c
C
apache-2.0
10,870
/***************************************************************************/ /* */ /* ftzopen.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/lzw/ftzopen.c
C
apache-2.0
11,034
/***************************************************************************/ /* */ /* ftzopen.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/lzw/ftzopen.h
C
apache-2.0
5,941
# # FreeType 2 LZW support configuration rules # # Copyright 2004, 2005, 2006 by # Albert Chin-A-Young. # # Based on src/lzw/rules.mk, Copyright 2002 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms ...
YifuLiu/AliOS-Things
components/freetype/src/lzw/rules.mk
Makefile
apache-2.0
1,552
# # FreeType 2 otvalid module definition # # Copyright 2004, 2006 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or di...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/module.mk
Makefile
apache-2.0
653
/***************************************************************************/ /* */ /* otvalid.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvalid.c
C
apache-2.0
1,489
/***************************************************************************/ /* */ /* otvalid.h */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvalid.h
C
apache-2.0
2,832
/***************************************************************************/ /* */ /* otvbase.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvbase.c
C
apache-2.0
8,196
/***************************************************************************/ /* */ /* otvcommn.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvcommn.c
C
apache-2.0
28,026
/***************************************************************************/ /* */ /* otvcommn.h */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvcommn.h
C
apache-2.0
18,027
/***************************************************************************/ /* */ /* otverror.h */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otverror.h
C
apache-2.0
1,977
/***************************************************************************/ /* */ /* otvgdef.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvgdef.c
C
apache-2.0
7,654
/***************************************************************************/ /* */ /* otvgpos.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvgpos.c
C
apache-2.0
29,754
/***************************************************************************/ /* */ /* otvgpos.h */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvgpos.h
C
apache-2.0
1,495
/***************************************************************************/ /* */ /* otvgsub.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvgsub.c
C
apache-2.0
18,031
/***************************************************************************/ /* */ /* otvjstf.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvjstf.c
C
apache-2.0
7,956
/***************************************************************************/ /* */ /* otvmath.c */ /* */ /* Op...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvmath.c
C
apache-2.0
14,589
/***************************************************************************/ /* */ /* otvmod.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvmod.c
C
apache-2.0
7,986
/***************************************************************************/ /* */ /* otvmod.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/otvmod.h
C
apache-2.0
1,632
# # FreeType 2 OpenType validation driver configuration rules # # Copyright 2004, 2007 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing ...
YifuLiu/AliOS-Things
components/freetype/src/otvalid/rules.mk
Makefile
apache-2.0
1,926
# # FreeType 2 PCF module definition # # Copyright 2000, 2006 by # Francesco Zappa Nardelli # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitatio...
YifuLiu/AliOS-Things
components/freetype/src/pcf/module.mk
Makefile
apache-2.0
1,366
/* pcf.c FreeType font driver for pcf fonts Copyright 2000-2001, 2003 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without ...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcf.c
C
apache-2.0
1,275
/* pcf.h FreeType font driver for pcf fonts Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restrictio...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcf.h
C
apache-2.0
6,092
/* pcfdrivr.c FreeType font driver for pcf files Copyright (C) 2000-2004, 2006-2011, 2013 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restric...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcfdrivr.c
C
apache-2.0
17,860
/* pcfdrivr.h FreeType font driver for pcf fonts Copyright 2000-2001, 2002 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including wit...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcfdrivr.h
C
apache-2.0
1,463
/***************************************************************************/ /* */ /* pcferror.h */ /* */ /* PC...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcferror.h
C
apache-2.0
1,895
/* pcfread.c FreeType font driver for pcf fonts Copyright 2000-2010, 2012, 2013 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, includin...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcfread.c
C
apache-2.0
33,703
/* pcfread.h FreeType font driver for pcf fonts Copyright 2003 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitat...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcfread.h
C
apache-2.0
1,392
/* Copyright 1990, 1994, 1998 The Open Group Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in ...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcfutil.c
C
apache-2.0
2,596
/* pcfutil.h FreeType font driver for pcf fonts Copyright 2000, 2001, 2004 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including wit...
YifuLiu/AliOS-Things
components/freetype/src/pcf/pcfutil.h
C
apache-2.0
1,612
# # FreeType 2 pcf driver configuration rules # # Copyright (C) 2000, 2001, 2003, 2008 by # Francesco Zappa Nardelli # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, i...
YifuLiu/AliOS-Things
components/freetype/src/pcf/rules.mk
Makefile
apache-2.0
2,322
# # FreeType 2 PFR module definition # # Copyright 2002, 2006 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or distri...
YifuLiu/AliOS-Things
components/freetype/src/pfr/module.mk
Makefile
apache-2.0
661
/***************************************************************************/ /* */ /* pfr.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfr.c
C
apache-2.0
1,449
/***************************************************************************/ /* */ /* pfrcmap.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrcmap.c
C
apache-2.0
4,182
/***************************************************************************/ /* */ /* pfrcmap.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrcmap.h
C
apache-2.0
1,647
/***************************************************************************/ /* */ /* pfrdrivr.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrdrivr.c
C
apache-2.0
5,558
/***************************************************************************/ /* */ /* pfrdrivr.h */ /* */ /* Hi...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrdrivr.h
C
apache-2.0
1,573
/***************************************************************************/ /* */ /* pfrerror.h */ /* */ /* PF...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrerror.h
C
apache-2.0
1,895
/***************************************************************************/ /* */ /* pfrgload.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrgload.c
C
apache-2.0
22,763
/***************************************************************************/ /* */ /* pfrgload.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrgload.h
C
apache-2.0
1,771
/***************************************************************************/ /* */ /* pfrload.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrload.c
C
apache-2.0
25,606
/***************************************************************************/ /* */ /* pfrload.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrload.h
C
apache-2.0
3,870
/***************************************************************************/ /* */ /* pfrobjs.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrobjs.c
C
apache-2.0
17,871
/***************************************************************************/ /* */ /* pfrobjs.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrobjs.h
C
apache-2.0
2,846
/***************************************************************************/ /* */ /* pfrsbit.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrsbit.c
C
apache-2.0
18,430
/***************************************************************************/ /* */ /* pfrsbit.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrsbit.h
C
apache-2.0
1,543
/***************************************************************************/ /* */ /* pfrtypes.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pfr/pfrtypes.h
C
apache-2.0
8,925
# # FreeType 2 PFR driver configuration rules # # Copyright 2002, 2003 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, ...
YifuLiu/AliOS-Things
components/freetype/src/pfr/rules.mk
Makefile
apache-2.0
1,728
/***************************************************************************/ /* */ /* afmparse.c */ /* */ /* AF...
YifuLiu/AliOS-Things
components/freetype/src/psaux/afmparse.c
C
apache-2.0
22,589
/***************************************************************************/ /* */ /* afmparse.h */ /* */ /* AF...
YifuLiu/AliOS-Things
components/freetype/src/psaux/afmparse.h
C
apache-2.0
2,556
# # FreeType 2 PSaux module definition # # Copyright 1996-2000, 2006 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or...
YifuLiu/AliOS-Things
components/freetype/src/psaux/module.mk
Makefile
apache-2.0
668
/***************************************************************************/ /* */ /* psaux.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psaux.c
C
apache-2.0
1,489
/***************************************************************************/ /* */ /* psauxerr.h */ /* */ /* PS...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psauxerr.h
C
apache-2.0
1,977
/***************************************************************************/ /* */ /* psauxmod.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psauxmod.c
C
apache-2.0
3,444
/***************************************************************************/ /* */ /* psauxmod.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psauxmod.h
C
apache-2.0
1,562
/***************************************************************************/ /* */ /* psconv.c */ /* */ /* So...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psconv.c
C
apache-2.0
12,307
/***************************************************************************/ /* */ /* psconv.h */ /* */ /* So...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psconv.h
C
apache-2.0
2,434
/***************************************************************************/ /* */ /* psobjs.c */ /* */ /* Au...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psobjs.c
C
apache-2.0
49,844
/***************************************************************************/ /* */ /* psobjs.h */ /* */ /* Au...
YifuLiu/AliOS-Things
components/freetype/src/psaux/psobjs.h
C
apache-2.0
7,461
# # FreeType 2 PSaux driver configuration rules # # Copyright 1996-2000, 2002, 2003, 2006 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continui...
YifuLiu/AliOS-Things
components/freetype/src/psaux/rules.mk
Makefile
apache-2.0
1,828
/***************************************************************************/ /* */ /* t1cmap.c */ /* */ /* Ty...
YifuLiu/AliOS-Things
components/freetype/src/psaux/t1cmap.c
C
apache-2.0
9,913
/***************************************************************************/ /* */ /* t1cmap.h */ /* */ /* Ty...
YifuLiu/AliOS-Things
components/freetype/src/psaux/t1cmap.h
C
apache-2.0
4,004
/***************************************************************************/ /* */ /* t1decode.c */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/psaux/t1decode.c
C
apache-2.0
51,012
/***************************************************************************/ /* */ /* t1decode.h */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/psaux/t1decode.h
C
apache-2.0
2,368
# # FreeType 2 PSHinter module definition # # Copyright 1996-2001, 2006 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify,...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/module.mk
Makefile
apache-2.0
664
/***************************************************************************/ /* */ /* pshalgo.c */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshalgo.c
C
apache-2.0
61,747
/***************************************************************************/ /* */ /* pshalgo.h */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshalgo.h
C
apache-2.0
7,634
/***************************************************************************/ /* */ /* pshglob.c */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshglob.c
C
apache-2.0
23,075
/***************************************************************************/ /* */ /* pshglob.h */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshglob.h
C
apache-2.0
6,404
/***************************************************************************/ /* */ /* pshinter.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshinter.c
C
apache-2.0
1,424
/***************************************************************************/ /* */ /* pshmod.c */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshmod.c
C
apache-2.0
3,521
/***************************************************************************/ /* */ /* pshmod.h */ /* */ /* Po...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshmod.h
C
apache-2.0
1,458
/***************************************************************************/ /* */ /* pshnterr.h */ /* */ /* PS...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshnterr.h
C
apache-2.0
1,900
/***************************************************************************/ /* */ /* pshpic.c */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshpic.c
C
apache-2.0
2,748
/***************************************************************************/ /* */ /* pshpic.h */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/src/pshinter/pshpic.h
C
apache-2.0
2,023