/external/skia/src/core/ |
SkUtils.cpp | 222 uint32_t mask = (uint32_t)~0x3F; 225 c = (c << 6) | (*++p & 0x3F); 245 uint32_t mask = (uint32_t)~0x3F; 248 c = (c << 6) | (*++p & 0x3F); 294 *p++ = (char)(0x80 | (uni & 0x3F));
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/ |
DerInputStream.java | 69 0x07, 0x0F, 0x1F, 0x3F, 0x7F };
|
/external/bluetooth/glib/gio/xdgmime/ |
xdgmimeint.c | 112 result |= *source++ & 0x3F;
|
/external/opencore/baselibs/gen_data_structures/src/ |
bool_array.h | 70 0xF, 0x1F, 0x3F, 0x7F,
|
base64_codec.cpp | 167 ogroup[3] = etable [igroup[2] & 0x3F];
|
/external/opencore/codecs_v2/utilities/colorconvert/src/ |
ccrgb24torgb16.cpp | 483 G0 = (half1 >> 2) & 0x3F; 491 G0 = (half1 >> 2) & 0x3F; 511 G0 = (half1 >> 5) & 0x3F; 542 G0 = (half1 >> 5) & 0x3F; 619 G1 = (half1 >> 2) & 0x3F; 627 G1 = (half1 >> 2) & 0x3F; 647 G0 = (half1 >> 5) & 0x3F; 678 G0 = (half1 >> 5) & 0x3F; 767 G0 = (half1 >> 2) & 0x3F; 775 G0 = (half1 >> 2) & 0x3F; [all...] |
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
mp4def.h | 177 #define SHORT_VIDEO_END_MARKER 0x3F
|
/external/tcpdump/ |
appletalk.h | 89 #define atpFlagMask 0x3F
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
Util.java | 247 out[s++] = (char) (((a & 0x1F) << 6) | (b & 0x3F)); 259 out[s++] = (char) (((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F));
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
drm_i18n.c | 284 wideChar = (uint16_t)(((ch & 0x1F) << 6) | (ch2 & 0x3F)); 295 wideChar = (uint16_t)(((ch & 0x0F) << 12) | ((ch2 & 0x3F) << 6) | (ch3 & 0x3F)); 362 *mbs = (uint8_t)((wc & 0x3f) | 0x80); 368 *mbs++ = (uint8_t)(((wc >> 6) & 0x3f)| 0x80); 369 *mbs = (uint8_t)((wc & 0x3f) | 0x80);
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
mp4def.h | 117 #define SHORT_VIDEO_END_MARKER 0x3F
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
mp4def.h | 117 #define SHORT_VIDEO_END_MARKER 0x3F
|
/packages/apps/IM/libwbxml/include/ |
csp13_data.h | 161 { 0x3F, "TransactionNSName" }, 221 { 0x3F, "MM" }, 497 { 0x3F, "UserIDList" }, 631 { 0x3F, "GROUP_TOPIC" },
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_decode_sequence_ex.c | 234 if ((type == LTC_ASN1_SETOF && (in[x] & 0x3F) != 0x31) || (type == LTC_ASN1_SEQUENCE && (in[x] & 0x3F) != 0x30)) {
|
/external/libxml2/ |
xmlsave.c | 261 val |= (in[1]) & 0x3F; 267 val |= (in[1]) & 0x3F; 269 val |= (in[2]) & 0x3F; 275 val |= (in[1]) & 0x3F; 277 val |= (in[2]) & 0x3F; 279 val |= (in[3]) & 0x3F; [all...] |
/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_test.c | 42 {0x00,0xE0,0x01,0x7B,0x27,0x77,0x7F,0x3F,0x4A,0x17,0x86,0xF0,0x00,0x00,0x00,0x00 },
|
/external/iproute2/tc/ |
p_ip.c | 81 res = parse_cmd(&argc, &argv, 1, TU32,0x3F,sel,tkey);
|
/external/opencore/codecs_v2/audio/sbc/enc/src/ |
sbcenc_crc8.cpp | 42 0x6C, 0x71, 0x56, 0x4B, 0x18, 0x05, 0x22, 0x3F, 0x84, 0x99, 0xBE, 0xA3, 0xF0, 0xED, 0xCA, 0xD7,
|
/external/webkit/WebCore/platform/graphics/android/ |
android_graphics.cpp | 42 SkColorSetARGB(0xff, 0xB3, 0x3F, 0x08), // normal ring select
|
/external/yaffs2/yaffs2/utils/ |
mkyaffsimage.c | 183 b[6] |= ((ecc >> 6) & 0x3F); 184 b[7] |= ((ecc & 0x3F) << 2); 217 temp.asBytes[3] = ((tags->asBytes[3] & 0x3F) << 2) | ((tags->asBytes[2] & 0xC0) >> 6); 220 temp.asBytes[6] = ((tags->asBytes[4] & 0x03) << 6) | (tags->asBytes[7] & 0x3F);
|
/frameworks/base/media/libdrm/mobile1/include/xml/ |
xml_tinyParser.h | 102 #define WBXML_GET_TAG(x) ((x) & 0x3F) /* get 6-digits */
|
/dalvik/libcore/security/src/test/java/tests/targets/security/ |
DefaultKeys.java | 45 (byte) 0xC3, (byte) 0xE4, (byte) 0x64, (byte) 0x54, (byte) 0xDA, (byte) 0xFB, (byte) 0xBA, (byte) 0xA6, (byte) 0xE5, (byte) 0x8A, (byte) 0x7F, (byte) 0xFA, (byte) 0x1A, (byte) 0x3F, (byte) 0x9B, (byte) 0xAB, (byte) 0xDA, 48 (byte) 0xBD, (byte) 0xD5, (byte) 0x02, (byte) 0x6D, (byte) 0x44, (byte) 0x0E, (byte) 0x3F, (byte) 0x74, (byte) 0x0C, (byte) 0x45, (byte) 0x54, (byte) 0x88, (byte) 0xFE, (byte) 0x5C, (byte) 0xFC, (byte) 0xF2, (byte) 0x31, 53 (byte) 0x89, (byte) 0x5A, (byte) 0x7D, (byte) 0x05, (byte) 0xDA, (byte) 0xFC, (byte) 0xAF, (byte) 0x46, (byte) 0x86, (byte) 0xBC, (byte) 0x3F, (byte) 0xD1, (byte) 0xEA, (byte) 0xA4, (byte) 0x56, (byte) 0xA3, (byte) 0xE6, 83 (byte) 0x00, (byte) 0xC3, (byte) 0x1E, (byte) 0x3F, (byte) 0x80, (byte) 0xB6, (byte) 0x51, (byte) 0x26, (byte) 0x69, (byte) 0x45, (byte) 0x5D, (byte) 0x40, (byte) 0x22, (byte) 0x51, (byte) 0xFB, (byte) 0x59, (byte) 0x3D, 104 (byte) 0x3F, (byte) 0x80, (byte) 0xB6, (byte) 0x51, (byte) 0x26, (byte) 0x69, (byte) 0x45, (byte) 0x5D, (byte) 0x40, (byte) 0x22, (byte) 0x51, (byte) 0xFB, (byte) 0x59, (byte) 0x3D, (byte) 0x8D, (byte) 0x58, (byte) 0xFA, 132 (byte) 0xEF, (byte) 0x44, (byte) 0x00, (byte) 0xC3, (byte) 0x1E, (byte) 0x3F, (byte) 0x80, (byte) 0xB6, (byte) 0x51, (byte) 0x26, (byte) 0x69, (byte) 0x45, (byte) 0x5D, (byte) 0x40, (byte) 0x22, (byte) 0x51, (byte) 0xFB, 151 (byte) 0xCF, (byte) 0x08, (byte) 0x6D, (byte) 0x05, (byte) 0xA1, (byte) 0x7F, (byte) 0x63, (byte) 0x6F, (byte) 0xB3, (byte) 0x91, (byte) 0xA3, (byte) 0xE1, (byte) 0xB0, (byte) 0x36, (byte) 0x02, (byte) 0x3F, (byte) 0x55, 159 (byte) 0xC3, (byte) 0x1E, (byte) 0x3F, (byte) 0x80, (byte) 0xB6, (byte) 0x51, (byte) 0x26, (byte) 0x69, (byte) 0x45, (byte) 0x5D, (byte) 0x40, (byte) 0x22, (byte) 0x51, (byte) 0xFB, (byte) 0x59, (byte) 0x3D, (byte) 0x8D, [all...] |
/external/e2fsprogs/lib/ext2fs/ |
dosio.c | 291 part->sects = sec[0] & 0x3F; 324 fsec = (unsigned long)(pent->start_sec & 0x3F);
|
/external/skia/src/ports/ |
sk_predefined_gamma.h | 11 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F, 0x40, 28 0x3A, 0x3B, 0x3C, 0x3E, 0x3F, 0x40, 0x41, 0x43, 0x44, 0x45, 0x46, 0x48, 0x49, 0x4A, 0x4B, 0x4C,
|
/frameworks/base/obex/javax/obex/ |
HeaderSet.java | 375 if ((headerID >= 0x30) && (headerID <= 0x3F)) { 473 if ((headerID >= 0x30) && (headerID <= 0x3F)) {
|