/third_party/musl/src/string/aarch64/ |
H A D | memset.S | 36 tbz count, 3, 1f 41 1: tbz count, 2, 2f 47 tbz count, 1, 3f 56 tbz count, 5, 1f
|
H A D | memcpy.S | 74 tbz count, 3, .Lcopy8 84 tbz count, 2, .Lcopy4
|
/third_party/optimized-routines/string/aarch64/ |
H A D | memset.S | 38 tbz count, 3, 1f 43 1: tbz count, 2, 2f 49 tbz count, 1, 3f 58 tbz count, 5, 1f
|
H A D | memcpy-advsimd.S | 76 tbz count, 3, L(copy8) 86 tbz count, 2, L(copy4)
|
H A D | strcpy-mte.S | 85 tbz len, 4, L(less16) 102 tbz len, 3, L(less8)
|
H A D | memcpy.S | 80 tbz count, 3, L(copy8) 90 tbz count, 2, L(copy4)
|
H A D | strncmp-mte.S | 108 tbz limit, #63, L(not_limit)
|
H A D | strncmp.S | 77 tbz limit_wd, #63, L(not_limit)
|
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 822 tbz sym, 7, lit_loop 884 tbz sym, 6, len8_loop 899 tbz state, FLAG_STATE_BITS, copy_match 918 tbz sym, 5, slot_loop 1188 tbz sym, 8, litm_loop
|
/third_party/toybox/toys/posix/ |
H A D | tar.c | 917 char *tbz[] = {".tbz", ".tbz2", ".tar.bz", ".tar.bz2"}; in tar_main() local 922 else for (len = 0; len<ARRAY_LEN(tbz); len++) in tar_main() 923 if (strend(TT.f, tbz[len])) toys.optflags |= FLAG_j; in tar_main()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | assembler-arm64.h | 403 void tbz(const Register& rt, unsigned bit_pos, Label* label); 404 void tbz(const Register& rt, unsigned bit_pos, int imm14);
|
H A D | macro-assembler-arm64.cc | 1035 tbz(rt, bit_pos, &done); in Tbnz() 1054 tbz(rt, bit_pos, label); in Tbz()
|
H A D | assembler-arm64.cc | 530 // Tbz(label); // First tbz. Pointing to unconditional branch. in RemoveBranchFromLabelLinkChain() 532 // Tbz(label); // Second tbz. Pointing to the first tbz. in RemoveBranchFromLabelLinkChain() 534 // and this function is called to remove the first tbz from the label link in RemoveBranchFromLabelLinkChain() 535 // chain. Since tbz has a range of +-32KB, the second tbz cannot point to in RemoveBranchFromLabelLinkChain() 806 void Assembler::tbz(const Register& rt, unsigned bit_pos, int imm14) { in tbz() function in v8::internal::Assembler 811 void Assembler::tbz(const Register& rt, unsigned bit_pos, Label* label) { in tbz() function in v8::internal::Assembler 812 tbz(rt, bit_pos, LinkAndGetInstructionOffsetTo(label)); in tbz()
|
/third_party/vixl/test/aarch64/ |
H A D | test-disasm-aarch64.cc | 942 COMPARE_PREFIX(tbz(w4, 0, INST_OFF(0x7ffc)), "tbz w4, #0, #+0x7ffc"); in TEST() 943 COMPARE_PREFIX(tbz(x5, 63, INST_OFF(-0x8000)), "tbz x5, #63, #-0x8000"); in TEST() 944 COMPARE_PREFIX(tbz(w6, 31, INST_OFF(0)), "tbz w6, #31, #+0x0"); in TEST() 945 COMPARE_PREFIX(tbz(x7, 31, INST_OFF(0x4)), "tbz w7, #31, #+0x4"); in TEST() 946 COMPARE_PREFIX(tbz(x8, 32, INST_OFF(0x8)), "tbz x in TEST() [all...] |
H A D | test-cpu-features-aarch64.cc | 507 TEST_NONE(tbz_0, tbz(x0, 24, &label)) 508 TEST_NONE(tbz_1, tbz(x0, 60, &label)) 509 TEST_NONE(tbz_2, tbz(w0, 13, &label))
|
/third_party/vixl/src/aarch64/ |
H A D | macro-assembler-aarch64.cc | 730 tbz(rt, bit_pos, &done); in Emit() 768 tbz(rt, bit_pos, label); in Emit()
|
H A D | assembler-aarch64.cc | 421 void Assembler::tbz(const Register& rt, unsigned bit_pos, int64_t imm14) { in tbz() function in vixl::aarch64::Assembler 427 void Assembler::tbz(const Register& rt, unsigned bit_pos, Label* label) { in tbz() function in vixl::aarch64::Assembler 430 tbz(rt, bit_pos, static_cast<int>(offset)); in tbz()
|
H A D | assembler-aarch64.h | 638 void tbz(const Register& rt, unsigned bit_pos, Label* label); 641 void tbz(const Register& rt, unsigned bit_pos, int64_t imm14);
|