HomeSort by relevance Sort by last modified time
    Searched refs:EncodedAttrs (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/slang/
legacy_bitcode.h 22 uint64_t EncodedAttrs = A.Raw(i) & 0xffff;
26 EncodedAttrs |= (A.getParamAlignment(i) << 16);
29 EncodedAttrs |= (A.Raw(i) & (0xfffull << 21)) << 11;
30 return EncodedAttrs;
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 822 uint64_t EncodedAttrs) {
827 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
833 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
834 (EncodedAttrs & 0xffff));
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 132 milliseconds