/external/webrtc/talk/media/base/ |
fakertp.h | 38 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 39 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
num_get.cpp | 56 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF [all...] |
/external/pdfium/xfa/src/fgas/src/crt/ |
fx_algorithm.cpp | 88 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
disassem.s | 2 .byte 0xFF, 0xEF 3 .byte 0xFF, 0xD8
|
x86-64-disassem.s | 2 .byte 0xFF, 0xEF 3 .byte 0xFF, 0xD8
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/ |
armCOMM_MaskTable.c | 52 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 55 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/ |
armCOMM_MaskTable.c | 52 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 53 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 55 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, [all...] |
/external/tpm2/ |
CpriDataEcc.c | 25 {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 26 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE [all...] |
/hardware/intel/img/psb_video/src/hwdefs/ |
fwrk_msg_mem_io.h | 59 #define FWRK_GENMSG_SIZE_MASK (0xFF) 60 #define FWRK_GENMSG_SIZE_LSBMASK (0xFF) 67 #define FWRK_GENMSG_ID_MASK (0xFF) 68 #define FWRK_GENMSG_ID_LSBMASK (0xFF) 77 #define FWRK_PADMSG_SIZE_MASK (0xFF) 78 #define FWRK_PADMSG_SIZE_LSBMASK (0xFF) 85 #define FWRK_PADMSG_ID_MASK (0xFF) 86 #define FWRK_PADMSG_ID_LSBMASK (0xFF) 95 #define FWRK_RSTMSG_SIZE_MASK (0xFF) 96 #define FWRK_RSTMSG_SIZE_LSBMASK (0xFF) [all...] |
/external/boringssl/src/crypto/ec/ |
ec.c | 87 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF [all...] |
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
LittleEndian.java | 41 return src[offset] & 0xFF; 51 final int v0 = src[offset + 0] & 0xFF; 52 final int v1 = src[offset + 1] & 0xFF; 63 final long v0 = src[offset + 0] & 0xFF; 64 final long v1 = src[offset + 1] & 0xFF; 65 final long v2 = src[offset + 2] & 0xFF; 66 final long v3 = src[offset + 3] & 0xFF; 81 dst[offset + 0] = (byte) (value & 0xFF); 82 dst[offset + 1] = (byte) ((value >>> 8) & 0xFF); 96 dst[offset + 0] = (byte) (value & 0xFF); [all...] |
FatType.java | 39 final int b1 = data[idx] & 0xFF; 40 final int b2 = data[idx + 1] & 0xFF; 55 data[idx] = (byte) (entry & 0xFF); 59 data[idx + 1] = (byte) ((entry >> 4) & 0xFF); 72 final int b1 = data[idx] & 0xFF; 73 final int b2 = data[idx + 1] & 0xFF; 80 data[idx] = (byte) (entry & 0xFF); 81 data[idx + 1] = (byte) ((entry >> 8) & 0xFF); 93 final long l1 = data[idx] & 0xFF; 94 final long l2 = data[idx + 1] & 0xFF; [all...] |
/external/libnfc-nxp/src/ |
phLibNfc_ndef_raw.h | 61 #define MIFARE_STD_DEFAULT_KEY {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF} 66 #define UNKNOWN_BLOCK_ADDRESS 0xFF /**<Unknown BLOCK address>*/
|
/libcore/ojluni/src/main/java/java/net/ |
Inet4Address.java | 121 int address = addr[3] & 0xFF; 209 return (((address >>> 24) & 0xFF) == 169) 210 && (((address >>> 16) & 0xFF) == 254); 226 return (((address >>> 24) & 0xFF) == 10) 227 || ((((address >>> 24) & 0xFF) == 172) 229 || ((((address >>> 24) & 0xFF) == 192) 230 && (((address >>> 16) & 0xFF) == 168)); 244 return ((byteAddr[0] & 0xff) >= 224 && (byteAddr[0] & 0xff) <= 238 ) && 245 !((byteAddr[0] & 0xff) == 224 && byteAddr[1] == 0 & [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtDrawingStyle.java | 37 SELECTION(new RGB(0x00, 0x99, 0xFF), 192, new RGB(0x00, 0x99, 0xFF), 192, 1, SWT.LINE_SOLID), 57 DISTANCE(new RGB(0xFF, 0x00, 0x00), 192 - 32, SWT.LINE_SOLID), 67 HOVER(null, 0, new RGB(0xFF, 0xFF, 0xFF), 40, 1, SWT.LINE_DOT), 72 HOVER_SELECTION(null, 0, new RGB(0xFF, 0xFF, 0xFF), 10, 1, SWT.LINE_DOT), 77 ANCHOR(new RGB(0x00, 0x99, 0xFF), 96, SWT.LINE_SOLID) [all...] |
/external/lzma/C/ |
XzCrc64Opt.c | 8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
21 table[0x300 + ((d ) & 0xFF)] ^
22 table[0x200 + ((d >> 8) & 0xFF)] ^
23 table[0x100 + ((d >> 16) & 0xFF)] ^
38 ((v >> 40) & ((UInt64)0xFF << 8)) | \
39 ((v >> 24) & ((UInt64)0xFF << 16)) | \
40 ((v >> 8) & ((UInt64)0xFF << 24)) | \
41 ((v << 8) & ((UInt64)0xFF << 32)) | \
42 ((v << 24) & ((UInt64)0xFF << 40)) | \
43 ((v << 40) & ((UInt64)0xFF << 48)) | \ [all...] |
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
byte_array_utils.cpp | 22 const uint8_t ByteArrayUtils::MAXIMUM_ONE_BYTE_CHARACTER_VALUE = 0xFF;
|
/external/deqp/framework/delibs/deimage/ |
deARGB.h | 41 DE_INLINE deARGB deARGB_white (void) { return deARGB_set(0xFF, 0xFF, 0xFF, 0xFF); } 42 DE_INLINE deARGB deARGB_black (void) { return deARGB_set(0, 0, 0, 0xFF); } 44 DE_INLINE int deARGB_getRed (deARGB argb) { return (int)((argb >> 16) & 0xFF); } 45 DE_INLINE int deARGB_getGreen (deARGB argb) { return (int)((argb >> 8) & 0xFF); } 46 DE_INLINE int deARGB_getBlue (deARGB argb) { return (int)((argb >> 0) & 0xFF); } 47 DE_INLINE int deARGB_getAlpha (deARGB argb) { return (int)((argb >> 24) & 0xFF); }
|
/external/boringssl/src/crypto/base64/ |
base64.c | 84 * 0xFF is error */ 90 #define B64_ERROR 0xFF 94 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xF0, 0xFF [all...] |
/external/valgrind/none/tests/amd64/ |
smc1.c | 62 code[2] = (dest & 0xFF); 63 code[3] = ((dest >> 8) & 0xFF); 64 code[4] = ((dest >> 16) & 0xFF); 65 code[5] = ((dest >> 24) & 0xFF); 66 code[6] = ((dest >> 32) & 0xFF); 67 code[7] = ((dest >> 40) & 0xFF); 68 code[8] = ((dest >> 48) & 0xFF); 69 code[9] = ((dest >> 56) & 0xFF);
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/ |
StreamUtils.java | 38 output[i] = ((input[j] & 0xFF) << 24) | ((input[j + 1] & 0xFF) << 16) 39 | ((input[j + 2] & 0xFF) << 8) | ((input[j + 3] & 0xFF)); 43 output[i] = ((input[j + 3] & 0xFF) << 24) | ((input[j + 2] & 0xFF) << 16) 44 | ((input[j + 1] & 0xFF) << 8) | ((input[j] & 0xFF));
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
motion_comp.h | 57 #define CLIP_RESULT(x) if(x & -256){x = 0xFF & (~(x>>31));} 58 #define ADD_AND_CLIP1(x) x += (pred_word&0xFF); CLIP_RESULT(x); 59 #define ADD_AND_CLIP2(x) x += ((pred_word>>8)&0xFF); CLIP_RESULT(x); 60 #define ADD_AND_CLIP3(x) x += ((pred_word>>16)&0xFF); CLIP_RESULT(x); 61 #define ADD_AND_CLIP4(x) x += ((pred_word>>24)&0xFF); CLIP_RESULT(x);
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
nrf24l01-receiver.cxx | 35 uint8_t broadcast_address[5] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
/external/libnfc-nci/src/nfa/dm/ |
nfa_dm_cfg.c | 35 0xFF, 36 0xFF, 37 0xFF, 38 0xFF, 39 0xFF, 40 0xFF, 133 0xFF, /* NCI_PROTOCOL_MIFARE */
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
constant_pcm_packet_source.cc | 56 packet_memory[3] = seq_number_ & 0xFF; 58 packet_memory[5] = (timestamp_ >> 16) & 0xFF; 59 packet_memory[6] = (timestamp_ >> 8) & 0xFF; 60 packet_memory[7] = timestamp_ & 0xFF; 62 packet_memory[9] = (payload_ssrc_ >> 16) & 0xFF; 63 packet_memory[10] = (payload_ssrc_ >> 8) & 0xFF; 64 packet_memory[11] = payload_ssrc_ & 0xFF;
|