I can't explain this (screenshot from Eclipse debugging):



The pixel in (0,0) has no meaning for which it was set!
All other pixels are in order, they have the same value to which they were assigned.
EDIT
I did some more digging, and the code for setPixel calls its own function:
1391 public void setPixel(int x, int y, int color) {
1392 checkRecycled("Can't call setPixel() on a recycled bitmap");
1393 if (!isMutable()) {
1394 throw new IllegalStateException();
1395 }
1396 checkPixelAccess(x, y);
1397 nativeSetPixel(mNativeBitmap, x, y, color, mIsPremultiplied);
1398 }
setPixel (0,0) , , OK setPixel (0,1).
. : - , . , , 0xB0 OK.
, , . , , .
source.setPixel(0, 0, Color.argb(0x40, 0x1A, 0x11, 0x12));
int sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xFE, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x40, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xFE, 0x1A, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xFE, 0xFF, 0x11, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xFE, 0xFF, 0xEE, 0x12));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x00, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x10, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x20, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x30, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x50, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x60, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x70, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x80, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0x90, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xA0, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xB0, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xC0, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xD0, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xE0, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xF0, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xA7, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xA3, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xA1, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xAB, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);
source.setPixel(0, 0, Color.argb(0xA9, 0xFF, 0xEE, 0xDE));
sp00 = source.getPixel(0, 0);