Home
last modified time | relevance | path

Searched refs:IsMore (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/MC/
DMCAsmInfo.cpp109 bool IsMore; in getSLEB128Size() local
114 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in getSLEB128Size()
116 } while (IsMore); in getSLEB128Size()
/external/llvm/include/llvm/CodeGen/
DMachineCodeEmitter.h193 bool IsMore; in emitSLEB128Bytes() local
198 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in emitSLEB128Bytes()
199 if (IsMore) Byte |= 0x80; in emitSLEB128Bytes()
201 } while (IsMore); in emitSLEB128Bytes()
DJITCodeEmitter.h196 bool IsMore; in emitSLEB128Bytes() local
201 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in emitSLEB128Bytes()
202 if (IsMore) Byte |= 0x80; in emitSLEB128Bytes()
204 } while (IsMore); in emitSLEB128Bytes()