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

<<41424344454647484950>>

  /external/qemu/hw/
bt-hid.c 560 s->btdev.device.class[0] = (class >> 0) & 0xff;
561 s->btdev.device.class[1] = (class >> 8) & 0xff;
562 s->btdev.device.class[2] = (class >> 16) & 0xff;
dma.c 170 return (val >> (d->dshift + (ff << 3))) & 0xff;
184 r->base[nreg] = (r->base[nreg] & 0xff) | ((data << 8) & 0xff00);
187 r->base[nreg] = (r->base[nreg] & 0xff00) | (data & 0xff);
ps2.c 43 #define KBD_CMD_RESET 0xFF /* Reset */
66 #define AUX_RESET 0xFF /* Reset aux device */
301 ps2_queue(&s->common, dx1 & 0xff);
302 ps2_queue(&s->common, dy1 & 0xff);
312 ps2_queue(&s->common, dz1 & 0xff);
  /external/tcpdump/
print-udp.c 182 optlen = (i2 >> 16) & 0xff;
224 switch (flags & 0xff) {
264 printf(" type-0x%x %d", flags & 0xff, len);
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 58 mov r5,#0xff @ load top as a hackish 8-bit counter
59 orr r5,r4,r5,LSL #8 @ shift 0xff left by 8 and or in the byte we loaded
430 pos_mask: .word ((POSITION_MASK<<8)+0xff)
  /external/valgrind/main/none/tests/arm/
neon128.c 437 TESTINSN_bin("vand q4, q6, q5", q4, q6, i8, 0xff, q5, i16, 0x57);
439 TESTINSN_bin("vand q15, q15, q15", q15, q15, i8, 0xff, q15, i8, 0xff);
443 TESTINSN_bin("vbic q4, q6, q5", q4, q6, i8, 0xff, q5, i16, 0x57);
445 TESTINSN_bin("vbic q15, q15, q15", q15, q15, i8, 0xff, q15, i8, 0xff);
449 TESTINSN_bin("vorr q7, q3, q0", q7, q3, i8, 0x24, q0, i16, 0xff);
450 TESTINSN_bin("vorr q4, q4, q4", q4, q4, i16, 0xff, q4, i16, 0xff);
455 TESTINSN_bin("vorn q7, q3, q0", q7, q3, i8, 0x24, q0, i16, 0xff);
    [all...]
  /external/wpa_supplicant/
crypto_internal.c 466 * (BT=0: PS=0x00, BT=1: PS=0xff, BT=2: PS=pseudorandom non-zero)
489 os_memset(pos, 0xff, ps_len);
585 plain[0] != 0x00 || plain[1] != 0x01 || plain[2] != 0xff) {
592 while (pos < plain + len && *pos == 0xff)
crypto_libtomcrypt.c 505 * (BT=0: PS=0x00, BT=1: PS=0xff, BT=2: PS=pseudorandom non-zero)
528 os_memset(pos, 0xff, ps_len);
644 plain[0] != 0x00 || plain[1] != 0x01 || plain[2] != 0xff) {
651 while (pos < plain + len && *pos == 0xff)
  /external/wpa_supplicant/tests/
test_sha256.c 31 0xb4, 0x10, 0xff, 0x61, 0xf2, 0x00, 0x15, 0xad
39 0xa3, 0x3c, 0xe4, 0x59, 0x64, 0xff, 0x21, 0x67,
244 0x84, 0xd3, 0xe7, 0xa1, 0xff, 0x98, 0xa2, 0xfc,
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_libtomcrypt.c 505 * (BT=0: PS=0x00, BT=1: PS=0xff, BT=2: PS=pseudorandom non-zero)
528 os_memset(pos, 0xff, ps_len);
644 plain[0] != 0x00 || plain[1] != 0x01 || plain[2] != 0xff) {
651 while (pos < plain + len && *pos == 0xff)
  /external/wpa_supplicant_6/wpa_supplicant/tests/
test_sha256.c 31 0xb4, 0x10, 0xff, 0x61, 0xf2, 0x00, 0x15, 0xad
39 0xa3, 0x3c, 0xe4, 0x59, 0x64, 0xff, 0x21, 0x67,
244 0x84, 0xd3, 0xe7, 0xa1, 0xff, 0x98, 0xa2, 0xfc,
  /external/wpa_supplicant_8/src/crypto/
crypto_libtomcrypt.c 505 * (BT=0: PS=0x00, BT=1: PS=0xff, BT=2: PS=pseudorandom non-zero)
528 os_memset(pos, 0xff, ps_len);
644 plain[0] != 0x00 || plain[1] != 0x01 || plain[2] != 0xff) {
651 while (pos < plain + len && *pos == 0xff)
  /external/zlib/examples/
gzlog.c 311 0, 0xff, /* no extra flags, no OS specified */
332 1, 0, 0, 0xff, 0xff, /* empty stored block (last) */
    [all...]
  /frameworks/base/opengl/libs/ETC1/
etc1.cpp 151 int c = b & 0xff;
157 int c = b & 0xff;
517 static const unsigned short kYMask[] = { 0x0, 0xf, 0xff, 0xfff, 0xffff };
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 501 * Field may be padded with trailing 0xff's. The decode stops
502 * at the first 0xff encountered.
518 * Field may be padded with trailing 0xff's. The decode stops
519 * at the first 0xff encountered.
547 int c = data[i] & 0xff;
549 if (c == 0xff) {
611 * Field is padded with 0xff's, string is truncated if necessary
650 // pad with 0xff's
652 dest[outByteIndex++] = (byte)0xff;
    [all...]
WspTypeDecoder.java 281 int lengthMultiOctet = wspData[startIndex] & 0xff;
288 unsigned32bit = (unsigned32bit << 8) | (wspData[startIndex + i] & 0xff);
345 if ((wspData[startIndex] & 0xff) > WAP_PDU_LENGTH_QUOTE) {
  /packages/apps/Camera/jni/
feature_mos_jni.cpp 224 //int y = (0xff & (int)yuv420sp[yp]) -16;
321 int y = (0xff & ((int) yuv420sp[yp])) - 16;
324 v = (0xff & yuv420sp[vp]) - 128;
325 u = (0xff & yuv420sp[up]) - 128;
336 //rgb[yp] = 0xff000000 | ((r << 6) & 0xff0000) | ((g >> 2) & 0xff00) | ((b >> 10) & 0xff);
340 rgb[p+2] = b>>10 & 0xFF;
593 image[y*width+x] = (0xFF<<24) | (resultBGR[y*width*3+x*3+2]<<16)|
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParserTokenManager.java 367 int i2 = (curChar & 0xff) >> 6;
483 int i2 = (curChar & 0xff) >> 6;
604 int i2 = (curChar & 0xff) >> 6;
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLCanvasTest.java 114 float r = ((c >> 16) & 0xff) / 255f;
115 float g = ((c >> 8) & 0xff) / 255f;
116 float b = (c & 0xff) / 255f;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 331 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
337 #define WIFEXITED(S) (((S) & 0xff) == 0)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 331 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
337 #define WIFEXITED(S) (((S) & 0xff) == 0)
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
system.h 331 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
337 #define WIFEXITED(S) (((S) & 0xff) == 0)
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 303 return (src.get() & 0xff) / (2e8f - 1);
305 return src.get() & 0xff;
425 msgData.indices[i] = (short) (index.get() & 0xff);
  /external/llvm/test/MC/ARM/
basic-arm-instructions.s 38 @ CHECK: adc r1, r2, #4026531855 @ encoding: [0xff,0x12,0xa2,0xe2]
358 @ CHECK: bkpt #65535 @ encoding: [0x7f,0xff,0x2f,0xe1]
383 @ CHECK: blx r2 @ encoding: [0x32,0xff,0x2f,0xe1]
384 @ CHECK: blxne r2 @ encoding: [0x32,0xff,0x2f,0x11]
392 @ CHECK: bx r2 @ encoding: [0x12,0xff,0x2f,0xe1]
393 @ CHECK: bxne r2 @ encoding: [0x12,0xff,0x2f,0x11]
401 @ CHECK: bxj r2 @ encoding: [0x22,0xff,0x2f,0xe1]
402 @ CHECK: bxjne r2 @ encoding: [0x22,0xff,0x2f,0x11]
512 @ CHECK: dbg #15 @ encoding: [0xff,0xf0,0x20,0xe3]
    [all...]
  /external/chromium/net/base/
x509_certificate_unittest.cc 62 0x57, 0x83, 0x2d, 0xa2, 0xff, 0xbc, 0x84, 0xc2
81 0x32, 0xff, 0xe3, 0xbe, 0x2c, 0x3b, 0xc7, 0xca, 0xbf, 0x2d, 0x64, 0xbd,
    [all...]

Completed in 602 milliseconds

<<41424344454647484950>>