/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/ |
BlowfishEngine.java | 396 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff]) 397 ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]); 465 data = (data << 8) | (key[keyIndex++] & 0xff); 563 return ((b[i] & 0xff) << 24) | 564 ((b[i+1] & 0xff) << 16) | 565 ((b[i+2] & 0xff) << 8) | 566 ((b[i+3] & 0xff));
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/ |
CCMBlockCipher.java | 281 b0[b0.length - count] = (byte)(q & 0xff); 304 cMac.update((byte)0xff);
|
/external/chromium/chrome/browser/ui/views/location_bar/ |
content_setting_image_view.cc | 31 const SkColor kTopBoxColor = SkColorSetRGB(0xff, 0xf8, 0xd4); 32 const SkColor kBottomBoxColor = SkColorSetRGB(0xff, 0xe6, 0xaf);
|
/external/javassist/src/main/javassist/bytecode/ |
CodeIterator.java | 112 public int byteAt(int index) { return bytecode[index] & 0xff; } 740 opcode = code[index] & 0xff; 868 int inst = code[i] & 0xff; 873 int offset = (code[i + 1] << 8) | (code[i + 2] & 0xff); [all...] |
/external/kernel-headers/original/linux/mtd/ |
nand.h | 75 #define NAND_CMD_RESET 0xff 99 #define NAND_CMD_STATUS_CLEAR 0xff
|
/external/libvpx/vp8/common/ |
postproc.c | 24 ( (0.257*(float)(t>>16)) + (0.504*(float)(t>>8&0xff)) + (0.098*(float)(t&0xff)) + 16), \ 25 (-(0.148*(float)(t>>16)) - (0.291*(float)(t>>8&0xff)) + (0.439*(float)(t&0xff)) + 128), \ 26 ( (0.439*(float)(t>>16)) - (0.368*(float)(t>>8&0xff)) - (0.071*(float)(t&0xff)) + 128) 433 state->noise[i] = char_dist[rand() & 0xff]; 479 char *Ref = (char *)(noise + (rand() & 0xff)); [all...] |
/external/libvpx/vp8/encoder/arm/neon/ |
vp8_memcpy_neon.asm | 55 ands r3, r2, #0xff ;extra copy
|
/external/llvm/test/MC/ARM/ |
basic-thumb-instructions.s | 67 @ CHECK: add r2, sp, #1020 @ encoding: [0xff,0xaa] 153 @ CHECK: bkpt #255 @ encoding: [0xff,0xbe] 219 @ CHECK: ldm r3, {r0, r1, r2, r3, r4, r5, r6, r7} @ encoding: [0xff,0xcb] 240 @ CHECK: ldr r3, [sp, #1020] @ encoding: [0xff,0x9b] 357 @ CHECK: movs r2, #255 @ encoding: [0xff,0x22] 495 @ CHECK: str r5, [sp, #1020] @ encoding: [0xff,0x95] 565 @ CHECK: sub sp, #508 @ encoding: [0xff,0xb0] 583 @ CHECK: svc #255 @ encoding: [0xff,0xdf]
|
/external/openssl/crypto/sha/ |
sha256t.c | 25 0xb4,0x10,0xff,0x61,0xf2,0x00,0x15,0xad }; 30 0xa3,0x3c,0xe4,0x59,0x64,0xff,0x21,0x67,
|
/external/openssl/ssl/ |
s2_lib.c | 441 p[0]=((unsigned char)(l>>16L))&0xFF; 442 p[1]=((unsigned char)(l>> 8L))&0xFF; 443 p[2]=((unsigned char)(l ))&0xFF; 521 buf[1]=(s->error_code>>8)&0xff; 522 buf[2]=(s->error_code)&0xff;
|
/external/proguard/src/proguard/optimize/ |
ChangedCodePrinter.java | 287 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "+ 288 Integer.toHexString(0x100|codeAttribute.code[index]&0xff).substring(1));
|
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/ |
SDL_mintaudio_gsxb.c | 225 resolution = spec->format & 0xff; 333 switch (spec->format & 0xff) {
|
/external/qemu/elff/ |
dwarf.h | 621 #define DW_OP_hi_user 0xff 664 #define DW_ATE_hi_user 0xff [all...] |
/external/qemu/hw/ |
arm_boot.c | 249 bootloader[1] |= info->board_id & 0xff; 250 bootloader[2] |= (info->board_id >> 8) & 0xff;
|
ne2000.c | 235 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; 284 next = index + ((total_len + 4 + 255) & ~0xff); 527 return 0xff;
|
usb-hid.c | 311 0x26, 0xff, 0x7f, /* Logical Maximum (0x7fff) */ 313 0x46, 0xff, 0x7f, /* Physical Maximum (0x7fff) */ 357 0x25, 0xff, /* Logical Maximum (255) */ 360 0x29, 0xff, /* Usage Maximum (255) */ 574 buf[1] = s->x & 0xff; 576 buf[3] = s->y & 0xff; 589 buf[0] = s->modifiers & 0xff; 689 switch(value & 0xff) {
|
/external/qemu/ |
loadpng.c | 81 png_set_filler(p, 0xff, PNG_FILLER_AFTER); 213 png_set_filler(p, 0xff, PNG_FILLER_AFTER);
|
/external/skia/src/ports/ |
SkFontHost_fontconfig.cpp | 65 return static_cast<SkTypeface::Style>(uniqueid & 0xff); 71 SkASSERT((style & 0xff) == style);
|
/external/sonivox/arm-fm-22k/host_src/ |
eas_config.c | 52 const EAS_U8 eas_MFIVendorIDMSB = (MFI_VENDOR_ID >> 8) & 0xff; 53 const EAS_U8 eas_MFIVendorIDLSB = MFI_VENDOR_ID & 0xff;
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_imaadpcm.c | 150 pState->decoderL.step = sTemp & 0xff; 165 pState->decoderR.step = sTemp & 0xff;
|
/external/sonivox/arm-hybrid-22k/host_src/ |
eas_config.c | 52 const EAS_U8 eas_MFIVendorIDMSB = (MFI_VENDOR_ID >> 8) & 0xff; 53 const EAS_U8 eas_MFIVendorIDLSB = MFI_VENDOR_ID & 0xff;
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_imaadpcm.c | 150 pState->decoderL.step = sTemp & 0xff; 165 pState->decoderR.step = sTemp & 0xff;
|
/external/sonivox/arm-wt-22k/host_src/ |
eas_config.c | 52 const EAS_U8 eas_MFIVendorIDMSB = (MFI_VENDOR_ID >> 8) & 0xff; 53 const EAS_U8 eas_MFIVendorIDLSB = MFI_VENDOR_ID & 0xff;
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_imaadpcm.c | 150 pState->decoderL.step = sTemp & 0xff; 165 pState->decoderR.step = sTemp & 0xff;
|
/external/tcpdump/ |
sctpConstants.h | 104 #define SCTP_MSGTYPE_MASK 0xff 524 #define DEAMON_MAGIC_VER_LEN 0xff
|