Searched refs:text_size (Results 1 - 13 of 13) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/
H A Dglcpp.c51 size_t text_size = 0; local in function:load_text_fp
56 if (total_read + CHUNK + 1 > text_size) {
57 text_size = text_size ? text_size * 2 : CHUNK + 1;
58 text = reralloc_size (ctx, text, text_size);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/
H A Dglcpp.c51 size_t text_size = 0; local in function:load_text_fp
56 if (total_read + CHUNK + 1 > text_size) {
57 text_size = text_size ? text_size * 2 : CHUNK + 1;
58 text = reralloc_size (ctx, text, text_size);
/xsrc/external/mit/MesaLib/dist/src/amd/common/
H A Dac_rgp_elf_object_pack.c228 uint32_t *text_size)
264 *text_size = symbol_offset + align;
381 uint32_t text_size = 0; local in function:ac_rgp_file_write_elf_object
411 ac_rgp_file_write_elf_text(output, &elf_size_calc, record, &text_size);
448 sec_hdr[2].sh_size = text_size;
226 ac_rgp_file_write_elf_text(FILE * output,uint32_t * elf_size_calc,struct rgp_code_object_record * record,uint32_t * text_size) argument
/xsrc/external/mit/libXv/dist/src/
H A DXv.c858 (rep.text_size < (INT_MAX / 2) - 1)) {
862 rep.text_size + 1;
871 unsigned long size = rep.text_size;
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_draw.cpp2649 ImVec2 text_size = ImVec2(0,0); local in function:ImFont::CalcTextSizeA
2670 if (text_size.x < line_width)
2671 text_size.x = line_width;
2672 text_size.y += line_height;
2704 text_size.x = ImMax(text_size.x, line_width);
2705 text_size.y += line_height;
2723 if (text_size.x < line_width)
2724 text_size.x = line_width;
2726 if (line_width > 0 || text_size
[all...]
H A Dimgui_widgets.cpp152 ImVec2 text_size(0,0); local in function:ImGui::TextUnformatted
190 text_size.x = ImMax(text_size.x, line_size.x);
211 text_size.y += (pos - text_pos).y;
214 ImRect bb(text_pos, text_pos + text_size);
215 ItemSize(text_size);
221 const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width); local in function:ImGui::TextUnformatted
224 ImRect bb(text_pos, text_pos + text_size);
225 ItemSize(text_size);
2859 ImVec2 text_size local in function:InputTextCalcTextSizeW
3623 ImVec2 text_size(0.f, 0.f); local in function:ImGui::InputTextEx
[all...]
H A Dimgui.cpp2333 const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f); local in function:ImGui::RenderTextClippedEx
2337 bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y);
2342 if (align.x > 0.0f) pos.x = ImMax(pos.x, pos.x + (pos_max.x - pos.x - text_size.x) * align.x);
2343 if (align.y > 0.0f) pos.y = ImMax(pos.y, pos.y + (pos_max.y - pos.y - text_size.y) * align.y);
3912 ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL); local in function:ImGui::CalcTextSize
3915 text_size.x = (float)(int)(text_size.x + 0.95f);
3917 return text_size;
5396 ImVec2 text_size local in function:ImGui::Begin
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_draw.cpp2649 ImVec2 text_size = ImVec2(0,0); local in function:ImFont::CalcTextSizeA
2670 if (text_size.x < line_width)
2671 text_size.x = line_width;
2672 text_size.y += line_height;
2704 text_size.x = ImMax(text_size.x, line_width);
2705 text_size.y += line_height;
2723 if (text_size.x < line_width)
2724 text_size.x = line_width;
2726 if (line_width > 0 || text_size
[all...]
H A Dimgui_widgets.cpp152 ImVec2 text_size(0,0); local in function:ImGui::TextUnformatted
190 text_size.x = ImMax(text_size.x, line_size.x);
211 text_size.y += (pos - text_pos).y;
214 ImRect bb(text_pos, text_pos + text_size);
215 ItemSize(text_size);
221 const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width); local in function:ImGui::TextUnformatted
224 ImRect bb(text_pos, text_pos + text_size);
225 ItemSize(text_size);
2859 ImVec2 text_size local in function:InputTextCalcTextSizeW
3623 ImVec2 text_size(0.f, 0.f); local in function:ImGui::InputTextEx
[all...]
H A Dimgui.cpp2333 const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f); local in function:ImGui::RenderTextClippedEx
2337 bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y);
2342 if (align.x > 0.0f) pos.x = ImMax(pos.x, pos.x + (pos_max.x - pos.x - text_size.x) * align.x);
2343 if (align.y > 0.0f) pos.y = ImMax(pos.y, pos.y + (pos_max.y - pos.y - text_size.y) * align.y);
3912 ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL); local in function:ImGui::CalcTextSize
3915 text_size.x = (float)(int)(text_size.x + 0.95f);
3917 return text_size;
5396 ImVec2 text_size local in function:ImGui::Begin
[all...]
/xsrc/external/mit/xorgproto/dist/include/X11/extensions/
H A DXvproto.h520 CARD32 text_size; member in struct:__anon348c008f1e08
/xsrc/external/mit/xorg-server/dist/Xext/
H A Dxvdisp.c209 swapl(&rep->text_size);
785 .text_size = 0
790 rep.text_size += pad_to_int32(strlen(pAtt->name) + 1);
794 + rep.text_size;
/xsrc/external/mit/xorg-server.old/dist/Xext/
H A Dxvdisp.c254 swapl(&rep->text_size, n);
920 rep.text_size = 0;
925 rep.text_size += pad_to_int32(strlen(pAtt->name) + 1);
929 + rep.text_size;

Completed in 58 milliseconds