Home
last modified time | relevance | path

Searched refs:ByteOffset (Results 1 – 25 of 34) sorted by relevance

12

/external/llvm/lib/CodeGen/AsmPrinter/
DDebugLocStream.h44 size_t ByteOffset; member
46 Entry(const MCSymbol *BeginSym, const MCSymbol *EndSym, size_t ByteOffset, in Entry()
48 : BeginSym(BeginSym), EndSym(EndSym), ByteOffset(ByteOffset), in Entry()
117 .slice(Entries[EI].ByteOffset, getNumBytes(EI)); in getBytes()
143 return DWARFBytes.size() - Entries[EI].ByteOffset; in getNumBytes()
144 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset; in getNumBytes()
DDebugLocStream.cpp29 if (Entries.back().ByteOffset != DWARFBytes.size()) in finalizeEntry()
/external/icu/icu4c/source/layout/
DLigatureSubstProc.h32 …virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTable…
57 ByteOffset ligatureActionTableOffset;
58 ByteOffset componentTableOffset;
59 ByteOffset ligatureTableOffset;
DStateTableProcessor.h31 …virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTable…
42 ByteOffset classTableOffset;
43 ByteOffset stateArrayOffset;
44 ByteOffset entryTableOffset;
DStateTables.h58 ByteOffset classTableOffset;
59 ByteOffset stateArrayOffset;
60 ByteOffset entryTableOffset;
103 ByteOffset newStateOffset;
DLigatureSubstitution.h25 ByteOffset ligatureActionTableOffset;
26 ByteOffset componentTableOffset;
27 ByteOffset ligatureTableOffset;
DContextualGlyphInsertion.h46 ByteOffset currentInsertionListOffset;
47 ByteOffset markedInsertionListOffset;
DContextualGlyphSubstProc.h30 …virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTable…
55 ByteOffset substitutionTableOffset;
DLigatureSubstProc.cpp45 ByteOffset LigatureSubstitutionProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 … in processStateEntry()
50 ByteOffset newState = SWAPW(entry->newStateOffset); in processStateEntry()
65 ByteOffset actionOffset = flags & lsfActionOffsetMask; in processStateEntry()
DContextualGlyphSubstProc.cpp44 ByteOffset ContextualGlyphSubstitutionProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le… in processStateEntry()
48 ByteOffset newState = SWAPW(entry->newStateOffset); in processStateEntry()
DLayoutTables.h21 typedef le_int16 ByteOffset; typedef
DContextualGlyphSubstitution.h24 ByteOffset substitutionTableOffset;
DIndicRearrangementProcessor.h30 …virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTable…
DStateTableProcessor.cpp49 ByteOffset currentState = stateArrayOffset; in process()
DLigatureSubstProc2.cpp69 ByteOffset actionOffset = flags & lsfPerformAction; in processStateEntry()
DIndicRearrangementProcessor.cpp41 ByteOffset IndicRearrangementProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &c… in processStateEntry()
45 ByteOffset newState = SWAPW(entry->newStateOffset); in processStateEntry()
/external/llvm/lib/Analysis/
DLoads.cpp74 int64_t ByteOffset = 0; in isSafeToLoadUnconditionally() local
76 Base = GetPointerBaseWithConstantOffset(V, ByteOffset, DL); in isSafeToLoadUnconditionally()
78 if (ByteOffset < 0) // out of bounds in isSafeToLoadUnconditionally()
110 if (ByteOffset + LoadSize <= DL.getTypeAllocSize(BaseType) && in isSafeToLoadUnconditionally()
111 ((ByteOffset % Align) == 0)) in isSafeToLoadUnconditionally()
DConstantFolding.cpp278 static bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, in ReadDataFromGlobal() argument
281 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) && in ReadDataFromGlobal()
297 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) { in ReadDataFromGlobal()
298 int n = ByteOffset; in ReadDataFromGlobal()
302 ++ByteOffset; in ReadDataFromGlobal()
310 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); in ReadDataFromGlobal()
314 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); in ReadDataFromGlobal()
318 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL); in ReadDataFromGlobal()
325 unsigned Index = SL->getElementContainingOffset(ByteOffset); in ReadDataFromGlobal()
327 ByteOffset -= CurEltOffset; in ReadDataFromGlobal()
[all …]
/external/llvm/unittests/Transforms/IPO/
DLowerBitSets.cpp19 uint64_t ByteOffset; in TEST() member
61 EXPECT_EQ(T.ByteOffset, BSI.ByteOffset); in TEST()
/external/llvm/include/llvm/Transforms/IPO/
DLowerBitSets.h38 uint64_t ByteOffset; member
/external/llvm/lib/Transforms/IPO/
DLowerBitSets.cpp51 if (Offset < ByteOffset) in containsGlobalOffset()
54 if ((Offset - ByteOffset) % (uint64_t(1) << AlignLog2) != 0) in containsGlobalOffset()
57 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2; in containsGlobalOffset()
98 OS << "offset " << ByteOffset << " size " << BitSize << " align " in print()
128 BSI.ByteOffset = Min; in build()
470 CombinedGlobalIntAddr, ConstantInt::get(IntPtrTy, BSI.ByteOffset)); in lowerBitSetCall()
/external/llvm/lib/Target/AMDGPU/
DAMDGPUISelDAGToDAG.cpp802 int64_t ByteOffset = C->getSExtValue(); in SelectDS1Addr1Offset() local
803 if (isUInt<16>(ByteOffset)) { in SelectDS1Addr1Offset()
813 if (isDSOffsetLegal(Sub, ByteOffset, 16)) { in SelectDS1Addr1Offset()
1113 int64_t ByteOffset = C->getSExtValue(); in SelectSMRDOffset() local
1115 ByteOffset >> 2 : ByteOffset; in SelectSMRDOffset()
1123 if (!isUInt<32>(EncodedOffset) || !isUInt<32>(ByteOffset)) in SelectSMRDOffset()
1130 SDValue C32Bit = CurDAG->getTargetConstant(ByteOffset, SL, MVT::i32); in SelectSMRDOffset()
/external/mesa3d/src/gallium/drivers/radeon/
DR600ISelLowering.cpp361 unsigned ByteOffset = DwordOffset * 4; in LowerImplicitParameter() local
366 assert(isInt<16>(ByteOffset)); in LowerImplicitParameter()
369 DAG.getConstant(ByteOffset, MVT::i32), // PTR in LowerImplicitParameter()
/external/libnfc-nci/src/nfc/tags/
Drw_t2t_ndef.c2553 INT8 ByteOffset = 0; in rw_t2t_set_lock_tlv() local
2566 ByteOffset = (INT8) (addr - xx * tags_pow (2, BytePerPage)); in rw_t2t_set_lock_tlv()
2568 if (ByteOffset < 16) in rw_t2t_set_lock_tlv()
2575 if ((ByteOffset < 16) && (BytePerPage < 16) && (PageAddr < 16)) in rw_t2t_set_lock_tlv()
2581 UINT8_TO_BE_STREAM (p, (PageAddr << 4 | ByteOffset)); in rw_t2t_set_lock_tlv()
2584 p_t2t->tlv_value[0] = PageAddr << 4 | ByteOffset; in rw_t2t_set_lock_tlv()
/external/e2fsprogs/lib/ext2fs/
Dnt_io.c89 IN PLARGE_INTEGER ByteOffset OPTIONAL,
104 IN PLARGE_INTEGER ByteOffset OPTIONAL,

12