Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: Source/wtf/dtoa.cpp

Issue 14810003: Move CPU() macro to it's own header from wtf/Platform.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move CPU() macro to it's own header from wtf/Platform.h Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/wtf/StdLibExtras.h ('k') | Source/wtf/dtoa/utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /**************************************************************** 1 /****************************************************************
2 * 2 *
3 * The author of this software is David M. Gay. 3 * The author of this software is David M. Gay.
4 * 4 *
5 * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. 5 * Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
6 * Copyright (C) 2002, 2005, 2006, 2007, 2008, 2010, 2012 Apple Inc. All rights reserved. 6 * Copyright (C) 2002, 2005, 2006, 2007, 2008, 2010, 2012 Apple Inc. All rights reserved.
7 * 7 *
8 * Permission to use, copy, modify, and distribute this software for any 8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose without fee is hereby granted, provided that this entire notice 9 * purpose without fee is hereby granted, provided that this entire notice
10 * is included in all copies of any software which is or includes a copy 10 * is included in all copies of any software which is or includes a copy
(...skipping 17 matching lines...) Expand all
28 * _control87(PC_53, MCW_PC); 28 * _control87(PC_53, MCW_PC);
29 * does this with many compilers. Whether this or another call is 29 * does this with many compilers. Whether this or another call is
30 * appropriate depends on the compiler; for this to work, it may be 30 * appropriate depends on the compiler; for this to work, it may be
31 * necessary to #include "float.h" or another system-dependent header 31 * necessary to #include "float.h" or another system-dependent header
32 * file. 32 * file.
33 */ 33 */
34 34
35 #include "config.h" 35 #include "config.h"
36 #include "dtoa.h" 36 #include "dtoa.h"
37 37
38 #include "wtf/CPU.h"
39 #include "wtf/MathExtras.h"
40 #include "wtf/Threading.h"
41 #include "wtf/Vector.h"
38 #include <stdio.h> 42 #include <stdio.h>
39 #include <wtf/MathExtras.h>
40 #include <wtf/Threading.h>
41 #include <wtf/Vector.h>
42 43
43 #if COMPILER(MSVC) 44 #if COMPILER(MSVC)
44 #pragma warning(disable: 4244) 45 #pragma warning(disable: 4244)
45 #pragma warning(disable: 4245) 46 #pragma warning(disable: 4245)
46 #pragma warning(disable: 4554) 47 #pragma warning(disable: 4554)
47 #endif 48 #endif
48 49
49 namespace WTF { 50 namespace WTF {
50 51
51 Mutex* s_dtoaP5Mutex; 52 Mutex* s_dtoaP5Mutex;
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 { 1305 {
1305 Vector<LChar> conversionBuffer(length); 1306 Vector<LChar> conversionBuffer(length);
1306 for (size_t i = 0; i < length; ++i) 1307 for (size_t i = 0; i < length; ++i)
1307 conversionBuffer[i] = isASCII(string[i]) ? string[i] : 0; 1308 conversionBuffer[i] = isASCII(string[i]) ? string[i] : 0;
1308 return parseDouble(conversionBuffer.data(), length, parsedLength); 1309 return parseDouble(conversionBuffer.data(), length, parsedLength);
1309 } 1310 }
1310 1311
1311 } // namespace Internal 1312 } // namespace Internal
1312 1313
1313 } // namespace WTF 1314 } // namespace WTF
OLDNEW
« no previous file with comments | « Source/wtf/StdLibExtras.h ('k') | Source/wtf/dtoa/utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698