Searched defs:expr (Results 1 - 4 of 4) sorted by last modified time

/art/tools/cpp-define-generator/
H A Dmain.cc67 void emit_check_eq(T value, const std::string& expr) { argument
68 std::cout << "DEFINE_CHECK_EQ(" << value << ", (" << expr << "))" << std::endl;
106 #define DEFINE_EXPR(macro_name, field_type, expr) \
107 cpp_define(to_upper(#macro_name), static_cast<field_type>(expr)); \
109 "static_cast<" #field_type ">(" #expr ")");
/art/compiler/debug/dwarf/
H A Ddebug_frame_opcode_writer.h251 void ALWAYS_INLINE DefCFAExpression(uint8_t* expr, int expr_size) { argument
257 this->PushData(expr, expr_size);
261 void ALWAYS_INLINE Expression(Reg reg, uint8_t* expr, int expr_size) { argument
268 this->PushData(expr, expr_size);
272 void ALWAYS_INLINE ValExpression(Reg reg, uint8_t* expr, int expr_size) { argument
279 this->PushData(expr, expr_size);
H A Ddebug_info_entry_writer.h101 void WriteExprLoc(Attribute attrib, const Expression& expr) { argument
103 this->PushUleb128(dchecked_integral_cast<uint32_t>(expr.size()));
104 this->PushData(expr.data());
H A Ddwarf_test.cc70 uint8_t expr[] = { 0 }; local
71 opcodes.DefCFAExpression(expr, arraysize(expr));
91 opcodes.Expression(reg, expr, arraysize(expr));
93 opcodes.ValExpression(reg, expr, arraysize(expr));

Completed in 97 milliseconds