HomeSort by relevance Sort by last modified time
    Searched refs:xFF (Results 176 - 200 of 910) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/dropbear/libtomcrypt/src/ciphers/
blowfish.c 527 { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
528 { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/utf8/
der_decode_utf8_string.c 78 for (z = 0; (tmp & 0x80) && (z <= 4); z++, tmp = (tmp << 1) & 0xFF);
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_v1_5_encode.c 92 XMEMSET(ps, 0xFF, ps_len);
  /external/e2fsprogs/lib/e2p/
uuid.c 65 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
  /external/e2fsprogs/lib/ext2fs/
dosio.h 130 #define HW_SENSE_FAIL() ((unsigned char)_dio_hw_error == 0xFF)
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 50 return 0xFF & m_buf [m_pos ++];
  /external/freetype/include/freetype/
fttypes.h     [all...]
  /external/grub/netboot/
timer.c 18 outb(ticks & 0xFF, TIMER2_PORT);
60 outb(CALIBRATE_LATCH & 0xff, 0x42); /* LSB of count */
  /external/grub/stage2/
disk_io.c 405 && (current_partition & 0xFF) == 0xFF
408 && ((current_partition >> 16) == 0xFF
517 if ((current_partition >> 16) == 0xFF
593 if (bsd_part_no == 0xFF)
624 *type = (BSD_PART_TYPE (buf, i) << 8) | (*type & 0xFF);
650 if (pc_slice_no == 0xFF)
722 if ((*partition != 0xFFFFFF && IS_PC_SLICE_TYPE_BSD (*type & 0xff))
770 bsd_part = (current_partition >> 8) & 0xFF;
842 if (bsd_part == 0xFF)
    [all...]
  /external/iptables/
iptables-save.c 31 (unsigned int)((n)>>24)&0xFF, \
32 (unsigned int)((n)>>16)&0xFF, \
33 (unsigned int)((n)>>8)&0xFF, \
34 (unsigned int)((n)&0xFF)
  /external/kernel-headers/original/asm-x86/
mpspec_def.h 142 #define MP_APIC_ALL 0xFF
  /external/libgsm/src/
add.c 146 ? -1 + bitoff[ 0xFF & (a >> 24) ]
147 : 7 + bitoff[ 0xFF & (a >> 16) ] )
149 ? 15 + bitoff[ 0xFF & (a >> 8) ]
150 : 23 + bitoff[ 0xFF & a ] );
  /external/qemu/elff/
elf_defs.h 132 return get_byte(&tmp, 0) == 0xFF;
  /external/qemu/
json-lexer.c 107 [1 ... 0xFF] = IN_DQ_STRING,
144 [1 ... 0xFF] = IN_SQ_STRING,
  /external/skia/bench/
SkBenchmark.cpp 9 fForceAlpha = 0xFF;
  /external/skia/include/core/
SkEndian.h 64 return ((value & 0xFF) << 24) |
SkWriter32.h 48 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
  /external/skia/tests/
SortTest.cpp 14 array[j] = rand.nextS() & 0xFF;
  /frameworks/base/core/java/com/android/internal/util/
BitwiseOutputStream.java 102 if (offset < 8) mBuf[index + 1] |= data & 0xFF;
  /frameworks/base/include/ui/
PixelFormat.h 94 OTHER = 0xFF
  /frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Private.h 63 #define LVPSA_MAXUNSIGNEDCHAR 0xFF
  /frameworks/base/opengl/tests/filter/
filter.cpp 88 0xAA, 0xFF, 0xAA, 0xFF,
90 0xAA, 0xFF, 0xAA, 0xFF };
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
TWDriverRate.h 76 DRV_RATE_INVALID = 0xFF /**< Invalid Driver's Rate Type */
  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 142 return pos < count ? buf[pos++] & 0xFF : -1;
StringBufferInputStream.java 76 return pos < count ? buffer.charAt(pos++) & 0xFF : -1;

Completed in 597 milliseconds

1 2 3 4 5 6 78 91011>>