code stringlengths 0 56.1M | repo_name stringlengths 3 57 | path stringlengths 2 176 | language stringclasses 672
values | license stringclasses 8
values | size int64 0 56.8M |
|---|---|---|---|---|---|
/****************************************************************************
*
* ftgzip.c
*
* FreeType support for .gz compressed files.
*
* This optional component relies on zlib. It should mainly be used to
* parse compressed PCF fonts, as found with many X11 server
* distributions.
*
* Copyright (C) 20... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/ftgzip.c | C++ | gpl-3.0 | 20,817 |
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler
* 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 functi... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/ftzconf.h | C++ | gpl-3.0 | 16,298 |
/* gzguts.h -- zlib internal header definitions for gz* operations
* Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#ifdef _LARGEFILE64_SOURCE
# ifndef _LARGEFILE_SOURCE
# define _LARGEFILE_SOURCE 1
# endif
# ifdef ... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/gzguts.h | C++ | gpl-3.0 | 6,819 |
/* infback.c -- inflate using a call-back interface
* Copyright (C) 1995-2016 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/infback.c | C++ | gpl-3.0 | 22,672 |
/* inffast.c -- fast decoding
* Copyright (C) 1995-2017 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"
#ifdef ASMINF
# pragma message("Assembler code may have bugs -- use at your own risk")
#... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inffast.c | C++ | gpl-3.0 | 12,913 |
/* inffast.h -- header to use inffast.c
* Copyright (C) 1995-2003, 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. Appli... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inffast.h | C++ | gpl-3.0 | 427 |
/* 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inffixed.h | C++ | gpl-3.0 | 6,332 |
/* inflate.c -- zlib decompression
* Copyright (C) 1995-2016 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/*
* Change history:
*
* 1.2.beta0 24 Nov 2002
* - First version -- complete rewrite of inflate to simplify code, avoid
* creation of window when not needed, ... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inflate.c | C++ | gpl-3.0 | 54,884 |
/* inflate.h -- internal inflate state definition
* Copyright (C) 1995-2016 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#ifndef INFLATE_H
#define INFLATE_H
/* WARNING: this file should *not* be used by applications. It is
part of the implementation of the compression l... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inflate.h | C++ | gpl-3.0 | 6,680 |
/* inftrees.c -- generate Huffman trees for efficient decoding
* Copyright (C) 1995-2017 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.11 Copyright 1995-2017 Mark ... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inftrees.c | C++ | gpl-3.0 | 12,986 |
/* 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
*/
#ifndef INFTREES_H
#define INFTREES_H
/* WARNING: this file should *not* be used by applications. It is
part of the implementation of the compression l... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/inftrees.h | C++ | gpl-3.0 | 2,994 |
[zlib] Fix zlib sources for compilation with FreeType
We must ensure that they do not issue compiler errors or warnings when they
are compiled as part of `src/gzip/ftgzip.c`.
* src/gzip/adler32.c: Do not define unused functions when `Z_FREETYPE`
is set.
* src/gzip/crc32.c (DO1, DO8): Undefine. Already defined in `a... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/patches/freetype-zlib.diff | diff | gpl-3.0 | 11,935 |
#
# FreeType 2 GZip support configuration rules
#
# Copyright (C) 2002-2022 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, mod... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/rules.mk | mk | gpl-3.0 | 2,272 |
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.2.11, January 15th, 2017
Copyright (C) 1995-2017 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/zlib.h | C++ | gpl-3.0 | 96,874 |
/* zutil.c -- target dependent utility functions for the compression library
* Copyright (C) 1995-2017 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
z_const char * const z_errmsg[10] = {
... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/zutil.c | C++ | gpl-3.0 | 7,226 |
/* zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-2016 Jean-loup Gailly, 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 comp... | whupdup/frame | real/third_party/freetype-2.12.0/src/gzip/zutil.h | C++ | gpl-3.0 | 7,213 |
/****************************************************************************
*
* ftlzw.c
*
* FreeType support for .Z compressed files.
*
* This optional component relies on NetBSD's zopen(). It should mainly
* be used to parse compressed PCF fonts, as found with many X11 server
* distributions.
*
* Copyri... | whupdup/frame | real/third_party/freetype-2.12.0/src/lzw/ftlzw.c | C++ | gpl-3.0 | 9,899 |
/****************************************************************************
*
* ftzopen.c
*
* FreeType support for .Z compressed files.
*
* This optional component relies on NetBSD's zopen(). It should mainly
* be used to parse compressed PCF fonts, as found with many X11 server
* distributions.
*
* Copy... | whupdup/frame | real/third_party/freetype-2.12.0/src/lzw/ftzopen.c | C++ | gpl-3.0 | 10,579 |
/****************************************************************************
*
* ftzopen.h
*
* FreeType support for .Z compressed files.
*
* This optional component relies on NetBSD's zopen(). It should mainly
* be used to parse compressed PCF fonts, as found with many X11 server
* distributions.
*
* Copy... | whupdup/frame | real/third_party/freetype-2.12.0/src/lzw/ftzopen.h | C++ | gpl-3.0 | 5,099 |
#
# FreeType 2 LZW support configuration rules
#
# Copyright (C) 2004-2022 by
# Albert Chin-A-Young.
#
# based on `src/lzw/rules.mk'
#
# 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, m... | whupdup/frame | real/third_party/freetype-2.12.0/src/lzw/rules.mk | mk | gpl-3.0 | 1,634 |
#
# FreeType 2 otvalid module definition
#
# Copyright (C) 2004-2022 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/module.mk | mk | gpl-3.0 | 656 |
/****************************************************************************
*
* otvalid.c
*
* FreeType validator for OpenType tables (body only).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modifi... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvalid.c | C++ | gpl-3.0 | 773 |
/****************************************************************************
*
* otvalid.h
*
* OpenType table validation (specification only).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, ... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvalid.h | C++ | gpl-3.0 | 2,127 |
/****************************************************************************
*
* otvbase.c
*
* OpenType BASE table validation (body).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvbase.c | C++ | gpl-3.0 | 7,882 |
/****************************************************************************
*
* otvcommn.c
*
* OpenType common tables validation (body).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and d... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvcommn.c | C++ | gpl-3.0 | 27,533 |
/****************************************************************************
*
* otvcommn.h
*
* OpenType common tables validation (specification).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modifi... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvcommn.h | C++ | gpl-3.0 | 19,343 |
/****************************************************************************
*
* otverror.h
*
* OpenType validation module error codes (specification only).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otverror.h | C++ | gpl-3.0 | 1,017 |
/****************************************************************************
*
* otvgdef.c
*
* OpenType GDEF table validation (body).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvgdef.c | C++ | gpl-3.0 | 8,882 |
/****************************************************************************
*
* otvgpos.c
*
* OpenType GPOS table validation (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvgpos.c | C++ | gpl-3.0 | 29,663 |
/****************************************************************************
*
* otvgpos.h
*
* OpenType GPOS table validator (specification).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, a... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvgpos.h | C++ | gpl-3.0 | 786 |
/****************************************************************************
*
* otvgsub.c
*
* OpenType GSUB table validation (body).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvgsub.c | C++ | gpl-3.0 | 17,952 |
/****************************************************************************
*
* otvjstf.c
*
* OpenType JSTF table validation (body).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvjstf.c | C++ | gpl-3.0 | 7,126 |
/****************************************************************************
*
* otvmath.c
*
* OpenType MATH table validation (body).
*
* Copyright (C) 2007-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by George Williams.
*
* This file is part of the FreeType project, and may on... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvmath.c | C++ | gpl-3.0 | 13,656 |
/****************************************************************************
*
* otvmod.c
*
* FreeType's OpenType validation module implementation (body).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvmod.c | C++ | gpl-3.0 | 7,207 |
/****************************************************************************
*
* otvmod.h
*
* FreeType's OpenType validation module implementation
* (specification).
*
* Copyright (C) 2004-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may o... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/otvmod.h | C++ | gpl-3.0 | 778 |
#
# FreeType 2 OpenType validation driver configuration rules
#
# Copyright (C) 2004-2022 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/otvalid/rules.mk | mk | gpl-3.0 | 2,083 |
FreeType font driver for PCF fonts
Francesco Zappa Nardelli
<francesco.zappa.nardelli@ens.fr>
Introduction
************
PCF (Portable Compiled Format) is a binary bitmap font format, largely used
in X world. This code implements a PCF driver for the FreeTyp... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/README | none | gpl-3.0 | 3,311 |
#
# 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/module.mk | mk | gpl-3.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 ... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcf.c | C++ | gpl-3.0 | 1,253 |
/* 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcf.h | C++ | gpl-3.0 | 6,373 |
/* pcfdrivr.c
FreeType font driver for pcf files
Copyright (C) 2000-2004, 2006-2011, 2013, 2014 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 r... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcfdrivr.c | C++ | gpl-3.0 | 22,216 |
/* 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcfdrivr.h | C++ | gpl-3.0 | 1,358 |
/****************************************************************************
*
* pcferror.h
*
* PCF error codes (specification only).
*
* Copyright 2001, 2012 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distribu... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcferror.h | C++ | gpl-3.0 | 959 |
/* pcfread.c
FreeType font driver for pcf fonts
Copyright 2000-2010, 2012-2014 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcfread.c | C++ | gpl-3.0 | 50,270 |
/* 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcfread.h | C++ | gpl-3.0 | 1,361 |
/*
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 ... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcfutil.c | C++ | gpl-3.0 | 2,571 |
/* 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/pcfutil.h | C++ | gpl-3.0 | 1,649 |
#
# 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pcf/rules.mk | mk | gpl-3.0 | 2,476 |
#
# FreeType 2 PFR module definition
#
# Copyright (C) 2002-2022 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 dis... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/module.mk | mk | gpl-3.0 | 664 |
/****************************************************************************
*
* pfr.c
*
* FreeType PFR driver component.
*
* Copyright (C) 2002-2022 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... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfr.c | C++ | gpl-3.0 | 708 |
/****************************************************************************
*
* pfrcmap.c
*
* FreeType PFR cmap handling (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distribut... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrcmap.c | C++ | gpl-3.0 | 3,899 |
/****************************************************************************
*
* pfrcmap.h
*
* FreeType PFR cmap handling (specification).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and ... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrcmap.h | C++ | gpl-3.0 | 920 |
/****************************************************************************
*
* pfrdrivr.c
*
* FreeType PFR driver interface (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrdrivr.c | C++ | gpl-3.0 | 5,594 |
/****************************************************************************
*
* pfrdrivr.h
*
* High-level Type PFR driver interface (specification).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* mod... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrdrivr.h | C++ | gpl-3.0 | 773 |
/****************************************************************************
*
* pfrerror.h
*
* PFR error codes (specification only).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distr... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrerror.h | C++ | gpl-3.0 | 962 |
/****************************************************************************
*
* pfrgload.c
*
* FreeType PFR glyph loader (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distribut... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrgload.c | C++ | gpl-3.0 | 22,000 |
/****************************************************************************
*
* pfrgload.h
*
* FreeType PFR glyph loader (specification).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and ... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrgload.h | C++ | gpl-3.0 | 1,059 |
/****************************************************************************
*
* pfrload.c
*
* FreeType PFR loader (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed unde... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrload.c | C++ | gpl-3.0 | 28,516 |
/****************************************************************************
*
* pfrload.h
*
* FreeType PFR loader (specification).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distrib... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrload.h | C++ | gpl-3.0 | 3,425 |
/****************************************************************************
*
* pfrobjs.c
*
* FreeType PFR object methods (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distribu... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrobjs.c | C++ | gpl-3.0 | 17,465 |
/****************************************************************************
*
* pfrobjs.h
*
* FreeType PFR object methods (specification).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrobjs.h | C++ | gpl-3.0 | 2,135 |
/****************************************************************************
*
* pfrsbit.c
*
* FreeType PFR bitmap loader (body).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distribut... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrsbit.c | C++ | gpl-3.0 | 21,228 |
/****************************************************************************
*
* pfrsbit.h
*
* FreeType PFR bitmap loader (specification).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and ... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrsbit.h | C++ | gpl-3.0 | 878 |
/****************************************************************************
*
* pfrtypes.h
*
* FreeType PFR data structures (specification only).
*
* Copyright (C) 2002-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modifi... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/pfrtypes.h | C++ | gpl-3.0 | 8,090 |
#
# FreeType 2 PFR driver configuration rules
#
# Copyright (C) 2002-2022 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, modif... | whupdup/frame | real/third_party/freetype-2.12.0/src/pfr/rules.mk | mk | gpl-3.0 | 1,885 |
/****************************************************************************
*
* afmparse.c
*
* AFM parser (body).
*
* Copyright (C) 2006-2022 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 te... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/afmparse.c | C++ | gpl-3.0 | 25,299 |
/****************************************************************************
*
* afmparse.h
*
* AFM parser (specification).
*
* Copyright (C) 2006-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed und... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/afmparse.h | C++ | gpl-3.0 | 1,825 |
/****************************************************************************
*
* cffdecode.c
*
* PostScript CFF (Type 2) decoding routines (body).
*
* Copyright (C) 2017-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modifi... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/cffdecode.c | C++ | gpl-3.0 | 68,655 |
/****************************************************************************
*
* cffdecode.h
*
* PostScript CFF (Type 2) decoding routines (specification).
*
* Copyright (C) 2017-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/cffdecode.h | C++ | gpl-3.0 | 1,825 |
#
# FreeType 2 PSaux module definition
#
# Copyright (C) 1996-2022 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 d... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/module.mk | mk | gpl-3.0 | 666 |
/****************************************************************************
*
* psarrst.c
*
* Adobe's code for Array Stacks (body).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright notic... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psarrst.c | C++ | gpl-3.0 | 6,515 |
/****************************************************************************
*
* psarrst.h
*
* Adobe's code for Array Stacks (specification).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyri... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psarrst.h | C++ | gpl-3.0 | 3,476 |
/****************************************************************************
*
* psaux.c
*
* FreeType auxiliary PostScript driver component (body only).
*
* Copyright (C) 1996-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* ... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psaux.c | C++ | gpl-3.0 | 945 |
/****************************************************************************
*
* psauxerr.h
*
* PS auxiliary module error codes (specification only).
*
* Copyright (C) 2001-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* mod... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psauxerr.h | C++ | gpl-3.0 | 1,003 |
/****************************************************************************
*
* psauxmod.c
*
* FreeType auxiliary PostScript module implementation (body).
*
* Copyright (C) 2000-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psauxmod.c | C++ | gpl-3.0 | 4,847 |
/****************************************************************************
*
* psauxmod.h
*
* FreeType auxiliary PostScript module implementation (specification).
*
* Copyright (C) 2000-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only ... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psauxmod.h | C++ | gpl-3.0 | 1,247 |
/****************************************************************************
*
* psblues.c
*
* Adobe's code for handling Blue Zones (body).
*
* Copyright 2009-2014 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyrigh... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psblues.c | C++ | gpl-3.0 | 19,898 |
/****************************************************************************
*
* psblues.h
*
* Adobe's code for handling Blue Zones (specification).
*
* Copyright 2009-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psblues.h | C++ | gpl-3.0 | 5,995 |
/****************************************************************************
*
* psconv.c
*
* Some convenience conversions (body).
*
* Copyright (C) 2006-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distribu... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psconv.c | C++ | gpl-3.0 | 11,641 |
/****************************************************************************
*
* psconv.h
*
* Some convenience conversions (specification).
*
* Copyright (C) 2006-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, and... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psconv.h | C++ | gpl-3.0 | 1,700 |
/****************************************************************************
*
* pserror.c
*
* Adobe's code for error handling (body).
*
* Copyright 2006-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright not... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/pserror.c | C++ | gpl-3.0 | 2,089 |
/****************************************************************************
*
* pserror.h
*
* Adobe's code for error handling (specification).
*
* Copyright 2006-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copy... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/pserror.h | C++ | gpl-3.0 | 4,024 |
/****************************************************************************
*
* psfixed.h
*
* Adobe's code for Fixed Point Mathematics (specification only).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicat... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psfixed.h | C++ | gpl-3.0 | 3,743 |
/****************************************************************************
*
* psfont.c
*
* Adobe's code for font instances (body).
*
* Copyright 2007-2014 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright noti... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psfont.c | C++ | gpl-3.0 | 19,883 |
/****************************************************************************
*
* psfont.h
*
* Adobe's code for font instances (specification).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyr... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psfont.h | C++ | gpl-3.0 | 5,402 |
/****************************************************************************
*
* psft.c
*
* FreeType Glue Component to Adobe's Interpreter (body).
*
* Copyright 2013-2014 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the c... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psft.c | C++ | gpl-3.0 | 25,675 |
/****************************************************************************
*
* psft.h
*
* FreeType Glue Component to Adobe's Interpreter (specification).
*
* Copyright 2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by t... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psft.h | C++ | gpl-3.0 | 5,394 |
/****************************************************************************
*
* psglue.h
*
* Adobe's code for shared stuff (specification only).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the co... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psglue.h | C++ | gpl-3.0 | 4,501 |
/****************************************************************************
*
* pshints.c
*
* Adobe's code for handling CFF hints (body).
*
* Copyright 2007-2014 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/pshints.c | C++ | gpl-3.0 | 66,008 |
/****************************************************************************
*
* pshints.h
*
* Adobe's code for handling CFF hints (body).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/pshints.h | C++ | gpl-3.0 | 9,869 |
/****************************************************************************
*
* psintrp.c
*
* Adobe's CFF Interpreter (body).
*
* Copyright 2007-2014 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright notice(s) i... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psintrp.c | C++ | gpl-3.0 | 105,884 |
/****************************************************************************
*
* psintrp.h
*
* Adobe's CFF Interpreter (specification).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright no... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psintrp.h | C++ | gpl-3.0 | 3,074 |
/****************************************************************************
*
* psobjs.c
*
* Auxiliary functions for PostScript fonts (body).
*
* Copyright (C) 1996-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* modified, ... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psobjs.c | C++ | gpl-3.0 | 66,509 |
/****************************************************************************
*
* psobjs.h
*
* Auxiliary functions for PostScript fonts (specification).
*
* Copyright (C) 1996-2022 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used,
* m... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psobjs.h | C++ | gpl-3.0 | 10,283 |
/****************************************************************************
*
* psread.c
*
* Adobe's code for stream handling (body).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyright not... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psread.c | C++ | gpl-3.0 | 3,522 |
/****************************************************************************
*
* psread.h
*
* Adobe's code for stream handling (specification).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copy... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psread.h | C++ | gpl-3.0 | 2,299 |
/****************************************************************************
*
* psstack.c
*
* Adobe's code for emulating a CFF stack (body).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by the copyri... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psstack.c | C++ | gpl-3.0 | 9,233 |
/****************************************************************************
*
* psstack.h
*
* Adobe's code for emulating a CFF stack (specification).
*
* Copyright 2007-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated by t... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/psstack.h | C++ | gpl-3.0 | 3,695 |
/****************************************************************************
*
* pstypes.h
*
* Adobe's code for defining data types (specification only).
*
* Copyright 2011-2013 Adobe Systems Incorporated.
*
* This software, and all works of authorship, whether in source or
* object code form as indicated b... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/pstypes.h | C++ | gpl-3.0 | 2,674 |
#
# FreeType 2 PSaux driver configuration rules
#
# Copyright (C) 1996-2022 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, mod... | whupdup/frame | real/third_party/freetype-2.12.0/src/psaux/rules.mk | mk | gpl-3.0 | 2,520 |