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;
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 473 uint64_t EncodedAttrs) {
478 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
484 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
485 (EncodedAttrs & 0xffff));
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 454 uint64_t EncodedAttrs) {
459 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
465 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
466 (EncodedAttrs & 0xffff));
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 733 uint64_t EncodedAttrs) {
738 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16;
744 B.addRawValue(((EncodedAttrs & (0xfffffULL << 32)) >> 11) |
745 (EncodedAttrs & 0xffff));
    [all...]

Completed in 672 milliseconds