HomeSort by relevance Sort by last modified time
    Searched refs:xff (Results 1376 - 1400 of 1929) sorted by null

<<51525354555657585960>>

  /frameworks/base/media/libstagefright/mpeg2ts/
ESQueue.cpp 62 if (ptr[0] != 0xff || (ptr[1] >> 4) != 0x0f) {
89 if (ptr[0] != 0xff || (ptr[1] >> 5) != 0x07) {
196 if (size < 2 || ptr[0] != 0xff || (ptr[1] >> 4) != 0x0f) {
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 604 int r = (((color & 0x00ff0000) * a) + ((bg & 0x00ff0000) * (0xff - a))) & 0xff000000;
605 int g = (((color & 0x0000ff00) * a) + ((bg & 0x0000ff00) * (0xff - a))) & 0x00ff0000;
606 int b = (((color & 0x000000ff) * a) + ((bg & 0x000000ff) * (0xff - a))) & 0x0000ff00;
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 433 b &= 0xFF;
490 | ((sha1[offset + 1] & 0xff) << 16)
491 | ((sha1[offset + 2] & 0xff) << 8)
492 | ((sha1[offset + 3] & 0xff));
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 452 rLabel.setText(String.valueOf((pixel >> 16) & 0xff));
453 gLabel.setText(String.valueOf((pixel >> 8) & 0xff));
454 bLabel.setText(String.valueOf((pixel ) & 0xff));
744 int a = 0xFF;
771 scanline[x] = 0xFF << 24 | r << 16 | g << 8 | b;
  /external/opencv/cxcore/src/
cxmathfuncs.cpp     [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c 179 #define IPL_SIZE 0xff
    [all...]
rombios32.c 581 vcnt = mtrr_cap & 0xff;
1110 return sum & 0xff;
    [all...]
  /external/chromium/googleurl/src/
url_canon_unittest.cc 585 {"0xFF.0", L"0xFF.0", "255.0.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 2},
586 {"0xFF.0.0", L"0xFF.0.0", "255.0.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 3},
587 {"0xFF.0.0.0", L"0xFF.0.0.0", "255.0.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4},
588 {"0.0xFF.0.0", L"0.0xFF.0.0", "0.255.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4},
589 {"0.0.0xFF.0", L"0.0.0xFF.0", "0.0.255.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4}
    [all...]
  /external/icu4c/i18n/
ucol_elm.cpp 772 uint32_t cClass = fcd & 0xff;
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceConstants.java     [all...]
  /external/icu4c/test/cintltst/
ccapitst.c     [all...]
  /external/valgrind/main/perf/
test_input_for_tinycc.c 427 return (__dev & 0xff) | ((unsigned int) (__dev >> 12) & ~0xff);
433 return ((__minor & 0xff) | ((__major & 0xfff) << 8)
434 | (((unsigned long long int) (__minor & ~0xff)) << 12)
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java     [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/openssl/crypto/aes/asm/
aes-ia64.S 115 (p0) and te33=s3,maskff // 0/0:s3&0xff
116 (p0) extr.u te22=s2,8,8 } // 0/0:s2>>8&0xff
118 (p0) and te30=s0,maskff // 0/1:s0&0xff
122 (p0) extr.u te23=s3,8,8 } // 1/1:s3>>8&0xff
126 { .mmi; (p0) ld4 te33=[te33] // 2/0:te3[s3&0xff]
127 (p0) shladd te22=te22,3,te2 // 2/0:te2+s2>>8&0xff
128 (p0) extr.u te20=s0,8,8 } // 2/2:s0>>8&0xff
134 (p0) extr.u te21=s1,8,8 } // 3/3:s1>>8&0xff
140 (p0) extr.u te11=s1,16,8 } // 4/0:s1>>16&0xff
146 (p0) extr.u te12=s2,16,8 } // 5/1:s2>>16&0xff
    [all...]
aes-586.pl 33 # shifts and masking the result with 0xFF<<2 instead of "boring" 0xFF.
253 &and ($s[0],0xFF);
258 &and ($v1,0xFF);
263 &and ($v0,0xFF);
269 &and ($v1,0xFF);
275 &and ($v1,0xFF);
281 &and ($v0,0xFF);
287 &and ($v0,0xFF);
293 &and ($v1,0xFF);
    [all...]
  /external/openssl/ssl/
s3_clnt.c 710 *(p++)=s->version&0xff;
842 if ((p[0] != (s->version>>8)) || (p[1] != (s->version&0xff)))
    [all...]
d1_clnt.c 645 *(p++)=s->version&0xff;
754 if ((data[0] != (s->version>>8)) || (data[1] != (s->version&0xff)))
834 tmp_buf[1]=s->client_version&0xff;
    [all...]
d1_pkt.c 165 if (sat&0xff) return brw | 0x80;
166 else return brw + (ret&0xFF);
    [all...]
  /frameworks/base/media/libstagefright/
MPEG4Writer.cpp 846 x = (length >> 16) & 0xff;
848 x = (length >> 8) & 0xff;
850 x = length & 0xff;
863 x = length & 0xff;
    [all...]
  /dalvik/libdex/
DexOpcodes.h 60 * spec for opcode values >= 0xff; see dexOpcodeFromCodeUnit() below.
326 OP_DISPATCH_FF = 0xff,
    [all...]
  /external/elfutils/libelf/
elf.h 521 #define ELF32_R_TYPE(val) ((val) & 0xff)
522 #define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type) & 0xff))
    [all...]
  /external/expat/lib/
xmltok.c 527 case 0xFF:
529 case 0xFF:
616 (((ptr)[0] = ((ch) & 0xff)), ((ptr)[1] = ((ch) >> 8)))
628 (((ptr)[0] = ((ch) >> 8)), ((ptr)[1] = ((ch) & 0xFF)))
1184 case 0xFF:
1270 return UCS2_GET_NAMING(namePages, c >> 8, c & 0xFF);
1280 return UCS2_GET_NAMING(nmstrtPages, c >> 8, c & 0xFF);
    [all...]
  /external/libpcap/
gencode.c     [all...]
  /external/qemu/android/camera/
camera-format-converters.c 89 #define G32(rgb) (uint8_t)((((rgb) & kGreen8) >> 8) & 0xff)
90 #define B32(rgb) (uint8_t)((((rgb) & kBlue8) >> 16) & 0xff)
119 #define kBayer8 0xff
440 * - 0xff For a 8-bit BAYER format
    [all...]

Completed in 869 milliseconds

<<51525354555657585960>>