Searched defs:EncodedAttrs (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/slang/
H A Dlegacy_bitcode.h22 uint64_t EncodedAttrs = A.Raw(i) & 0xffff; local
26 EncodedAttrs |= (A.getParamAlignment(i) << 16);
29 EncodedAttrs |= (A.Raw(i) & (0xfffull << 21)) << 11;
30 return EncodedAttrs;
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp454 uint64_t EncodedAttrs) {
459 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
465 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
466 (EncodedAttrs & 0xffff));
453 decodeLLVMAttributesForBitcode(AttrBuilder &B, uint64_t EncodedAttrs) argument
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp733 uint64_t EncodedAttrs) {
738 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
744 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
745 (EncodedAttrs & 0xffff));
732 decodeLLVMAttributesForBitcode(AttrBuilder &B, uint64_t EncodedAttrs) argument

Completed in 169 milliseconds