OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xff
(Results
476 - 500
of
2888
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/skia/src/utils/
SkMD5.cpp
213
output[j ] = (uint8_t) (input[i] & 0
xff
);
214
output[j+1] = (uint8_t)((input[i] >> 8) & 0
xff
);
215
output[j+2] = (uint8_t)((input[i] >> 16) & 0
xff
);
216
output[j+3] = (uint8_t)((input[i] >> 24) & 0
xff
);
221
output[0] = (uint8_t) (input & 0
xff
);
222
output[1] = (uint8_t)((input >> 8) & 0
xff
);
223
output[2] = (uint8_t)((input >> 16) & 0
xff
);
224
output[3] = (uint8_t)((input >> 24) & 0
xff
);
225
output[4] = (uint8_t)((input >> 32) & 0
xff
);
226
output[5] = (uint8_t)((input >> 40) & 0
xff
);
[
all
...]
/hardware/qcom/msm8960/original-kernel-headers/linux/mfd/
msm-adie-codec.h
55
((reg) = ((packed >> 16) & (0
xff
))); \
56
((mask) = ((packed >> 8) & (0
xff
))); \
57
((val) = ((packed) & (0
xff
))); \
/external/srtp/crypto/cipher/
aes.c
[
all
...]
/frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp
218
*ptr++ = 0
xff
;
230
*ptr++ = (aac_frame_length >> 3) & 0
xff
;
685
*ptr++ = kPID_PMT & 0
xff
;
693
memset(ptr, 0
xff
, sizeLeft);
739
*ptr++ = kPID_PMT & 0
xff
;
755
*ptr++ = kPID_PCR & 0
xff
;
764
*ptr++ = (program_info_length & 0
xff
);
780
*ptr++ = track->PID() & 0
xff
;
789
*ptr++ = (ES_info_length & 0
xff
);
801
crcDataStart[2] = section_length & 0
xff
;
[
all
...]
/bionic/libc/kernel/arch-arm/asm/arch/
cpu.h
26
#define GET_OMAP_CLASS (system_rev & 0
xff
)
/bionic/libc/kernel/arch-mips/asm/dec/
kn02xa.h
46
#define KN02XA_MER_RES_0 (0
xff
<<0)
/bionic/libc/kernel/arch-mips/asm/mips-boards/
generic.h
64
#define MIPS_REVISION_SCONID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 24) & 0
xff
)
/bionic/libc/kernel/common/linux/
ipmi_msgdefs.h
52
#define IPMI_ERR_UNSPECIFIED 0
xff
/bionic/libm/upstream-freebsd/lib/msun/src/
s_modff.c
30
j0 = ((i0>>23)&0
xff
)-0x7f; /* exponent of x */
s_rintf.c
38
j0 = ((i0>>23)&0
xff
)-0x7f;
s_scalbnf.c
44
if (k==0
xff
) return x+x; /* NaN or Inf */
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
cpu.h
21
#define GET_OMAP_CLASS (system_rev & 0
xff
)
/development/ndk/platforms/android-3/include/linux/
ipmi_msgdefs.h
45
#define IPMI_ERR_UNSPECIFIED 0
xff
/development/ndk/platforms/android-9/arch-mips/include/asm/dec/
kn02xa.h
46
#define KN02XA_MER_RES_0 (0
xff
<<0)
/development/ndk/platforms/android-9/arch-mips/include/asm/mips-boards/
generic.h
64
#define MIPS_REVISION_SCONID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 24) & 0
xff
)
/external/bluetooth/bluedroid/gki/ulinux/
data_types.h
59
#define UINT16_LOW_BYTE(x) ((x) & 0
xff
)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java
409
left = (in[inOff + 0] & 0
xff
) << 24;
410
left |= (in[inOff + 1] & 0
xff
) << 16;
411
left |= (in[inOff + 2] & 0
xff
) << 8;
412
left |= (in[inOff + 3] & 0
xff
);
414
right = (in[inOff + 4] & 0
xff
) << 24;
415
right |= (in[inOff + 5] & 0
xff
) << 16;
416
right |= (in[inOff + 6] & 0
xff
) << 8;
417
right |= (in[inOff + 7] & 0
xff
);
485
out[outOff + 0] = (byte)((right >>> 24) & 0
xff
);
486
out[outOff + 1] = (byte)((right >>> 16) & 0
xff
);
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS12ParametersGenerator.java
61
int x = (b[b.length - 1] & 0
xff
) + (a[aOff + b.length - 1] & 0
xff
) + 1;
68
x += (b[i] & 0
xff
) + (a[aOff + i] & 0
xff
);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO10126d2Padding.java
70
int count = in[in.length - 1] & 0
xff
;
PKCS7Padding.java
59
int count = in[in.length - 1] & 0
xff
;
X923Padding.java
71
int count = in[in.length - 1] & 0
xff
;
/external/chromium/net/websockets/
websocket_net_log_params.cc
35
key += base::StringPrintf("\\x%02x", headers_[pos] & 0
xff
);
/external/clang/test/Sema/
parentheses.c
20
(void)(i & 0
xff
< 30); // expected-warning {{& has lower precedence than <}} \
/external/eigen/blas/
common.h
36
#define INVALID 0
xff
58
return OP(*op)!=0
xff
;
63
return SIDE(*side)!=0
xff
;
68
return UPLO(*uplo)!=0
xff
;
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DES.java
287
left = (in[inOff + 0] & 0
xff
) << 24;
288
left |= (in[inOff + 1] & 0
xff
) << 16;
289
left |= (in[inOff + 2] & 0
xff
) << 8;
290
left |= (in[inOff + 3] & 0
xff
);
292
right = (in[inOff + 4] & 0
xff
) << 24;
293
right |= (in[inOff + 5] & 0
xff
) << 16;
294
right |= (in[inOff + 6] & 0
xff
) << 8;
295
right |= (in[inOff + 7] & 0
xff
);
363
out[outOff + 0] = (byte) ((right >>> 24) & 0
xff
);
364
out[outOff + 1] = (byte) ((right >>> 16) & 0
xff
);
[
all
...]
Completed in 773 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>