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

<<31323334353637383940>>

  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_prism54.c 164 os_memset(param->sta_addr, 0xff, ETH_ALEN);
168 os_memset(param->sta_addr, 0xff, ETH_ALEN);
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
RuimRecords.java 396 } else if (countWaiting > 0xff) {
399 countWaiting = 0xff;
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 255 return (read(scratch, 0, 1) != -1) ? scratch[0] & 0xff : -1;
710 scratch[0] = (byte) (oneByte & 0xff);
740 write(val & 0xFF);
755 bytes[index] = (byte) (str.charAt(index) & 0xFF);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleThread.java 144 headerLen = (data.get() & 0xff);
145 bytesPerEntry = (data.get() & 0xff);
  /system/core/toolbox/
nandread.c 15 if (*buf++ != 0xff)
147 memset(oob_data, 0xff, mtdinfo.oobsize + spare_size);
  /external/llvm/test/MC/ARM/
basic-thumb2-instructions.s 32 @ CHECK: adc r1, r2, #255 @ encoding: [0x42,0xf1,0xff,0x01]
37 @ CHECK: adc r4, r2, #2139095040 @ encoding: [0x42,0xf1,0xff,0x44]
79 @ CHECK: addwne r5, r3, #1023 @ encoding: [0x03,0xf2,0xff,0x35]
121 and r1, #0xff
122 and r1, r1, #0xff
126 @ CHECK: and r1, r1, #255 @ encoding: [0x01,0xf0,0xff,0x01]
127 @ CHECK: and r1, r1, #255 @ encoding: [0x01,0xf0,0xff,0x01]
382 @ CHECK: dbg #15 @ encoding: [0xaf,0xf3,0xff,0x80]
629 @ CHECK: ldr r2, [r4, #255]! @ encoding: [0x54,0xf8,0xff,0x2f]
632 @ CHECK: ldr r2, [r4], #255 @ encoding: [0x54,0xf8,0xff,0x2b
    [all...]
  /bionic/libc/netbsd/
gethnamaddr.c 970 *p++ = 0xff;
971 *p++ = 0xff;
1138 (uaddr[3] & 0xff), (uaddr[2] & 0xff),
1139 (uaddr[1] & 0xff), (uaddr[0] & 0xff));
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 827 array[i] = (byte) (value & 0xff);
    [all...]
  /external/elfutils/src/
i386_ld.c 261 0xff, 0x35, /* pushl contents of address */
263 0xff, 0x25, /* jmp indirect */
284 0xff, 0xb3, 4, 0, 0, 0, /* pushl 4(%ebx) */
285 0xff, 0xa3, 8, 0, 0, 0, /* jmp *8(%ebx) */
292 0xff, 0x25, /* jmp indirect */
303 0xff, 0xa3, /* jmp *offset(%ebx) */
  /external/libvpx/vp8/encoder/arm/armv5te/
boolhuff_armv5te.asm 90 cmpge r1, #0xff
163 cmpge r1, #0xff
254 cmpge r11, #0xff
vp8_packtokens_armv5.asm 113 cmpge r11, #0xff
208 cmpge r11, #0xff
256 cmpge r12, #0xff
  /external/llvm/lib/MC/
MCDwarf.cpp     [all...]
  /external/pcre/
pcre_printint.src 168 offset = ((offset << 8) & 0xff00) | ((offset >> 8) & 0xff);
169 count = ((count << 8) & 0xff00) | ((count >> 8) & 0xff);
170 size = ((size << 8) & 0xff00) | ((size >> 8) & 0xff);
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 244 bpfInsn[PPPOE_BCAST_CMPW].k = ((0xff << 24) | (0xff << 16) |
245 (0xff << 8) | 0xff);
246 bpfInsn[PPPOE_BCAST_CMPH].k = ((0xff << 8) | 0xff);
  /external/qemu/
kqemu.c 273 if (phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] != 0xff)
464 fp->fptag = fptag ^ 0xff;
490 fptag = fp->fptag ^ 0xff;
734 if (env->dr[7] & 0xff) {
871 env->exception_index = ret & 0xff;
882 env->exception_index = ret & 0xff;
i386-dis.c     [all...]
  /external/quake/quake/src/WinQuake/
snd_gus.cpp 907 dos_outportb(AddrReg, RealAddr & 0xff);
908 dos_outportb(AddrReg, (RealAddr>>8) & 0xff);
911 dos_outportb(CountReg, (count-1) & 0xff);
917 dos_outportb(AddrReg, (RealAddr>>1) & 0xff);
918 dos_outportb(AddrReg, (RealAddr>>9) & 0xff);
921 dos_outportb(CountReg, ((count>>1)-1) & 0xff);
1002 dos_outportb(CodecData,count & 0xFF);
    [all...]
  /hardware/invensense/mlsdk/mlutils/
mputest.c 149 d[0]==0xff && d[1]==0xff && \
150 d[2]==0xff && d[3]==0xff && \
151 d[4]==0xff && d[5]==0xff \
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 511 int highValue = appParam[i] & 0xff;
512 int lowValue = appParam[i + 1] & 0xff;
519 int highValue = appParam[i] & 0xff;
520 int lowValue = appParam[i + 1] & 0xff;
704 pbsize[0] = (byte)((size / 256) & 0xff);// HIGH VALUE
705 pbsize[1] = (byte)((size % 256) & 0xff);// LOW VALUE
    [all...]
  /system/core/libpixelflinger/
scanline.cpp     [all...]
  /external/qemu/hw/
bt.h 32 #define BDADDR_ALL (&(bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}})
33 #define BDADDR_LOCAL (&(bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff}})
256 HCI_VENDOR_PKT = 0xff,
    [all...]
  /external/qemu-pc-bios/vgabios/
clext.c 314 0xff,0,0,0,0,0,0,0,0},
315 {0xff,0,0,0,0,0,0,0,0,
316 0xff,0,0,0,0,0,0,0,0},
325 0xff, 0xff
550 mov ax, #0xffff ; set to 0xff to keep win 2K happy
629 mov al, #0xff
690 cmp ah, #0xff
1284 cmp ah, #0xff
1629 + (cirrus_vesa_pmbios_init >> 8) + (cirrus_vesa_pmbios_init)) & 0xff) << 8) + 0x0
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
FormatterTest.java     [all...]
  /external/chromium/net/base/
x509_certificate.cc 600 {0xff,0x2e,0x1b,0xda,0xa2,0xf4,0xc9,0x51,0x02,0x65,0xf7,0x26,0x11,0xdd,0x0c,0x44},
614 {0x4a,0x66,0x2b,0xa9,0xe4,0x5d,0x06,0xff,0xc5,0x0d,0x1d,0xbb,0xe2,0x25,0xa8,0xbb},
633 {0x4e,0xf7,0x05,0xc3,0x1e,0xff,0xc8,0x5a,0x0f,0x6f,0x74,0x52,0x8c,0x84,0xa7,0x72},
636 {0x30,0xc2,0x0f,0xff,0x9b,0xe7,0xc3,0xd5,0x82,0xc8,0x0b,0xc2,0xcb,0xeb,0x04,0x62},
639 {0xc3,0xac,0x62,0x96,0xff,0x90,0xf0,0x9b,0xf1,0x82,0xfb,0x81,0xf8,0x65,0x00,0xda},
649 {0x57,0x38,0x70,0x4f,0x75,0xa3,0xff,0x3b,0x86,0xa6,0x0a,0x55,0x96,0xed,0x09,0xb3},
655 {0x2b,0x33,0xcb,0x52,0xae,0xff,0xb2,0x2e,0x23,0x30,0x9d,0x8b,0xc1,0x97,0x66,0x85},
678 {0x4b,0xf3,0x02,0x0d,0x00,0xff,0xb8,0x31,0xf3,0x8a,0xf3,0x1e,0x26,0xb9,0x04,0x9a},
683 {0xbb,0x83,0x3b,0x51,0xa8,0x2f,0x7e,0xb9,0xab,0x5c,0xff,0x4b,0x6f,0x0a,0x58,0x9e},
    [all...]
  /external/openssl/apps/
testrsa.h 105 0x82,0xff,0xcd,0x59,0x32,0x06,0x2e,0x12,0x3b,0x23,
135 0x31,0x71,0x2c,0xd0,0xff,0xfb,0x2e,0xaf,0x85,0xb4,
146 0x69,0x18,0xb4,0x71,0xff,0xa6,0x65,0xde,0xed,0x84,
148 0x51,0x29,0x04,0xff,0x34,0x06,0xdd,0xb9,0x67,0x2c,
209 0x9f,0x0e,0xc5,0xff,0xbd,0x33,0x00,0xec,0xac,0x6b,
246 0xff,0xc1,0x61,0x0d,0xbd,0x7e,0x18,0x24,0x73,0x6d,
263 0xbf,0xe2,0x3c,0x2a,0xe0,0xff,0x99,0xa3,0xf0,0x2b,
270 0xff,0x58,0x92,0x02,0x6a,0x7d,0x7c,0x1e,0x2c,0xfd,
358 0x01,0xff,0xdd,0x2e,0xb7,0xb3,0xaa,0x74,0xe0,0xa5,
399 0x13,0x42,0x14,0x6c,0x36,0x31,0xff,0x7a,0xd1,0xc1
    [all...]

Completed in 786 milliseconds

<<31323334353637383940>>