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

<<31323334353637383940>>

  /external/openssl/crypto/asn1/
a_enum.c 99 buf[i]=(int)d&0xff;
  /external/openssl/crypto/bn/
bn_rand.c 132 mask=0xff<<(bit+1);
  /external/ppp/pppd/
pppcrypt.c 108 *out = c & 0xff;
  /external/qemu/distrib/sdl-1.2.12/src/video/dc/
SDL_dcevents.c 76 buttons = cond.buttons^0xff;
  /external/qemu/hw/
armv7m_nvic.c 341 s->gic.priority1[irq++][0] = value & 0xff;
342 s->gic.priority1[irq++][0] = (value >> 8) & 0xff;
343 s->gic.priority1[irq++][0] = (value >> 16) & 0xff;
344 s->gic.priority1[irq][0] = (value >> 24) & 0xff;
pci_host.h 82 return 0xff;
  /external/qemu/target-i386/
machine.c 155 for (i = 0; i < (env->mcg_cap & 0xff); i++) {
212 guess_mmx = ((fptag == 0xff) && (fpus & 0x3800) == 0);
258 fptag ^= 0xff;
353 for (i = 0; i < (env->mcg_cap & 0xff); i++) {
  /external/quake/quake/src/QW/client/
md4.c 265 output[j] = (unsigned char)(input[i] & 0xff);
266 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
267 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
268 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
  /external/skia/gpu/include/
GrGLTexture.h 140 void invalidate() { memset(this, 0xff, sizeof(TexParams)); }
  /external/webkit/Source/JavaScriptCore/wtf/
CryptographicallyRandomNumber.cpp 128 return (m_stream.s[(si + sj) & 0xff]);
  /external/webkit/Source/WebCore/platform/image-decoders/webp/
WEBPImageDecoder.cpp 136 buffer.setRGBA(x, y, src[bytesPerPixel * x + 0], src[bytesPerPixel * x + 1], src[bytesPerPixel * x + 2], 0xff);
  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumWin.cpp 257 return Color(0x00, 0x00, 0xff); // Royal blue.
259 return Color(GetRValue(color), GetGValue(color), GetBValue(color), 0xff);
267 return Color(GetRValue(color), GetGValue(color), GetBValue(color), 0xff);
273 return Color(0xff, 0xff, 0xcc); // Pale yellow.
275 return Color(GetRValue(color), GetGValue(color), GetBValue(color), 0xff);
285 return Color(0xff, 0x96, 0x32); // Orange.
290 return Color(0xff, 0xff, 0x96); // Yellow.
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 218 memset(spare, 0xff, spareSize);
257 memset(bytes,0xff,sizeof(bytes));
394 memset(bytes,0xff,sizeof(bytes));
399 memset(bytes,0xff,sizeof(bytes));
  /frameworks/base/media/java/android/drm/mobile1/
DrmRawContent.java 311 return b[0] & 0xff;
  /frameworks/base/media/libdrm/mobile1/include/objmng/
svc_drm.h 33 #define TYPE_DRM_UNKNOWN 0xff /**< The mime type is unknown */
  /frameworks/base/services/java/com/android/server/wm/
DimSurface.java 78 mDimSurface.setAlpha(((color>>24)&0xff)/255.0f);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SIMRecords.java 332 if (mailboxIndex != 0 && mailboxIndex != 0xff) {
373 } else if (countWaiting > 0xff) {
376 countWaiting = 0xff;
596 mailboxIndex = (int)data[0] & 0xff;
599 if (mailboxIndex != 0 && mailboxIndex != 0xff) {
719 if ((data[0] & 0xff) == 0xff) {
726 countVoiceMessages = data[1] & 0xff;
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimServiceTableTest.java 35 0x00, (byte) 0xff};
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMutateActivity.java 95 color |= (int) ((0xff * ((i + mOffset) % mSlice) / (float) mSlice)) <<
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/
bcmip.h 71 ((uint8 *)(a))[2] & ((uint8 *)(a))[3]) == 0xff)
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmip.h 71 ((uint8 *)(a))[2] & ((uint8 *)(a))[3]) == 0xff)
  /hardware/invensense/mlsdk/mllite/
ml.c 462 regs[0] = (unsigned char)((inv_obj.motion_duration >> 8) & 0xff);
463 regs[1] = (unsigned char)(inv_obj.motion_duration & 0xff);
864 regs[0] = (unsigned char)((sf >> 8) & 0xff);
865 regs[1] = (unsigned char)(sf & 0xff);
    [all...]
mlsupervisor.c 525 regs[0] = (unsigned char)((accSF >> 24) & 0xff);
526 regs[1] = (unsigned char)((accSF >> 16) & 0xff);
527 regs[2] = (unsigned char)((accSF >> 8) & 0xff);
528 regs[3] = (unsigned char)(accSF & 0xff);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByteAbstractTest.java 140 if (actual[i] == (bytes[i] & 0xff)) {
142 // i, bytes[i] & 0xff, (int) actual[i], (int) expected[i]);
145 // i, bytes[i] & 0xff, (int) actual[i], (int) expected[i]);
150 // i, bytes[i] & 0xff, (int) actual[i], (int) expected[i]);
  /packages/apps/Phone/src/com/android/phone/
BitmapUtils.java 130 int alpha = 0xff;

Completed in 646 milliseconds

<<31323334353637383940>>