HomeSort by relevance Sort by last modified time
    Searched refs:xFF (Results 26 - 50 of 2974) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/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);
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_events.c 46 static SDLKey MISC_keymap[0xFF + 1];
465 MISC_keymap[Pk_BackSpace&0xFF] = SDLK_BACKSPACE;
466 MISC_keymap[Pk_Tab&0xFF] = SDLK_TAB;
467 MISC_keymap[Pk_Clear&0xFF] = SDLK_CLEAR;
468 MISC_keymap[Pk_Return&0xFF] = SDLK_RETURN;
469 MISC_keymap[Pk_Pause&0xFF] = SDLK_PAUSE;
470 MISC_keymap[Pk_Escape&0xFF] = SDLK_ESCAPE;
471 MISC_keymap[Pk_Delete&0xFF] = SDLK_DELETE;
473 MISC_keymap[Pk_KP_0&0xFF] = SDLK_KP0;
474 MISC_keymap[Pk_KP_1&0xFF] = SDLK_KP1
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11events.c 995 ODD_keymap[XK_dead_grave&0xFF] = SDLK_COMPOSE;
996 ODD_keymap[XK_dead_acute&0xFF] = SDLK_COMPOSE;
997 ODD_keymap[XK_dead_tilde&0xFF] = SDLK_COMPOSE;
998 ODD_keymap[XK_dead_macron&0xFF] = SDLK_COMPOSE;
999 ODD_keymap[XK_dead_breve&0xFF] = SDLK_COMPOSE;
1000 ODD_keymap[XK_dead_abovedot&0xFF] = SDLK_COMPOSE;
1001 ODD_keymap[XK_dead_diaeresis&0xFF] = SDLK_COMPOSE;
1002 ODD_keymap[XK_dead_abovering&0xFF] = SDLK_COMPOSE;
1003 ODD_keymap[XK_dead_doubleacute&0xFF] = SDLK_COMPOSE;
1004 ODD_keymap[XK_dead_caron&0xFF] = SDLK_COMPOSE
    [all...]
  /external/valgrind/main/none/tests/s390x/
spechelper-tm.c 59 printf("Test #2 mask == 0xFF, value == 0 --> cc == 0\n");
64 if (branch(0, 0xFF, v)) ++wrong; else ++ok;
65 if (branch(1, 0xFF, v)) ++wrong; else ++ok;
66 if (branch(2, 0xFF, v)) ++wrong; else ++ok;
67 if (branch(3, 0xFF, v)) ++wrong; else ++ok;
68 if (branch(4, 0xFF, v)) ++wrong; else ++ok;
69 if (branch(5, 0xFF, v)) ++wrong; else ++ok;
70 if (branch(6, 0xFF, v)) ++wrong; else ++ok;
71 if (branch(7, 0xFF, v)) ++wrong; else ++ok;
72 if (branch(8, 0xFF, v)) ++ok; else ++wrong
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
7zCrcOpt.c 8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
19 table[0x300 + (v & 0xFF)] ^
20 table[0x200 + ((v >> 8) & 0xFF)] ^
21 table[0x100 + ((v >> 16) & 0xFF)] ^
  /external/lzma/C/
7zCrcOpt.c 8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
19 table[0x300 + (v & 0xFF)] ^
20 table[0x200 + ((v >> 8) & 0xFF)] ^
21 table[0x100 + ((v >> 16) & 0xFF)] ^
  /external/skia/src/core/
SkImageInfo.cpp 26 fAlphaType = (SkAlphaType)((packed >> 8) & 0xFF);
27 fColorType = (SkColorType)((packed >> 0) & 0xFF);
36 SkASSERT(0 == (fAlphaType & ~0xFF));
37 SkASSERT(0 == (fColorType & ~0xFF));
  /external/valgrind/main/none/tests/x86/
smc1.c 54 code[1] = (dest & 0xFF);
55 code[2] = ((dest >> 8) & 0xFF);
56 code[3] = ((dest >> 16) & 0xFF);
57 code[4] = ((dest >> 24) & 0xFF);
  /external/smack/src/org/xbill/DNS/
DNSOutput.java 112 array[pos++] = (byte)(val & 0xFF);
123 array[pos++] = (byte)((val >>> 8) & 0xFF);
124 array[pos++] = (byte)(val & 0xFF);
138 array[where++] = (byte)((val >>> 8) & 0xFF);
139 array[where++] = (byte)(val & 0xFF);
150 array[pos++] = (byte)((val >>> 24) & 0xFF);
151 array[pos++] = (byte)((val >>> 16) & 0xFF);
152 array[pos++] = (byte)((val >>> 8) & 0xFF);
153 array[pos++] = (byte)(val & 0xFF);
185 if (s.length > 0xFF) {
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
default_cursor.h 63 0xFF,0x00,
64 0xFF,0x80,
65 0xFF,0xC0,
66 0xFF,0xE0,
104 0xFF,0x00,
105 0xFF,0x80,
106 0xFF,0xC0,
107 0xFF,0x80,
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad.cpp 115 tmp2 = (cur_word >> 24) & 0xFF;
118 tmp2 = (cur_word >> 16) & 0xFF;
121 tmp2 = (cur_word >> 8) & 0xFF;
125 tmp2 = (cur_word & 0xFF);
130 tmp2 = (cur_word >> 24) & 0xFF;
133 tmp2 = (cur_word >> 16) & 0xFF;
136 tmp2 = (cur_word >> 8) & 0xFF;
140 tmp2 = (cur_word & 0xFF);
145 tmp2 = (cur_word >> 24) & 0xFF;
148 tmp2 = (cur_word >> 16) & 0xFF;
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParametersTestAES.java 26 (byte) 0xFF, (byte) 0x64, (byte) 0x72, (byte) 0xF5,
28 (byte) 0xFF, (byte) 0x64, (byte) 0x72, (byte) 0xF5 };
  /system/core/liblog/tests/
libc_test.cpp 68 int incoming = (eventData[0] & 0xFF) |
69 ((eventData[1] & 0xFF) << 8) |
70 ((eventData[2] & 0xFF) << 16) |
71 ((eventData[3] & 0xFF) << 24);
81 incoming = (eventData[4 + 1 + 0] & 0xFF) |
82 ((eventData[4 + 1 + 1] & 0xFF) << 8) |
83 ((eventData[4 + 1 + 2] & 0xFF) << 16) |
84 ((eventData[4 + 1 + 3] & 0xFF) << 24);
  /external/chromium_org/third_party/skia/tests/
SrcOverTest.cpp 37 unsigned result0 = test_srcover0(0xFF, i);
38 unsigned result1 = test_srcover1(0xFF, i);
39 unsigned result2 = test_srcover2(0xFF, i);
40 opaqueCounter0 += (result0 == 0xFF);
41 opaqueCounter1 += (result1 == 0xFF);
42 opaqueCounter2 += (result2 == 0xFF);
  /external/iptables/extensions/
libipt_icmp.c 12 * This is now fixed by initializing the field * to icmp type 0xFF
27 { "any", 0xFF, 0, 0xFF },
28 { "echo-reply", 0, 0, 0xFF },
29 /* Alias */ { "pong", 0, 0, 0xFF },
31 { "destination-unreachable", 3, 0, 0xFF },
48 { "source-quench", 4, 0, 0xFF },
50 { "redirect", 5, 0, 0xFF },
56 { "echo-request", 8, 0, 0xFF },
57 /* Alias */ { "ping", 8, 0, 0xFF },
    [all...]
libip6t_icmp6.c 19 { "destination-unreachable", 1, 0, 0xFF },
25 { "packet-too-big", 2, 0, 0xFF },
27 { "time-exceeded", 3, 0, 0xFF },
28 /* Alias */ { "ttl-exceeded", 3, 0, 0xFF },
32 { "parameter-problem", 4, 0, 0xFF },
37 { "echo-request", 128, 0, 0xFF },
38 /* Alias */ { "ping", 128, 0, 0xFF },
40 { "echo-reply", 129, 0, 0xFF },
41 /* Alias */ { "pong", 129, 0, 0xFF },
43 { "router-solicitation", 133, 0, 0xFF },
    [all...]
  /external/skia/tests/
SrcOverTest.cpp 37 unsigned result0 = test_srcover0(0xFF, i);
38 unsigned result1 = test_srcover1(0xFF, i);
39 unsigned result2 = test_srcover2(0xFF, i);
40 opaqueCounter0 += (result0 == 0xFF);
41 opaqueCounter1 += (result1 == 0xFF);
42 opaqueCounter2 += (result2 == 0xFF);
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 117 out.write(unsigned & 0xFF);
118 out.write((unsigned >> 8) & 0xFF);
119 out.write((unsigned >> 16) & 0xFF);
120 out.write((unsigned >> 24) & 0xFF);
125 out.write(i & 0xFF);
126 out.write((i >> 8) & 0xFF);
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Base64InputStream.java 140 outputBuffer[0] = (accum >> 16) & 0xFF;
141 outputBuffer[1] = (accum >> 8) & 0xFF;
142 outputBuffer[2] = (accum) & 0xFF;
146 outputBuffer[0] = (accum >> 16) & 0xFF;
147 outputBuffer[1] = (accum >> 8) & 0xFF;
151 outputBuffer[0] = (accum >> 16) & 0xFF;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 114 outputBuffer[0] = (accum >> 16) & 0xFF;
115 outputBuffer[1] = (accum >> 8) & 0xFF;
116 outputBuffer[2] = (accum) & 0xFF;
120 outputBuffer[0] = (accum >> 16) & 0xFF;
121 outputBuffer[1] = (accum >> 8) & 0xFF;
125 outputBuffer[0] = (accum >> 16) & 0xFF;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BerInputStreamTest.java 55 // length = 0xFF
56 { new byte[] { 0x30, (byte) 0x81, (byte) 0xFF },
57 BigInteger.valueOf(0xFF) },
62 { new byte[] { 0x30, (byte) 0x82, (byte) 0xFF, (byte) 0xFF },
66 new byte[] { 0x30, (byte) 0x83, 0x0F, (byte) 0xFF,
67 (byte) 0xFF }, BigInteger.valueOf(0x0FFFFF) },
70 new byte[] { 0x30, (byte) 0x83, (byte) 0xFF,
71 (byte) 0xFF, (byte) 0xFF },
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
RGBColor.cpp 40 unsigned value = (m_rgbColor >> 16) & 0xFF;
48 unsigned value = (m_rgbColor >> 8) & 0xFF;
56 unsigned value = m_rgbColor & 0xFF;
64 float value = static_cast<float>((m_rgbColor >> 24) & 0xFF) / 0xFF;
  /external/chromium_org/third_party/skia/samplecode/
SampleTextAlpha.cpp 34 fByte = 0xFF;
55 paint.setARGB(fByte, 0xFF, 0xFF, 0xFF);
64 paint.setColor(rand.nextU() | (0xFF << 24));

Completed in 1186 milliseconds

12 3 4 5 6 7 8 91011>>