/third_party/vixl/test/aarch64/ |
H A D | test-api-aarch64.cc | 188 VIXL_CHECK(sp.GetBit() == wsp.GetBit()); in TEST() 394 VIXL_CHECK(wsp.IsValid()); in TEST() 406 VIXL_CHECK(wsp.IsValidRegister()); in TEST() 412 VIXL_CHECK(!wsp.IsValidVRegister()); in TEST() 418 VIXL_CHECK(!wsp.IsValidFPRegister()); in TEST() 465 VIXL_CHECK(static_cast<CPURegister>(wsp).IsValid()); in TEST() 477 VIXL_CHECK(static_cast<CPURegister>(wsp).IsValidRegister()); in TEST() 483 VIXL_CHECK(!static_cast<CPURegister>(wsp).IsValidVRegister()); in TEST() 489 VIXL_CHECK(!static_cast<CPURegister>(wsp).IsValidFPRegister()); in TEST() 1252 temps.Include(xzr, wsp); in TEST() [all...] |
H A D | test-disasm-aarch64.cc | 233 COMPARE(add(w0, wsp, Operand(0)), "mov w0, wsp"); in TEST() 236 COMPARE(add(w1, wsp, Operand(8)), "add w1, wsp, #0x8 (8)"); in TEST() 238 COMPARE(add(wsp, wsp, Operand(42)), "add wsp, wsp, #0x2a (42)"); in TEST() 240 COMPARE(adds(wzr, wsp, Operand(9)), "cmn wsp, # in TEST() [all...] |
H A D | test-utils-aarch64.cc | 670 // Dump the stack pointer (sp and wsp). in Dump() 676 __ Add(tmp.W(), wsp, 4 * kXRegSizeInBytes); in Dump()
|
H A D | test-assembler-aarch64.cc | 143 // Write wsp using a logical instruction. in TEST() 144 __ Orr(wsp, wzr, 0xfffffff8); in TEST() 147 // Write sp, and read back wsp. in TEST() 149 __ Mov(w5, wsp); in TEST() 151 // Test writing into wsp in cases where the immediate isn't encodable. in TEST() 153 __ Orr(wsp, w5, 0x1234); in TEST() 154 __ Mov(w6, wsp); in TEST()
|
H A D | test-disasm-sve-aarch64.cc | 5539 COMPARE(cpy(z1.VnB(), p2.Merging(), wsp), "mov z1.b, p2/m, wsp"); in TEST() 5550 COMPARE(mov(z1.VnB(), p2.Merging(), wsp), "mov z1.b, p2/m, wsp"); in TEST() 5556 COMPARE_MACRO(Mov(z1.VnB(), p2.Merging(), wsp), "mov z1.b, p2/m, wsp"); in TEST() 5688 COMPARE(dup(z6.VnS(), sp), "mov z6.s, wsp"); in TEST() 5695 COMPARE(mov(z6.VnS(), sp), "mov z6.s, wsp"); in TEST()
|
H A D | test-assembler-sve-aarch64.cc | 6455 __ Cpy(z17.VnH(), pg, wsp); 6456 __ Cpy(z18.VnS(), pg, wsp);
|
/third_party/mksh/ |
H A D | lex.c | 1585 get_brace_var(XString *wsp, char *wp) in get_brace_var() argument 1652 Xcheck(*wsp, wp); in get_brace_var() 1670 Xcheck(*wsp, wp); in get_brace_var()
|
/third_party/ffmpeg/libavcodec/ |
H A D | amrwbdec.c | 874 int wsp = (vad > 0); in find_hb_gain() local 889 return av_clipf((1.0 - tilt) * (1.25 - 0.25 * wsp), 0.1, 1.0); in find_hb_gain()
|
/third_party/python/Lib/email/ |
H A D | _header_value_parser.py | 2756 wsp = '' 2758 wsp = lines[-1][-1] 2760 return wsp
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | register-arm64.h | 457 DEFINE_REGISTER(Register, wsp, kSPRegInternalCode, kWRegSizeInBits);
|
H A D | assembler-arm64-inl.h | 104 return wsp; in WRegFromCode()
|
/third_party/vixl/src/aarch64/ |
H A D | registers-aarch64.h | 912 const Register wsp = WRegister(kSPRegInternalCode);
|
H A D | macro-assembler-aarch64.cc | 960 if (rd.Is(sp) || rd.Is(wsp)) { in Emit()
|