HomeSort by relevance Sort by last modified time
    Searched refs:xFF (Results 176 - 200 of 2974) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterBwFilter.java 58 int r = 0xFF & (rgb >> 16);
59 int g = 0xFF & (rgb >> 8);
60 int b = 0xFF & (rgb >> 0);
  /art/compiler/
gc_map_builder.h 41 (*table)[0] |= (references_width_ << 3) & 0xFF;
42 (*table)[1] = (references_width_ >> 5) & 0xFF;
44 (*table)[2] = entries & 0xFF;
45 (*table)[3] = (entries >> 8) & 0xFF;
76 (*table_)[table_offset + i] = (native_offset >> (i * 8)) & 0xFF;
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 83 value = (b.get() & 0xFF);
97 tmp = b.get() & 0xFF;
110 tmp = b.get() & 0xFF;
123 tmp = b.get() & 0xFF;
136 tmp = b.get() & 0xFF;
  /external/chromium_org/third_party/skia/include/gpu/
GrColor.h 55 #define GrColorUnpackR(color) (((color) >> GrColor_SHIFT_R) & 0xFF)
56 #define GrColorUnpackG(color) (((color) >> GrColor_SHIFT_G) & 0xFF)
57 #define GrColorUnpackB(color) (((color) >> GrColor_SHIFT_B) & 0xFF)
58 #define GrColorUnpackA(color) (((color) >> GrColor_SHIFT_A) & 0xFF)
64 #define GrColor_ILLEGAL (~(0xFF << GrColor_SHIFT_A))
  /external/chromium_org/third_party/skia/src/core/
SkBlitBWMaskTemplate.h 64 int left_mask = 0xFF >> (left_edge & 7);
65 int rite_mask = 0xFF << (8 - (rite_edge & 7));
66 rite_mask &= 0xFF; // only want low-8 bits of mask
74 rite_mask = 0xFF;
76 if (left_mask == 0xFF)
  /external/jpeg/
jmorecfg.h 36 #define DITHER_565_R(r, dither) ((r) + ((dither)&0xFF))
37 #define DITHER_565_G(g, dither) ((g) + (((dither)&0xFF)>>1))
38 #define DITHER_565_B(b, dither) ((b) + ((dither)&0xFF))
81 * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
95 #define GETJSAMPLE(value) ((int) (value) & 0xFF)
146 #define GETJOCTET(value) ((value) & 0xFF)
  /external/qemu/distrib/jpeg-6b/
jmorecfg.h 33 #define DITHER_565_R(r, dither) ((r) + ((dither)&0xFF))
34 #define DITHER_565_G(g, dither) ((g) + (((dither)&0xFF)>>1))
35 #define DITHER_565_B(b, dither) ((b) + ((dither)&0xFF))
78 * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
92 #define GETJSAMPLE(value) ((int) (value) & 0xFF)
143 #define GETJOCTET(value) ((value) & 0xFF)
  /external/skia/include/gpu/
GrColor.h 55 #define GrColorUnpackR(color) (((color) >> GrColor_SHIFT_R) & 0xFF)
56 #define GrColorUnpackG(color) (((color) >> GrColor_SHIFT_G) & 0xFF)
57 #define GrColorUnpackB(color) (((color) >> GrColor_SHIFT_B) & 0xFF)
58 #define GrColorUnpackA(color) (((color) >> GrColor_SHIFT_A) & 0xFF)
64 #define GrColor_ILLEGAL (~(0xFF << GrColor_SHIFT_A))
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 64 int left_mask = 0xFF >> (left_edge & 7);
65 int rite_mask = 0xFF << (8 - (rite_edge & 7));
66 rite_mask &= 0xFF; // only want low-8 bits of mask
74 rite_mask = 0xFF;
76 if (left_mask == 0xFF)
  /external/smack/src/org/xbill/DNS/
KEYBase.java 118 int d1 = rdata[rdata.length - 3] & 0xFF;
119 int d2 = rdata[rdata.length - 2] & 0xFF;
125 int d1 = rdata[i] & 0xFF;
126 int d2 = rdata[i + 1] & 0xFF;
130 int d1 = rdata[i] & 0xFF;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
RTPFile.cc 46 rtpHeader[1] = (unsigned char) (payloadType & 0xFF);
47 rtpHeader[2] = (unsigned char) ((seqNo >> 8) & 0xFF);
48 rtpHeader[3] = (unsigned char) ((seqNo) & 0xFF);
49 rtpHeader[4] = (unsigned char) ((timeStamp >> 24) & 0xFF);
50 rtpHeader[5] = (unsigned char) ((timeStamp >> 16) & 0xFF);
52 rtpHeader[6] = (unsigned char) ((timeStamp >> 8) & 0xFF);
53 rtpHeader[7] = (unsigned char) (timeStamp & 0xFF);
55 rtpHeader[8] = (unsigned char) ((ssrc >> 24) & 0xFF);
56 rtpHeader[9] = (unsigned char) ((ssrc >> 16) & 0xFF);
58 rtpHeader[10] = (unsigned char) ((ssrc >> 8) & 0xFF);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictDecoderUtils.java 63 return mBuffer.get() & 0xFF;
113 private static final int MAXIMAL_ONE_BYTE_CHARACTER_VALUE = 0xFF;
169 buffer[index++] = (byte)(0xFF & (codePoint >> 16));
170 buffer[index++] = (byte)(0xFF & (codePoint >> 8));
171 buffer[index++] = (byte)(0xFF & codePoint);
195 buffer[index++] = (byte)(0xFF & (codePoint >> 16));
196 buffer[index++] = (byte)(0xFF & (codePoint >> 8));
197 buffer[index++] = (byte)(0xFF & codePoint);
222 stream.write((byte) (0xFF & (codePoint >> 16)));
223 stream.write((byte) (0xFF & (codePoint >> 8)))
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
vcdecoder_test.cc 105 static const char kMaxVarint[] = { 0x87, 0xFF, 0xFF, 0xFF, 0x7F };
127 static const char kInvalidVarint[] = { 0x87, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F };
140 { 0xff, 0x80, 0x00 },
141 { 0xff, 0xff, 0x00 }
    [all...]
  /external/chromium_org/third_party/re2/util/
rune.cc 29 T1 = ((1<<(Bit1+1))-1) ^ 0xFF, /* 0000 0000 */
30 Tx = ((1<<(Bitx+1))-1) ^ 0xFF, /* 1000 0000 */
31 T2 = ((1<<(Bit2+1))-1) ^ 0xFF, /* 1100 0000 */
32 T3 = ((1<<(Bit3+1))-1) ^ 0xFF, /* 1110 0000 */
33 T4 = ((1<<(Bit4+1))-1) ^ 0xFF, /* 1111 0000 */
34 T5 = ((1<<(Bit5+1))-1) ^ 0xFF, /* 1111 1000 */
43 Testx = Maskx ^ 0xFF, /* 1100 0000 */
  /external/chromium_org/third_party/skia/gm/
modecolorfilters.cpp 27 return make_color_shader(SkColorSetARGB(0xFF, 0x40, 0x80, 0x20));
94 SkColorSetARGB(0xFF, 0xFF, 0xFF, 0xFF),
95 SkColorSetARGB(0xFF, 0x00, 0x00, 0x00),
97 SkColorSetARGB(0xFF, 0x10, 0x20, 0x40),
  /external/regex-re2/util/
rune.cc 29 T1 = ((1<<(Bit1+1))-1) ^ 0xFF, /* 0000 0000 */
30 Tx = ((1<<(Bitx+1))-1) ^ 0xFF, /* 1000 0000 */
31 T2 = ((1<<(Bit2+1))-1) ^ 0xFF, /* 1100 0000 */
32 T3 = ((1<<(Bit3+1))-1) ^ 0xFF, /* 1110 0000 */
33 T4 = ((1<<(Bit4+1))-1) ^ 0xFF, /* 1111 0000 */
34 T5 = ((1<<(Bit5+1))-1) ^ 0xFF, /* 1111 1000 */
43 Testx = Maskx ^ 0xFF, /* 1100 0000 */
  /external/skia/gm/
modecolorfilters.cpp 27 return make_color_shader(SkColorSetARGB(0xFF, 0x40, 0x80, 0x20));
94 SkColorSetARGB(0xFF, 0xFF, 0xFF, 0xFF),
95 SkColorSetARGB(0xFF, 0x00, 0x00, 0x00),
97 SkColorSetARGB(0xFF, 0x10, 0x20, 0x40),
  /frameworks/av/media/mtp/
MtpDataPacket.cpp 245 mBuffer[mOffset++] = (uint8_t)(value & 0xFF);
246 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF);
253 mBuffer[mOffset++] = (uint8_t)(value & 0xFF);
254 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF);
261 mBuffer[mOffset++] = (uint8_t)(value & 0xFF);
262 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF);
263 mBuffer[mOffset++] = (uint8_t)((value >> 16) & 0xFF);
264 mBuffer[mOffset++] = (uint8_t)((value >> 24) & 0xFF);
271 mBuffer[mOffset++] = (uint8_t)(value & 0xFF);
272 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF);
    [all...]
  /external/qemu-pc-bios/bochs/bios/
acpi-dsdt.hex 29 0x0B,0x04,0x0B,0xFF,0xFF,0x00,0x4C,0x4E, /* 00000070 "......LN" */
30 0x4B,0x44,0x00,0x12,0x0B,0x04,0x0B,0xFF, /* 00000078 "KD......" */
31 0xFF,0x01,0x4C,0x4E,0x4B,0x41,0x00,0x12, /* 00000080 "..LNKA.." */
32 0x0C,0x04,0x0B,0xFF,0xFF,0x0A,0x02,0x4C, /* 00000088 ".......L" */
34 0xFF,0xFF,0x0A,0x03,0x4C,0x4E,0x4B,0x43, /* 00000098 "....LNKC" */
35 0x00,0x12,0x0D,0x04,0x0C,0xFF,0xFF,0x01, /* 000000A0 "........" *
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 259 *Addr = (Value >> 8) & 0xFF;
260 *(Addr + 1) = Value & 0xFF;
266 *Addr = (Value >> 24) & 0xFF;
267 *(Addr + 1) = (Value >> 16) & 0xFF;
268 *(Addr + 2) = (Value >> 8) & 0xFF;
269 *(Addr + 3) = Value & 0xFF;
275 *Addr = (Value >> 56) & 0xFF;
276 *(Addr + 1) = (Value >> 48) & 0xFF;
277 *(Addr + 2) = (Value >> 40) & 0xFF;
278 *(Addr + 3) = (Value >> 32) & 0xFF;
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
block.cpp 228 if ((uint)r0 > 0xFF) r0 = 0xFF & (~(r0 >> 31)); /* clip */
230 if ((uint)r1 > 0xFF) r1 = 0xFF & (~(r1 >> 31)); /* clip */
232 if ((uint)r2 > 0xFF) r2 = 0xFF & (~(r2 >> 31)); /* clip */
234 if ((uint)r3 > 0xFF) r3 = 0xFF & (~(r3 >> 31)); /* clip */
312 if ((uint)r0 > 0xFF) r0 = 0xFF & (~(r0 >> 31)); /* clip *
    [all...]
  /external/valgrind/main/VEX/useful/
fp_80_64.c 161 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) );
162 f80[8] = toUChar( bexp & 0xFF );
179 f80[8] = 0xFF;
197 f80[8] = 0xFF;
198 f80[7] = 0xFF;
200 = f80[2] = f80[1] = f80[0] = 0xFF;
206 f80[8] = 0xFF;
209 = f80[2] = f80[1] = f80[0] = 0xFF;
219 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) );
220 f80[8] = toUChar( bexp & 0xFF );
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
byte_array_utils.h 254 buffer[(*pos)++] = (data >> 24) & 0xFF;
255 buffer[(*pos)++] = (data >> 16) & 0xFF;
256 buffer[(*pos)++] = (data >> 8) & 0xFF;
257 buffer[(*pos)++] = data & 0xFF;
262 buffer[(*pos)++] = (data >> 16) & 0xFF;
263 buffer[(*pos)++] = (data >> 8) & 0xFF;
264 buffer[(*pos)++] = data & 0xFF;
269 buffer[(*pos)++] = (data >> 8) & 0xFF;
270 buffer[(*pos)++] = data & 0xFF;
275 buffer[(*pos)++] = data & 0xFF;
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 547 mValue[offset] = (byte)(value & 0xFF);
554 mValue[offset++] = (byte)(value & 0xFF);
555 mValue[offset] = (byte)((value >> 8) & 0xFF);
562 mValue[offset++] = (byte)(value & 0xFF);
563 mValue[offset++] = (byte)((value >> 8) & 0xFF);
564 mValue[offset++] = (byte)((value >> 16) & 0xFF);
565 mValue[offset] = (byte)((value >> 24) & 0xFF);
593 mValue[offset++] = (byte)(mantissa & 0xFF);
601 mValue[offset++] = (byte)(mantissa & 0xFF);
602 mValue[offset++] = (byte)((mantissa >> 8) & 0xFF);
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
frameparser.cpp 61 static unsigned char H264_mask_code[4] = {0xFF,0xFF,0xFF,0xFF};
65 static unsigned char MPEG4_mask_code[4] = {0xFF,0xFF,0xFF,0xFF};
68 static unsigned char H263_mask_code[4] = {0xFF,0xFF,0xFC,0x00}
    [all...]

Completed in 942 milliseconds

1 2 3 4 5 6 78 91011>>