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

Side by Side Diff: src/liblzma/simple/powerpc.c

Issue 7109015: Update XZ Utils to 5.0.3 (in deps) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 9 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « src/liblzma/simple/ia64.c ('k') | src/liblzma/simple/simple_coder.c » ('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 /// \file powerpc.c 3 /// \file powerpc.c
4 /// \brief Filter for PowerPC (big endian) binaries 4 /// \brief Filter for PowerPC (big endian) binaries
5 /// 5 ///
6 // Authors: Igor Pavlov 6 // Authors: Igor Pavlov
7 // Lasse Collin 7 // Lasse Collin
8 // 8 //
9 // This file has been put into the public domain. 9 // This file has been put into the public domain.
10 // You can do whatever you want with this file. 10 // You can do whatever you want with this file.
11 // 11 //
12 /////////////////////////////////////////////////////////////////////////////// 12 ///////////////////////////////////////////////////////////////////////////////
13 13
14 #include "simple_private.h" 14 #include "simple_private.h"
15 15
16 16
17 static size_t 17 static size_t
18 powerpc_code(lzma_simple *simple lzma_attribute((unused)), 18 powerpc_code(lzma_simple *simple lzma_attribute((__unused__)),
19 uint32_t now_pos, bool is_encoder, 19 uint32_t now_pos, bool is_encoder,
20 uint8_t *buffer, size_t size) 20 uint8_t *buffer, size_t size)
21 { 21 {
22 size_t i; 22 size_t i;
23 for (i = 0; i + 4 <= size; i += 4) { 23 for (i = 0; i + 4 <= size; i += 4) {
24 // PowerPC branch 6(48) 24(Offset) 1(Abs) 1(Link) 24 // PowerPC branch 6(48) 24(Offset) 1(Abs) 1(Link)
25 if ((buffer[i] >> 2) == 0x12 25 if ((buffer[i] >> 2) == 0x12
26 && ((buffer[i + 3] & 3) == 1)) { 26 && ((buffer[i + 3] & 3) == 1)) {
27 27
28 const uint32_t src = ((buffer[i + 0] & 3) << 24) 28 const uint32_t src = ((buffer[i + 0] & 3) << 24)
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 return powerpc_coder_init(next, allocator, filters, true); 64 return powerpc_coder_init(next, allocator, filters, true);
65 } 65 }
66 66
67 67
68 extern lzma_ret 68 extern lzma_ret
69 lzma_simple_powerpc_decoder_init(lzma_next_coder *next, 69 lzma_simple_powerpc_decoder_init(lzma_next_coder *next,
70 lzma_allocator *allocator, const lzma_filter_info *filters) 70 lzma_allocator *allocator, const lzma_filter_info *filters)
71 { 71 {
72 return powerpc_coder_init(next, allocator, filters, false); 72 return powerpc_coder_init(next, allocator, filters, false);
73 } 73 }
OLDNEW
« no previous file with comments | « src/liblzma/simple/ia64.c ('k') | src/liblzma/simple/simple_coder.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698