Home
last modified time | relevance | path

Searched refs:EncodedAttrs (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/slang/
Dlegacy_bitcode.h22 uint64_t EncodedAttrs = A.Raw(i) & 0xffff; in encodeLLVMAttributesForBitcode() local
26 EncodedAttrs |= (A.getParamAlignment(i) << 16); in encodeLLVMAttributesForBitcode()
29 EncodedAttrs |= (A.Raw(i) & (0xfffull << 21)) << 11; in encodeLLVMAttributesForBitcode()
30 return EncodedAttrs; in encodeLLVMAttributesForBitcode()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp822 uint64_t EncodedAttrs) { in decodeLLVMAttributesForBitcode() argument
827 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16; in decodeLLVMAttributesForBitcode()
833 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) | in decodeLLVMAttributesForBitcode()
834 (EncodedAttrs & 0xffff)); in decodeLLVMAttributesForBitcode()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp1097 uint64_t EncodedAttrs) { in decodeLLVMAttributesForBitcode() argument
1102 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16; in decodeLLVMAttributesForBitcode()
1108 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) | in decodeLLVMAttributesForBitcode()
1109 (EncodedAttrs & 0xffff)); in decodeLLVMAttributesForBitcode()