HomeSort by relevance Sort by last modified time
    Searched refs:xff (Results 1 - 25 of 4182) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/libvideoeditor/vss/video_filters/src/
M4VIFI_Clip.c 127 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
128 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
    [all...]
  /external/qemu/
varint.c 47 *buf++ = value & 0xff;
50 *buf++ = (value >> 8) & 0xff;
51 *buf++ = value & 0xff;
54 *buf++ = (value >> 16) & 0xff;
55 *buf++ = (value >> 8) & 0xff;
56 *buf++ = value & 0xff;
59 *buf++ = (value >> 24) & 0xff;
60 *buf++ = (value >> 16) & 0xff;
61 *buf++ = (value >> 8) & 0xff;
62 *buf++ = value & 0xff;
    [all...]
aes.c     [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 57 return (short) ( ( ( ( value >> 0 ) & 0xff ) << 8 ) +
58 ( ( ( value >> 8 ) & 0xff ) << 0 ) );
68 ( ( ( value >> 0 ) & 0xff ) << 24 ) +
69 ( ( ( value >> 8 ) & 0xff ) << 16 ) +
70 ( ( ( value >> 16 ) & 0xff ) << 8 ) +
71 ( ( ( value >> 24 ) & 0xff ) << 0 );
81 ( ( ( value >> 0 ) & 0xff ) << 56 ) +
82 ( ( ( value >> 8 ) & 0xff ) << 48 ) +
83 ( ( ( value >> 16 ) & 0xff ) << 40 ) +
84 ( ( ( value >> 24 ) & 0xff ) << 32 ) +
    [all...]
  /external/skia/tests/
ARGBImageEncoderTest.cpp 37 0xff,0xff,0x00,0x00, 0xff,0xff,0x00,0x00, 0xff,0xff,0x00,0x00, // red
38 0xff,0x00,0xff,0x00, 0xff,0x00,0xff,0x00, 0xff,0x00,0xff,0x00, // gree
    [all...]
  /external/chromium_org/net/tools/flip_server/
constants.h 25 #define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \
26 (((IP)>>16)&0xff), (((IP)>>24)&0xff)
  /external/wpa_supplicant_8/src/crypto/
aes_i.h 35 #define TE0(i) Te0[((i) >> 24) & 0xff]
36 #define TE1(i) Te1[((i) >> 16) & 0xff]
37 #define TE2(i) Te2[((i) >> 8) & 0xff]
38 #define TE3(i) Te3[(i) & 0xff]
39 #define TE41(i) (Te4[((i) >> 24) & 0xff] & 0xff000000)
40 #define TE42(i) (Te4[((i) >> 16) & 0xff] & 0x00ff0000)
41 #define TE43(i) (Te4[((i) >> 8) & 0xff] & 0x0000ff00)
42 #define TE44(i) (Te4[(i) & 0xff] & 0x000000ff)
43 #define TE421(i) (Te4[((i) >> 16) & 0xff] & 0xff000000)
44 #define TE432(i) (Te4[((i) >> 8) & 0xff] & 0x00ff0000
    [all...]
  /external/scrypt/lib/util/
sysendian.h 61 p[3] = x & 0xff;
62 p[2] = (x >> 8) & 0xff;
63 p[1] = (x >> 16) & 0xff;
64 p[0] = (x >> 24) & 0xff;
83 p[7] = x & 0xff;
84 p[6] = (x >> 8) & 0xff;
85 p[5] = (x >> 16) & 0xff;
86 p[4] = (x >> 24) & 0xff;
87 p[3] = (x >> 32) & 0xff;
88 p[2] = (x >> 40) & 0xff;
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Memory.java 47 return (((src[offset++] & 0xff) << 24) |
48 ((src[offset++] & 0xff) << 16) |
49 ((src[offset++] & 0xff) << 8) |
50 ((src[offset ] & 0xff) << 0));
52 return (((src[offset++] & 0xff) << 0) |
53 ((src[offset++] & 0xff) << 8) |
54 ((src[offset++] & 0xff) << 16) |
55 ((src[offset ] & 0xff) << 24));
61 int h = ((src[offset++] & 0xff) << 24) |
62 ((src[offset++] & 0xff) << 16)
    [all...]
  /external/harfbuzz/tests/linebreaking/
main.cpp 91 { "11", { false, 0xff } },
92 { "aa", { false, 0xff } },
93 { "++", { false, 0xff } },
94 { "--", { false, 0xff } },
95 { "((", { false, 0xff } },
96 { "))", { false, 0xff } },
97 { "..", { false, 0xff } },
98 { "\"\"", { false, 0xff } },
99 { "$$", { false, 0xff } },
100 { "!!", { false, 0xff } },
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
value-mask.asm 2 db label & 0xff
  /external/compiler-rt/lib/ubsan/lit_tests/Integer/
no-recover.cpp 9 (void)(uint8_t(0xff) + uint8_t(0xff));
  /frameworks/base/core/java/android/animation/
ArgbEvaluator.java 43 int startA = (startInt >> 24) & 0xff;
44 int startR = (startInt >> 16) & 0xff;
45 int startG = (startInt >> 8) & 0xff;
46 int startB = startInt & 0xff;
49 int endA = (endInt >> 24) & 0xff;
50 int endR = (endInt >> 16) & 0xff;
51 int endG = (endInt >> 8) & 0xff;
52 int endB = endInt & 0xff;
  /external/chromium/net/tools/flip_server/
constants.h 25 #define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \
26 (((IP)>>16)&0xff), (((IP)>>24)&0xff)
  /bootable/recovery/applypatch/
utils.c 23 fputc(value & 0xff, f);
24 fputc((value >> 8) & 0xff, f);
25 fputc((value >> 16) & 0xff, f);
26 fputc((value >> 24) & 0xff, f);
31 fputc(value & 0xff, f);
32 fputc((value >> 8) & 0xff, f);
33 fputc((value >> 16) & 0xff, f);
34 fputc((value >> 24) & 0xff, f);
35 fputc((value >> 32) & 0xff, f);
36 fputc((value >> 40) & 0xff, f)
    [all...]
  /external/yaffs2/yaffs2/
yaffs_packedtags1.c 20 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
    [all...]
  /libcore/luni/src/main/java/java/net/
Inet4Address.java 61 return ((ipaddress[0] & 0xff) == 169) && ((ipaddress[1] & 0xff) == 254); // 169.254/16
65 return ((ipaddress[0] & 0xff) == 127); // 127/8
98 return ((ipaddress[0] & 0xff) == 224) && (ipaddress[1] == 0) && (ipaddress[2] == 0); // 224.0.0/24
106 return ((ipaddress[0] & 0xff) == 239) && ((ipaddress[1] & 0xfc) == 192); // 239.192/14
110 return ((ipaddress[0] & 0xff) == 239) && ((ipaddress[1] & 0xff) == 255); // 239.255/16
118 if ((ipaddress[0] & 0xff) == 10) { // 10/8
120 } else if (((ipaddress[0] & 0xff) == 172) && ((ipaddress[1] & 0xf0) == 16)) { // 172.16/12
122 } else if (((ipaddress[0] & 0xff) == 192) && ((ipaddress[1] & 0xff) == 168)) { // 192.168/1
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bf/
bf_locl.h 87 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \
88 *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \
89 *((c)++)=(unsigned char)(((l)>>16L)&0xff), \
90 *((c)++)=(unsigned char)(((l)>>24L)&0xff))
97 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
98 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
99 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \
100 case 5: *(--(c))=(unsigned char)(((l2) )&0xff); \
101 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
102 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
    [all...]
  /external/openssl/crypto/bf/
bf_locl.h 87 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \
88 *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \
89 *((c)++)=(unsigned char)(((l)>>16L)&0xff), \
90 *((c)++)=(unsigned char)(((l)>>24L)&0xff))
97 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
98 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
99 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \
100 case 5: *(--(c))=(unsigned char)(((l2) )&0xff); \
101 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \
102 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzVideo.m     [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_core.c     [all...]
  /external/openssl/crypto/aes/
aes_core.c     [all...]
  /external/openssh/
rijndael.c     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
LittleEndien.java 72 return (in.read() & 0xff) | ((in.read() & 0xff) << 8);
79 return ((in.read() & 0xff)
80 | ((in.read() & 0xff) << 8)
81 | ((in.read() & 0xff) << 16)
82 | (((long) (in.read() & 0xff)) << 24));
106 return ((in.read() & 0xff)
107 | ((in.read() & 0xff) << 8)
108 | ((in.read() & 0xff) << 16)
109 | ((in.read() & 0xff) << 24))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_tests.c 47 #define PACKED_1x16(x) {(x) & 0xff, (x) >> 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
48 #define PACKED_2x16(x, y) {(x) & 0xff, (x) >> 8, (y) & 0xff, (y) >> 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
49 #define PACKED_3x16(x, y, z) {(x) & 0xff, (x) >> 8, (y) & 0xff, (y) >> 8, (z) & 0xff, (z) >> 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
50 #define PACKED_4x16(x, y, z, w) {(x) & 0xff, (x) >> 8, (y) & 0xff, (y) >> 8, (z) & 0xff, (z) >> 8, (w) & 0xff, (w) >> 8, 0, 0, 0, 0, 0, 0, 0, 0
    [all...]

Completed in 877 milliseconds

1 2 3 4 5 6 7 8 91011>>