OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium 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 #include "net/tools/flip_server/balsa_frame.h" | 5 #include "net/tools/flip_server/balsa_frame.h" |
6 | 6 |
7 #include <assert.h> | 7 #include <assert.h> |
8 #include <emmintrin.h> | 8 #include <emmintrin.h> |
9 #include <strings.h> | 9 #include <strings.h> |
10 | 10 |
11 #include <limits> | 11 #include <limits> |
12 #include <iostream> | |
13 #include <string> | 12 #include <string> |
14 #include <utility> | 13 #include <utility> |
15 #include <vector> | 14 #include <vector> |
16 | 15 |
17 #include "base/logging.h" | 16 #include "base/logging.h" |
18 #include "base/port.h" | 17 #include "base/port.h" |
19 #include "base/string_piece.h" | 18 #include "base/string_piece.h" |
20 #include "net/tools/flip_server/balsa_enums.h" | 19 #include "net/tools/flip_server/balsa_enums.h" |
21 #include "net/tools/flip_server/balsa_headers.h" | 20 #include "net/tools/flip_server/balsa_headers.h" |
22 #include "net/tools/flip_server/balsa_visitor_interface.h" | 21 #include "net/tools/flip_server/balsa_visitor_interface.h" |
(...skipping 1542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1565 return current - input; | 1564 return current - input; |
1566 } | 1565 } |
1567 | 1566 |
1568 const uint32 BalsaFrame::kValidTerm1; | 1567 const uint32 BalsaFrame::kValidTerm1; |
1569 const uint32 BalsaFrame::kValidTerm1Mask; | 1568 const uint32 BalsaFrame::kValidTerm1Mask; |
1570 const uint32 BalsaFrame::kValidTerm2; | 1569 const uint32 BalsaFrame::kValidTerm2; |
1571 const uint32 BalsaFrame::kValidTerm2Mask; | 1570 const uint32 BalsaFrame::kValidTerm2Mask; |
1572 | 1571 |
1573 } // namespace net | 1572 } // namespace net |
1574 | 1573 |
OLD | NEW |