OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "core/fxcodec/fx_codec.h" | 11 #include "core/fxcodec/fx_codec.h" |
12 #include "core/fxcrt/include/fx_safe_types.h" | 12 #include "core/fxcrt/fx_safe_types.h" |
13 #include "core/fxge/ge/fx_text_int.h" | 13 #include "core/fxge/ge/fx_text_int.h" |
14 #include "core/fxge/include/cfx_pathdata.h" | 14 #include "core/fxge/include/cfx_pathdata.h" |
15 #include "core/fxge/include/fx_freetype.h" | 15 #include "core/fxge/include/fx_freetype.h" |
16 #include "core/fxge/include/ifx_renderdevicedriver.h" | 16 #include "core/fxge/include/ifx_renderdevicedriver.h" |
17 | 17 |
18 namespace { | 18 namespace { |
19 | 19 |
20 void ResetTransform(FT_Face face) { | 20 void ResetTransform(FT_Face face) { |
21 FXFT_Matrix matrix; | 21 FXFT_Matrix matrix; |
22 matrix.xx = 0x10000L; | 22 matrix.xx = 0x10000L; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 void _CFX_UniqueKeyGen::Generate(int count, ...) { | 107 void _CFX_UniqueKeyGen::Generate(int count, ...) { |
108 va_list argList; | 108 va_list argList; |
109 va_start(argList, count); | 109 va_start(argList, count); |
110 for (int i = 0; i < count; i++) { | 110 for (int i = 0; i < count; i++) { |
111 int p = va_arg(argList, int); | 111 int p = va_arg(argList, int); |
112 ((uint32_t*)m_Key)[i] = p; | 112 ((uint32_t*)m_Key)[i] = p; |
113 } | 113 } |
114 va_end(argList); | 114 va_end(argList); |
115 m_KeyLen = count * sizeof(uint32_t); | 115 m_KeyLen = count * sizeof(uint32_t); |
116 } | 116 } |
OLD | NEW |