~ubuntu-branches/ubuntu/utopic/python3.3/utopic

« back to all changes in this revision

Viewing changes to Modules/_decimal/libmpdec/transpose.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-01-27 12:13:57 UTC
  • mfrom: (1.2.11)
  • Revision ID: package-import@ubuntu.com-20140127121357-60ennw934dn1qirz
Tags: 3.3.4~rc1-1
Python 3.3.4 release candidate 1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (c) 2008-2012 Stefan Krah. All rights reserved.
 
2
 * Copyright (c) 2008-2016 Stefan Krah. All rights reserved.
3
3
 *
4
4
 * Redistribution and use in source and binary forms, with or without
5
5
 * modification, are permitted provided that the following conditions
169
169
/*
170
170
 * Transpose 2^n * 2^n matrix. For cache efficiency, the matrix is split into
171
171
 * square blocks with side length 'SIDE'. First, the blocks are transposed,
172
 
 * then a square tranposition is done on each individual block.
 
172
 * then a square transposition is done on each individual block.
173
173
 */
174
174
static void
175
175
squaretrans_pow2(mpd_uint_t *matrix, mpd_size_t size)