Searched refs:UpdateValue (Results 1 - 5 of 5) sorted by relevance
/third_party/vixl/examples/aarch64/ |
H A D | literal.cc | 77 automatically_placed_literal.UpdateValue(a, code); in LiteralExample() 78 manually_placed_literal.UpdateValue(b, code); in LiteralExample()
|
/third_party/vixl/src/aarch32/ |
H A D | location-aarch32.h | 438 void UpdateValue(const T& value, CodeBuffer* buffer) { in UpdateValue() function in vixl::aarch32::Literal
|
/third_party/vixl/src/aarch64/ |
H A D | assembler-aarch64.h | 317 UpdateValue(value); in Literal() 326 UpdateValue(high64, low64); in Literal() 337 void UpdateValue(T new_value, uint8_t* code_buffer = NULL) { in UpdateValue() function in vixl::aarch64::Literal 346 void UpdateValue(T high64, T low64, uint8_t* code_buffer = NULL) { in UpdateValue() function in vixl::aarch64::Literal 356 void UpdateValue(T new_value, const Assembler* assembler); 357 void UpdateValue(T high64, T low64, const Assembler* assembler); 8325 void Literal<T>::UpdateValue(T new_value, const Assembler* assembler) { 8326 return UpdateValue(new_value, 8332 void Literal<T>::UpdateValue(T high64, T low64, const Assembler* assembler) { 8333 return UpdateValue(high6 [all...] |
/third_party/vixl/test/aarch32/ |
H A D | test-assembler-aarch32.cc | 2732 a32->UpdateValue(0x12345678, masm.GetBuffer()); in TEST() 2733 a64->UpdateValue(UINT64_C(0x13579bdf02468ace), masm.GetBuffer()); in TEST() 2734 b32->UpdateValue(0x87654321, masm.GetBuffer()); in TEST() 2735 b64->UpdateValue(UINT64_C(0x1032547698badcfe), masm.GetBuffer()); in TEST()
|
/third_party/vixl/test/aarch64/ |
H A D | test-assembler-aarch64.cc | 13457 lit_32_update_before_pool.UpdateValue(32); 13458 lit_64_update_before_pool.UpdateValue(64); 13469 lit_32_update_after_pool.UpdateValue(128, &masm); 13470 lit_64_update_after_pool.UpdateValue(256, &masm); 13508 lit_manual.UpdateValue(32); 13509 lit_deleted_on_placement->UpdateValue(64); 13519 lit_deleted_on_pool_destruction->UpdateValue(128, &masm);
|
Completed in 26 milliseconds