/external/skia/src/opts/ |
SkBitmapProcState_opts_SSSE3.cpp | 406 const unsigned sub_y = y0 & 0xF; 651 unsigned subY = y0 & 0xF; 657 unsigned subX = x0 & 0xF;
|
/external/chromium_org/content/common/gpu/media/ |
exynos_video_encode_accelerator.cc | 149 input_allocated_size_.SetSize((input_visible_size_.width() + 0xF) & ~0xF, 150 (input_visible_size_.height() + 0xF) & ~0xF); 154 (converted_visible_size_.width() + 0xF) & ~0xF, 155 (converted_visible_size_.height() + 0xF) & ~0xF); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Color.cpp | 147 | (value & 0xF) << 4 | (value & 0xF);
|
/external/chromium_org/third_party/skia/src/core/ |
SkPathRef.cpp | 128 segmentMask = (packed >> kSegmentMask_SerializationShift) & 0xF; 132 segmentMask = (oldPacked >> SkPath::kOldSegmentMask_SerializationShift) & 0xF;
|
/external/chromium_org/third_party/skia/src/effects/ |
SkTableColorFilter.cpp | 173 int count = gCountNibBits[fFlags & 0xF]; 197 SkDEBUGCODE(size_t count = gCountNibBits[fFlags & 0xF]);
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libico.cpp | 328 int pixel = (byte >> 4) & 0xF; 335 pixel = byte & 0xF;
|
/external/llvm/lib/Support/ |
raw_ostream.cpp | 204 *this << hexdigit((c >> 4 & 0xF)); 205 *this << hexdigit((c >> 0) & 0xF);
|
/external/llvm/tools/llvm-readobj/ |
MachODumper.cpp | 424 W.printEnum ("RefType", static_cast<uint16_t>(Symbol.Flags & 0xF), 426 W.printFlags ("Flags", static_cast<uint16_t>(Symbol.Flags & ~0xF),
|
/external/llvm/tools/macho-dump/ |
macho-dump.cpp | 116 outs() << hexdigit((Data[i] >> 4) & 0xF, /*LowerCase=*/true); 117 outs() << hexdigit((Data[i] >> 0) & 0xF, /*LowerCase=*/true);
|
/external/lzma/CPP/7zip/UI/Console/ |
Main.cpp | 295 stdStream << GetHex((Byte)((b >> 4) & 0xF));
296 stdStream << GetHex((Byte)(b & 0xF));
|
/external/skia/src/core/ |
SkPathRef.cpp | 128 segmentMask = (packed >> kSegmentMask_SerializationShift) & 0xF; 132 segmentMask = (oldPacked >> SkPath::kOldSegmentMask_SerializationShift) & 0xF;
|
/external/skia/src/effects/ |
SkTableColorFilter.cpp | 173 int count = gCountNibBits[fFlags & 0xF]; 197 SkDEBUGCODE(size_t count = gCountNibBits[fFlags & 0xF]);
|
/external/skia/src/images/ |
SkImageDecoder_libico.cpp | 328 int pixel = (byte >> 4) & 0xF; 335 pixel = byte & 0xF;
|
/external/valgrind/main/cachegrind/ |
cg-x86-amd64.c | 88 family = (((cpuid1_eax >> 20) & 0xff) << 4) + ((cpuid1_eax >> 8) & 0xf); 89 model = (((cpuid1_eax >> 16) & 0xf) << 4) + ((cpuid1_eax >> 4) & 0xf); 352 switch (bits_15_12 & 0xF) { 358 case 0xF: /* fully associative */ 400 LLc->assoc = decode_AMD_cache_L2_L3_assoc((L2i >> 12) & 0xf); 409 LLc->assoc = decode_AMD_cache_L2_L3_assoc((L3i >> 12) & 0xf);
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
mb_motion_comp.cpp | 226 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + 233 dy = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] +
|
/hardware/qcom/media/mm-video-legacy/vidc/venc/inc/ |
omx_video_base.h | 368 OMX_COMPONENT_LOADED_STOP_PENDING = 0xF, 398 OMX_COMPONENT_GENERATE_RESUME_DONE = 0xF,
|
/hardware/qcom/media/mm-video-v4l2/vidc/venc/inc/ |
omx_video_base.h | 384 OMX_COMPONENT_LOADED_STOP_PENDING = 0xF, 413 OMX_COMPONENT_GENERATE_RESUME_DONE = 0xF,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_hashlib.py | 32 r = r + h[(i >> 4) & 0xF] + h[i & 0xF]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_hashlib.py | 32 r = r + h[(i >> 4) & 0xF] + h[i & 0xF]
|
/bionic/libc/arch-arm/bionic/ |
memset.S | 67 ands r3, r3, #0xF
|
/bionic/libc/arch-arm/cortex-a15/bionic/ |
memcpy_base.S | 89 ands r3, r3, #0xF
|
/bionic/libc/arch-arm/cortex-a9/bionic/ |
memcpy_base.S | 57 ands r3, r3, #0xF
|
/external/aac/libAACdec/src/ |
aacdec_tns.cpp | 189 static const SCHAR neg_mask[] = { ~0x3, ~0x7, ~0xF };
|
/external/chromium_org/net/websockets/ |
websocket_frame.cc | 22 const uint8 kOpCodeMask = 0xF;
|
websocket_frame_parser.cc | 25 const uint8 kOpCodeMask = 0xF;
|