Home
last modified time | relevance | path

Searched refs:linkoffset (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/arm64/
Dassembler-arm64.cc644 int64_t linkoffset = label->pos(); in CheckLabelLinkChain() local
648 Instruction * link = InstructionAt(linkoffset); in CheckLabelLinkChain()
650 int64_t prevlinkoffset = linkoffset + linkpcoffset; in CheckLabelLinkChain()
652 end_of_chain = (linkoffset == prevlinkoffset); in CheckLabelLinkChain()
653 linkoffset = linkoffset + linkpcoffset; in CheckLabelLinkChain()
764 int linkoffset = label->pos(); in bind() local
765 Instruction* link = InstructionAt(linkoffset); in bind()
766 int prevlinkoffset = linkoffset + static_cast<int>(link->ImmPCOffset()); in bind()
770 DCHECK_GE(linkoffset, 0); in bind()
771 DCHECK(linkoffset < pc_offset()); in bind()
[all …]
/external/pcre/dist2/src/
Dpcre2_compile.c6711 int linkoffset; in compile_branch() local
6720 linkoffset = (bralink == NULL)? 0 : (int)(previous - bralink); in compile_branch()
6722 PUTINC(previous, 0, linkoffset); in compile_branch()
6819 int linkoffset; in compile_branch() local
6821 linkoffset = (bralink == NULL)? 0 : (int)(code - bralink); in compile_branch()
6823 PUTINC(code, 0, linkoffset); in compile_branch()
6836 int linkoffset = (int)(code - bralink + 1); in compile_branch() local
6837 PCRE2_UCHAR *bra = code - linkoffset; in compile_branch()
6841 PUTINC(code, 0, linkoffset); in compile_branch()
6842 PUT(bra, 1, linkoffset); in compile_branch()