HomeSort by relevance Sort by last modified time
    Searched refs:x3F (Results 101 - 125 of 748) sorted by null

1 2 3 45 6 7 8 91011>>

  /hardware/qcom/msm8998/gpt-utils/
gpt-utils.h 75 #define AB_SLOT_ACTIVE_VAL 0x3F
  /art/compiler/debug/dwarf/
debug_frame_opcode_writer.h 52 if (delta <= 0x3F) {
122 if (0 <= reg.num() && reg.num() <= 0x3F) {
142 if (0 <= reg.num() && reg.num() <= 0x3F) {
dwarf_test.cc 49 for (int i : {0, 1, 0x3F, 0x40, 0xFF, 0x100, 0xFFFF, 0x10000}) {
77 opcodes.Offset(Reg(0x3F), -offset);
95 opcodes.Restore(Reg(0x3F));
  /external/libexif/libexif/
exif-utils.c 236 *out++ = (*in++ & 0x3F) | 0x80;
244 *out++ = ((*in >> 6) & 0x3F) | 0x80;
245 *out++ = (*in++ & 0x3F) | 0x80;
  /external/llvm/lib/Target/AMDGPU/
SIDefines.h 216 #define S_00B028_VGPRS(x) (((x) & 0x3F) << 0)
257 #define S_00B848_VGPRS(x) (((x) & 0x3F) << 0)
258 #define G_00B848_VGPRS(x) (((x) >> 0) & 0x3F)
  /external/lzma/CPP/7zip/Crypto/
7zAes.cpp 39 if (NumCyclesPower == 0x3F)
198 // _key.NumCyclesPower = 0x3F;
224 _key.NumCyclesPower = b0 & 0x3F;
245 || _key.NumCyclesPower == 0x3F) ? S_OK : E_NOTIMPL;
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java 443 byteBuffer.put((byte) (0x80 | (0x3F & c)));
447 byteBuffer.put((byte) (0x80 | (0x3F & (c >>> 6))));
448 byteBuffer.put((byte) (0x80 | (0x3F & c)));
457 byteBuffer.put((byte) (0x80 | (0x3F & (codePoint >>> 12))));
458 byteBuffer.put((byte) (0x80 | (0x3F & (codePoint >>> 6))));
459 byteBuffer.put((byte) (0x80 | (0x3F & codePoint)));
484 bytes[j++] = (byte) (0x80 | (0x3F & c));
488 bytes[j++] = (byte) (0x80 | (0x3F & (c >>> 6)));
489 bytes[j++] = (byte) (0x80 | (0x3F & c));
499 bytes[j++] = (byte) (0x80 | (0x3F & (codePoint >>> 12)))
    [all...]
  /libcore/ojluni/src/main/java/java/io/
DataInputStream.java 634 (char2 & 0x3F));
648 ((char2 & 0x3F) << 6) |
649 ((char3 & 0x3F) << 0));
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
meminit_utils.c 29 0x3F, 0x3E, 0x3D, 0x3C, 0x3B, 0x3A, 0x39, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33, 0x32, 0x31, 0x30, // 00 - 15
69 // BL0 -> B0DLLPICODER0[29:24] (0x00-0x3F)
70 // BL1 -> B1DLLPICODER0[29:24] (0x00-0x3F)
98 if (pi_count > 0x3F)
135 // BL0 -> B0DLLPICODER0[29:24] (0x00-0x3F)
136 // BL1 -> B1DLLPICODER0[29:24] (0x00-0x3F)
141 tempD &= 0x3F;
176 // error check (shouldn't go above 0x3F)
246 // BL0 -> B0DLLPICODER0[21:16] (0x00-0x3F)
247 // BL1 -> B1DLLPICODER0[21:16] (0x00-0x3F)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 107 os.Put(static_cast<Ch>(0x80 | ((codepoint & 0x3F))));
111 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F)));
112 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F)));
117 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 12) & 0x3F)));
118 os.Put(static_cast<Ch>(0x80 | ((codepoint >> 6) & 0x3F)));
119 os.Put(static_cast<Ch>(0x80 | (codepoint & 0x3F)));
  /external/lzma/C/
Sha256.c 184 unsigned pos = (unsigned)p->count & 0x3F;
217 unsigned pos = (unsigned)p->count & 0x3F;
224 pos &= 0x3F;
  /bionic/libc/kernel/uapi/linux/
userfaultfd.h 32 #define _UFFDIO_API (0x3F)
  /external/kernel-headers/original/uapi/linux/
userfaultfd.h 44 * 0x3F. UFFDIO_API is the fixed number, everything else can be
55 #define _UFFDIO_API (0x3F)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
InitialObjectDescriptor.java 78 urlFlag = (data & 0x3F) >> 5;
  /external/vboot_reference/firmware/include/
vboot_nvstorage.h 197 #define VBNV_RECOVERY_RO_UNSPECIFIED 0x3F
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4def.h 117 #define SHORT_VIDEO_END_MARKER 0x3F
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4def.h 189 #define SHORT_VIDEO_END_MARKER 0x3F
  /hardware/nxp/nfc/halimpl/hal/
phNxpNciHal.h 50 #define NCI_OID_MASK 0x3F
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
utf8_utils.cpp 30 const uint8_t Utf8Utils::TRAILING_BYTE_CODE_POINT_BITS_MASK = 0x3F;
  /system/core/libpixelflinger/tests/arch-arm64/col32cb16blend/
col32cb16blend_test.c 72 int dstG = (d>>5)&0x3f;
75 int srcG = (src >> ( 8+2))&0x3F;
  /system/core/libpixelflinger/tests/arch-mips/col32cb16blend/
col32cb16blend_test.c 73 int dstG = (d>>5)&0x3f;
76 int srcG = (src >> ( 8+2))&0x3F;
  /system/core/libpixelflinger/tests/arch-mips/t32cb16blend/
t32cb16blend_test.c 72 int dstG = (d>>5)&0x3f;
75 int srcG = (s >> ( 8+2))&0x3F;
85 // srcG = srcG > 0x3F? 0x3F: srcG;
  /system/core/libpixelflinger/tests/arch-mips64/col32cb16blend/
col32cb16blend_test.c 73 int dstG = (d>>5)&0x3f;
76 int srcG = (src >> ( 8+2))&0x3F;
  /system/media/audio_utils/spdif/
AC3FrameScanner.cpp 229 uint32_t frmsizcod = mHeaderBuffer[4] & 0x3F; // frame size code
  /system/nfc/src/nfc/include/
llcp_defs.h 164 #define LLCP_UPPER_BOUND_LOCAL_SAP 0x3F

Completed in 568 milliseconds

1 2 3 45 6 7 8 91011>>