#include "inttypes.h"
Go to the source code of this file.
◆ FT_BEGIN_HEADER
◆ FT_END_HEADER
◆ FT_LOCAL_DEF
◆ FT_MAKE_TAG
#define FT_MAKE_TAG |
( |
|
_x1, |
|
|
|
_x2, |
|
|
|
_x3, |
|
|
|
_x4 |
|
) |
| |
◆ FT_Alloc_Func
◆ FT_Byte
◆ FT_Error
◆ FT_F26Dot6
◆ FT_Free_Func
◆ FT_Int
◆ FT_Int64
◆ FT_Long
◆ FT_Memory
◆ FT_MemoryRec
◆ FT_Realloc_Func
◆ FT_UInt
◆ FT_ULong
◆ FT_MulDiv()
Definition at line 99 of file ftmisc.h.
102 {
105
106
108 if (
a < 0 ) {
a = -
a;
s = -1; }
109 if (
b < 0 ) {
b = -
b;
s = -
s; }
110 if (
c < 0 ) {
c = -
c;
s = -
s; }
111
113 : 0x7FFFFFFFL );
114
115 return (
s > 0 ) ?
d : -
d;
116 }
GLboolean GLboolean GLboolean b
GLboolean GLboolean GLboolean GLboolean a
◆ FT_MulDiv_No_Round()
Definition at line 120 of file ftmisc.h.
123 {
126
127
129 if (
a < 0 ) {
a = -
a;
s = -1; }
130 if (
b < 0 ) {
b = -
b;
s = -
s; }
131 if (
c < 0 ) {
c = -
c;
s = -
s; }
132
134 : 0x7FFFFFFFL );
135
136 return (
s > 0 ) ?
d : -
d;
137 }