| /xsrc/external/mit/xorg-server.old/dist/Xext/ |
| H A D | security.c | 673 int values_offset; local in function:SProcSecurityGenerateAuthorization 680 values_offset = bytes_to_int32(stuff->nbytesAuthProto) + 682 if (values_offset > 685 values = (CARD32 *)(&stuff[1]) + values_offset;
|
| /xsrc/external/mit/xorg-server/dist/Xext/ |
| H A D | security.c | 622 int values_offset; local in function:SProcSecurityGenerateAuthorization 629 values_offset = bytes_to_int32(stuff->nbytesAuthProto) + 631 if (values_offset > 634 values = (CARD32 *) (&stuff[1]) + values_offset;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/ |
| H A D | eg_debug.c | 101 const int *values_offsets = egd_strings_offsets + field->values_offset;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/ |
| H A D | eg_debug.c | 101 const int *values_offsets = egd_strings_offsets + field->values_offset;
|
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui.h | 506 IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); 507 IMGUI_API void PlotLines(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0)); 508 IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); 509 IMGUI_API void PlotHistogram(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0));
|
| H A D | imgui_widgets.cpp | 5249 void ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_size) argument 5305 const float v0 = values_getter(data, (v_idx + values_offset) % values_count); 5306 const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); 5317 float v0 = values_getter(data, (0 + values_offset) % values_count); 5330 const float v1 = values_getter(data, (v1_idx + values_offset + 1) % values_count); 5375 void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) argument 5378 PlotEx(ImGuiPlotType_Lines, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); 5381 void ImGui::PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) argument 5383 PlotEx(ImGuiPlotType_Lines, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); 5386 void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, cons argument 5392 PlotHistogram(const char * label,float (* values_getter)(void * data,int idx),void * data,int values_count,int values_offset,const char * overlay_text,float scale_min,float scale_max,ImVec2 graph_size) argument [all...] |
| H A D | imgui_demo.cpp | 974 static int values_offset = 0; local in function:ShowDemoWindowWidgets 981 values[values_offset] = cosf(phase); 982 values_offset = (values_offset+1) % IM_ARRAYSIZE(values); 983 phase += 0.10f*values_offset; 986 ImGui::PlotLines("Lines", values, IM_ARRAYSIZE(values), values_offset, "avg 0.0", -1.0f, 1.0f, ImVec2(0,80));
|
| H A D | imgui_internal.h | 1497 IMGUI_API void PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_size);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.h | 506 IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); 507 IMGUI_API void PlotLines(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0)); 508 IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); 509 IMGUI_API void PlotHistogram(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0));
|
| H A D | imgui_widgets.cpp | 5249 void ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_size) argument 5305 const float v0 = values_getter(data, (v_idx + values_offset) % values_count); 5306 const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); 5317 float v0 = values_getter(data, (0 + values_offset) % values_count); 5330 const float v1 = values_getter(data, (v1_idx + values_offset + 1) % values_count); 5375 void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) argument 5378 PlotEx(ImGuiPlotType_Lines, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); 5381 void ImGui::PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) argument 5383 PlotEx(ImGuiPlotType_Lines, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); 5386 void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, cons argument 5392 PlotHistogram(const char * label,float (* values_getter)(void * data,int idx),void * data,int values_count,int values_offset,const char * overlay_text,float scale_min,float scale_max,ImVec2 graph_size) argument [all...] |
| H A D | imgui_internal.h | 1497 IMGUI_API void PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_size);
|
| /xsrc/external/mit/MesaLib.old/src/gallium/drivers/r600/ |
| H A D | egd_tables.h | 34 unsigned values_offset; /* offset into eg_strings_offsets */ member in struct:eg_field
|
| /xsrc/external/mit/MesaLib/src/gallium/drivers/r600/ |
| H A D | egd_tables.h | 34 unsigned values_offset; /* offset into eg_strings_offsets */ member in struct:eg_field
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/common/ |
| H A D | ac_debug.c | 142 const int *values_offsets = sid_strings_offsets + field->values_offset;
|
| /xsrc/external/mit/MesaLib/dist/src/amd/common/ |
| H A D | ac_debug.c | 181 const int *values_offsets = sid_strings_offsets + field->values_offset;
|
| /xsrc/external/mit/MesaLib.old/src/amd/common/ |
| H A D | sid_tables.h | 34 unsigned values_offset; /* offset into sid_strings_offsets */ member in struct:si_field
|
| /xsrc/external/mit/MesaLib/src/amd/common/ |
| H A D | sid_tables.h | 34 unsigned values_offset; /* offset into sid_strings_offsets */ member in struct:si_field [all...] |