Searched
refs:xff (Results
576 -
600 of
1929) sorted by null
<<21222324252627282930>>
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
irda.h | 63 #define CS_UNICODE 0xff 123 #define LSAP_ANY 0xff
|
/sdk/emulator/qtools/ |
gtrace.cpp | 78 //fh->common.usec_cpu = (start_usec << 8) | (cpu & 0xff); 79 fh->common.usec_cpu = cpu & 0xff; 103 //bh.usec_cpu = (start_usec << 8) | (cpu & 0xff); 104 bh.usec_cpu = cpu & 0xff;
|
opcode.h | 160 num_accesses = num_one_bits[(binary >> 8) & 0xff] 161 + num_one_bits[binary & 0xff];
|
/external/qemu/tcg/arm/ |
tcg-target.c | 237 if ((imm & ~0xff) == 0) 241 if (((imm >> shift) & ~0xff) == 0) 244 if ((rotl(imm, 2) & ~0xff) == 0) 246 if ((rotl(imm, 4) & ~0xff) == 0) 248 if ((rotl(imm, 6) & ~0xff) == 0) 263 * ldrh/strh offset: between -0xff and 0xff 423 tcg_out_dat_imm(s, cond, ARITH_MVN, rd, 0, (~arg) & 0xff); 443 tcg_out_dat_imm(s, cond, opc, rd, rn, ((arg >> i) & 0xff) | rot); 444 arg &= ~(0xff << i) [all...] |
/bionic/libc/include/netinet/ |
in6.h | 68 (((__const uint8_t *) (a))[0] == 0xff)
|
/bionic/libc/include/sys/ |
limits.h | 57 # define CHAR_MAX 0xff /* max value for a char */
|
/bionic/libc/kernel/common/linux/ |
ppp_defs.h | 23 #define PPP_ALLSTATIONS 0xff
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
Form22b.java | 104 codeUnit(regs.get(1).getReg(), value & 0xff));
|
/dalvik/dx/src/com/android/dx/io/ |
Opcodes.java | 332 * {@code 0} or {@code 0xff}, and the special opcode values {@code 349 * * ((byteValue << 8) | 0xff) -- 16-bit extended opcodes 360 int lowByte = opcode & 0xff; 361 if ((lowByte == 0) || (lowByte == 0xff)) { 380 * | 0xff). 396 * ((byteValue << 8) | 0xff). 399 int lowByte = opcodeUnit & 0xff; 400 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte;
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
ShortArrayCodeOutput.java | 112 value = b & 0xff;
|
/dalvik/libdex/ |
DexUtf.cpp | 96 case 0xff: {
|
/development/ndk/platforms/android-3/include/linux/ |
ppp_defs.h | 23 #define PPP_ALLSTATIONS 0xff
|
/development/ndk/platforms/android-3/include/netinet/ |
in6.h | 64 (((__const uint8_t *) (a))[0] == 0xff)
|
/development/ndk/platforms/android-3/include/sys/ |
limits.h | 57 # define CHAR_MAX 0xff /* max value for a char */
|
/development/tools/yuv420sp2rgb/ |
yuv420sp2rgb.c | 107 nR >>= 10; nR &= 0xff; 108 nG >>= 10; nG &= 0xff; 109 nB >>= 10; nB &= 0xff; 167 if (alpha) out[i++] = 0xff;
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
DERIA5String.java | 65 cs[i] = (char)(string[i] & 0xff);
|
DERNumericString.java | 65 cs[i] = (char)(string[i] & 0xff);
|
DERPrintableString.java | 67 cs[i] = (char)(string[i] & 0xff);
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/gcm/ |
GCMUtil.java | 88 int b = block[i] & 0xff;
|
/external/chromium/base/ |
cpu.cc | 110 ext_family_ = (cpu_info[0] >> 20) & 0xff;
|
/external/chromium/third_party/libjingle/source/talk/base/ |
socketaddress.cc | 306 ost << ((ip >> 24) & 0xff); 308 ost << ((ip >> 16) & 0xff); 310 ost << ((ip >> 8) & 0xff); 312 ost << ((ip >> 0) & 0xff);
|
/external/grub/netboot/ |
pci.c | 327 present_status = (pack >> 16) & 0xff; 328 major_revision = (pack >> 8) & 0xff; 329 minor_revision = pack & 0xff; 416 for (devfn = 0; devfn < 0xff; ++devfn) {
|
/external/grub/stage2/ |
terminfo.c | 91 *out++ = (char)(n & 0xff);
|
/external/icu4c/test/perf/unisetperf/draft/ |
trieset.cpp | 97 if((uint32_t)c<=0xff) {
|
/external/kernel-headers/original/asm-x86/ |
vm86.h | 41 #define VM86_TYPE(retval) ((retval) & 0xff)
|
Completed in 640 milliseconds
<<21222324252627282930>>