HomeSort by relevance Sort by last modified time
    Searched refs:xFF (Results 101 - 125 of 2877) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/asm/
smp_32.h 31 #define NO_PROC_ID 0xFF
  /prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/asm/
smp_32.h 31 #define NO_PROC_ID 0xFF
  /prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/asm/
smp_32.h 31 #define NO_PROC_ID 0xFF
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/asm/
smp_32.h 31 #define NO_PROC_ID 0xFF
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/asm/
smp_32.h 31 #define NO_PROC_ID 0xFF
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm/
smp_32.h 31 #define NO_PROC_ID 0xFF
  /system/bt/stack/gap/
gap_api.c 32 ** a value of 0xFF, it simply returns the current trace level.
39 if (new_level != 0xFF)
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ByteBuffer.java 169 return buffer[index] & 0xFF;
252 else if ((buffer[2] & 0xFF) == 0xFE && (buffer[3] & 0xFF) == 0xFF)
261 else if ((buffer[0] & 0xFF) < 0x80)
288 if ((buffer[0] & 0xFF) == 0xEF)
292 else if ((buffer[0] & 0xFF) == 0xFE)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
_crcfunpy.py 40 crc = crc & 0xFF
47 crc = crc & 0xFF
56 crc = table[x ^ ((crc>>8) & 0xFF)] ^ ((crc << 8) & 0xFF00)
63 crc = table[x ^ (crc & 0xFF)] ^ (crc >> 8)
70 crc = table[x ^ (crc>>16 & 0xFF)] ^ ((crc << 8) & 0xFFFF00)
77 crc = table[x ^ (crc & 0xFF)] ^ (crc >> 8)
84 crc = table[x ^ ((crc>>24) & 0xFF)] ^ ((crc << 8) & 0xFFFFFF00)
91 crc = table[x ^ (crc & 0xFF)] ^ (crc >> 8)
98 crc = table[x ^ ((crc>>56) & 0xFF)] ^ ((crc << 8) & 0xFFFFFFFFFFFFFF00)
105 crc = table[x ^ (crc & 0xFF)] ^ (crc >> 8
    [all...]
  /external/pdfium/xfa/src/fxbarcode/
BC_BufferedImageLuminanceSource.cpp 43 bitmap->Clear(FXARGB_MAKE(0xFF, 0xFF, 0xFF, 0xFF));
144 int32_t luminance = (306 * ((pixel >> 16) & 0xFF) +
145 601 * ((pixel >> 8) & 0xFF) + 117 * (pixel & 0xFF)) >>
162 (306 * ((pixel >> 16) & 0xFF) + 601 * ((pixel >> 8) & 0xFF) +
163 117 * (pixel & 0xFF)) >>
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiUtils.java 177 return ((data[0] & 0xFF) << 8) | (data[1] & 0xFF);
188 return ((data[offset] & 0xFF) << 8) | (data[offset + 1] & 0xFF);
198 return ((data[0] & 0xFF) << 16) | ((data[1] & 0xFF) << 8) | (data[2] & 0xFF);
304 return ((normalized.charAt(0) & 0xFF) << 16)
305 | ((normalized.charAt(1) & 0xFF) << 8)
306 | (normalized.charAt(2) & 0xFF);
    [all...]
  /external/skia/include/gpu/
GrTestUtils.h 57 color = GrColorPackRGBA(0xFF, 0xFF, 0xFF, 0xFF);
66 0xFF);
96 coverage = 0xff;
  /hardware/ti/omap4-aah/security/tee_client_api/
schannel6_logins.h 48 #define SCX_LOGIN_GET_MAIN_TYPE(type) ((type) & ~SCX_LOGIN_VARIANT(0, 0xFF, 0xFF))
57 #define SCX_LOGIN_USER_NONE SCX_LOGIN_VARIANT(SCX_LOGIN_USER, SCX_LOGIN_OS_ANY, 0xFF)
58 #define SCX_LOGIN_GROUP_NONE SCX_LOGIN_VARIANT(SCX_LOGIN_GROUP, SCX_LOGIN_OS_ANY, 0xFF)
60 SCX_LOGIN_VARIANT(SCX_LOGIN_APPLICATION_USER, SCX_LOGIN_OS_ANY, 0xFF)
  /hardware/ti/omap4xxx/security/tee_client_api/
schannel6_logins.h 48 #define SCX_LOGIN_GET_MAIN_TYPE(type) ((type) & ~SCX_LOGIN_VARIANT(0, 0xFF, 0xFF))
57 #define SCX_LOGIN_USER_NONE SCX_LOGIN_VARIANT(SCX_LOGIN_USER, SCX_LOGIN_OS_ANY, 0xFF)
58 #define SCX_LOGIN_GROUP_NONE SCX_LOGIN_VARIANT(SCX_LOGIN_GROUP, SCX_LOGIN_OS_ANY, 0xFF)
60 SCX_LOGIN_VARIANT(SCX_LOGIN_APPLICATION_USER, SCX_LOGIN_OS_ANY, 0xFF)
  /packages/apps/LegacyCamera/src/com/android/camera/
Exif.java 33 while (offset + 3 < jpeg.length && (jpeg[offset++] & 0xFF) == 0xFF) {
34 int marker = jpeg[offset] & 0xFF;
37 if (marker == 0xFF) {
131 value = (value << 8) | (bytes[offset] & 0xFF);
  /prebuilts/go/darwin-x86/src/runtime/
rune.go 31 t1 = ((1 << (bit1 + 1)) - 1) ^ 0xFF /* 0000 0000 */
32 tx = ((1 << (bitx + 1)) - 1) ^ 0xFF /* 1000 0000 */
33 t2 = ((1 << (bit2 + 1)) - 1) ^ 0xFF /* 1100 0000 */
34 t3 = ((1 << (bit3 + 1)) - 1) ^ 0xFF /* 1110 0000 */
35 t4 = ((1 << (bit4 + 1)) - 1) ^ 0xFF /* 1111 0000 */
36 t5 = ((1 << (bit5 + 1)) - 1) ^ 0xFF /* 1111 1000 */
44 testx = maskx ^ 0xFF /* 1100 0000 */
  /prebuilts/go/linux-x86/src/runtime/
rune.go 31 t1 = ((1 << (bit1 + 1)) - 1) ^ 0xFF /* 0000 0000 */
32 tx = ((1 << (bitx + 1)) - 1) ^ 0xFF /* 1000 0000 */
33 t2 = ((1 << (bit2 + 1)) - 1) ^ 0xFF /* 1100 0000 */
34 t3 = ((1 << (bit3 + 1)) - 1) ^ 0xFF /* 1110 0000 */
35 t4 = ((1 << (bit4 + 1)) - 1) ^ 0xFF /* 1111 0000 */
36 t5 = ((1 << (bit5 + 1)) - 1) ^ 0xFF /* 1111 1000 */
44 testx = maskx ^ 0xFF /* 1100 0000 */
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataOutputStream.java 131 out.write(0xFF & v);
132 out.write(0xFF & (v >> 8));
133 out.write(0xFF & (v >> 16));
134 out.write(0xFF & (v >> 24));
157 out.write(0xFF & v);
158 out.write(0xFF & (v >> 8));
  /external/libnfc-nxp/src/
phFriNfc_SmtCrdFmt.h 68 #define PH_FRINFC_SMTCRDFMT_MSTD_DEFAULT_KEYA_OR_KEYB {0xFF, 0xFF,0xFF,0xFF,0xFF,0xFF}
  /external/mdnsresponder/mDNSShared/
dnssd_ipc.c 59 (*ptr)[0] = (char)((l >> 24) & 0xFF);
60 (*ptr)[1] = (char)((l >> 16) & 0xFF);
61 (*ptr)[2] = (char)((l >> 8) & 0xFF);
62 (*ptr)[3] = (char)((l ) & 0xFF);
83 (*ptr)[0] = (char)((s >> 8) & 0xFF);
84 (*ptr)[1] = (char)((s ) & 0xFF);
  /external/skia/gm/
bigmatrix.cpp 49 pixels[0] = SkPackARGB32(0xFF, 0xFF, 0x00, 0x00);
50 pixels[1] = SkPackARGB32(0xFF, 0x00, 0xFF, 0x00);
52 pixels[3] = SkPackARGB32(0xFF, 0x00, 0x00, 0xFF);
  /external/skia/src/core/
SkImageInfo.cpp 30 fProfileType = (SkColorProfileType)((packed >> 16) & 0xFF);
31 fAlphaType = (SkAlphaType)((packed >> 8) & 0xFF);
32 fColorType = (SkColorType)((packed >> 0) & 0xFF);
42 SkASSERT(0 == (fProfileType & ~0xFF));
43 SkASSERT(0 == (fAlphaType & ~0xFF));
44 SkASSERT(0 == (fColorType & ~0xFF));
SkSpanProcs.cpp 64 SkASSERT(0xFF == paint.getAlpha());
69 SkASSERT(0xFF != paint.getAlpha());
78 SkASSERT(0xFF == paint.getAlpha());
84 SkASSERT(0xFF != paint.getAlpha());
91 return 0xFF == paint.getAlpha() ? colorfilter_filterspan : colorfilter_alpha_filterspan;
93 return 0xFF == paint.getAlpha() ? noop_filterspan : alpha_filterspan;
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
NETEQTEST_RTPpacket.cc 457 _datagram[2]=(unsigned char)((sn>>8)&0xFF);
458 _datagram[3]=(unsigned char)((sn)&0xFF);
477 _datagram[4]=(unsigned char)((ts>>24)&0xFF);
478 _datagram[5]=(unsigned char)((ts>>16)&0xFF);
479 _datagram[6]=(unsigned char)((ts>>8)&0xFF);
480 _datagram[7]=(unsigned char)(ts & 0xFF);
499 _datagram[8]=(unsigned char)((ssrc>>24)&0xFF);
500 _datagram[9]=(unsigned char)((ssrc>>16)&0xFF);
501 _datagram[10]=(unsigned char)((ssrc>>8)&0xFF);
502 _datagram[11]=(unsigned char)(ssrc & 0xFF);
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 78 final boolean possibleJpegFormat = jpeg.get(0) == (byte) 0xFF
86 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
87 final int marker = jpeg.get(offset) & 0xFF;
90 if (marker == 0xFF) {
197 value = (value << 8) | (bytes.get(offset) & 0xFF);

Completed in 775 milliseconds

1 2 3 45 6 7 8 91011>>