Lines Matching refs:name

44 #define xtzalloc(name) ((decltype(&name)) calloc(1, sizeof(name)))
45 #define xtalloc(name) ((decltype(&name)) malloc(sizeof(name)))
238 char name[128];
382 snprintf(window->base.name, sizeof(window->base.name),
445 snprintf(window->base.name, sizeof(window->base.name),
517 snprintf(window->base.name, sizeof(window->base.name),
618 snprintf(window->base.name, sizeof(window->base.name),
638 char name[40];
639 snprintf(name, sizeof(name), "command filter##%p", &cfg->command_filter);
640 cfg->command_filter.Draw(name); ImGui::SameLine();
641 snprintf(name, sizeof(name), "field filter##%p", &cfg->field_filter);
642 cfg->field_filter.Draw(name); ImGui::SameLine();
804 snprintf(window->base.name, sizeof(window->base.name),
847 if (filter.PassFilter(reg->name) &&
848 ImGui::CollapsingHeader(reg->name)) {
851 ImGui::Text("%s : %i -> %i\n", field->name, field->start, field->end);
869 snprintf(window->name, sizeof(window->name), "Registers");
886 cmd_filter.Draw("name filter");
902 if ((cmd_filter.PassFilter(cmd->name) &&
904 ImGui::CollapsingHeader(cmd->name)) {
916 if (field_filter.PassFilter(field->name))
917 ImGui::Text("%s : %i -> %i\n", field->name, field->start, field->end);
924 if (cmd_filter.PassFilter(cmd->name) && opcode_len == 0 &&
925 ImGui::CollapsingHeader(cmd->name)) {
934 if (field_filter.PassFilter(field->name))
935 ImGui::Text("%s : %i -> %i\n", field->name, field->start, field->end);
953 snprintf(window->name, sizeof(window->name), "Commands & structs");
1006 ImGui::Text("File name: %s", context.input_file);
1010 ImGui::Text("Application name: %s", context.file->app_name);
1011 ImGui::Text("%s", context.file->devinfo.name);
1050 snprintf(window->name, sizeof(window->name),
1091 if (ImGui::Begin(window->name, &window->opened)) {