~ubuntu-branches/debian/sid/ndiswrapper/sid

« back to all changes in this revision

Viewing changes to driver/divdi3.c

  • Committer: Package Import Robot
  • Author(s): Julian Andres Klode
  • Date: 2011-11-25 16:45:32 UTC
  • mto: (1.3.14)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20111125164532-t3el9iq2brq77sl9
Tags: upstream-1.57~rc1
ImportĀ upstreamĀ versionĀ 1.57~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
          /* Remainder in n0.  */
99
99
        }
100
100
 
101
 
      if (rp != 0)
 
101
      if (rp != NULL)
102
102
        {
103
103
          rr.s.low = n0;
104
104
          rr.s.high = 0;
173
173
          /* Remainder in n0 >> bm.  */
174
174
        }
175
175
 
176
 
      if (rp != 0)
 
176
      if (rp != NULL)
177
177
        {
178
178
          rr.s.low = n0 >> bm;
179
179
          rr.s.high = 0;
192
192
          q1 = 0;
193
193
 
194
194
          /* Remainder in n1n0.  */
195
 
          if (rp != 0)
 
195
          if (rp != NULL)
196
196
            {
197
197
              rr.s.low = n0;
198
198
              rr.s.high = n1;
224
224
 
225
225
              q1 = 0;
226
226
 
227
 
              if (rp != 0)
 
227
              if (rp != NULL)
228
228
                {
229
229
                  rr.s.low = n0;
230
230
                  rr.s.high = n1;
256
256
              q1 = 0;
257
257
 
258
258
              /* Remainder in (n1n0 - m1m0) >> bm.  */
259
 
              if (rp != 0)
 
259
              if (rp != NULL)
260
260
                {
261
261
                  sub_ddmmss (n1, n0, n1, n0, m1, m0);
262
262
                  rr.s.low = (n1 << b) | (n0 >> bm);