Lines Matching refs:intptr_t
33 static uintptr_t NewContents(Assembler &Assemblr, intptr_t Capacity) { in NewContents()
38 void Label::linkTo(const Assembler &Asm, intptr_t Pos) { in linkTo()
92 intptr_t delta = Gap - computeGap(); in ~EnsureCapacity()
98 constexpr intptr_t OneKB = 1024; in AssemblerBuffer()
99 static constexpr intptr_t kInitialBufferCapacity = 4 * OneKB; in AssemblerBuffer()
114 intptr_t old_size = size(); in extendCapacity()
115 intptr_t old_capacity = capacity(); in extendCapacity()
116 constexpr intptr_t OneMB = 1 << 20; in extendCapacity()
117 intptr_t new_capacity = std::min(old_capacity * 2, old_capacity + OneMB); in extendCapacity()
129 intptr_t delta = new_contents - Contents; in extendCapacity()
154 intptr_t EndPosition = Buffer.size(); in emitIASBytes()
155 intptr_t CurPosition = 0; in emitIASBytes()
157 intptr_t NextFixupLoc = NextFixup->position(); in emitIASBytes()
158 for (intptr_t i = CurPosition; i < NextFixupLoc; ++i) { in emitIASBytes()
167 for (intptr_t i = CurPosition; i < EndPosition; ++i) { in emitIASBytes()