Searched refs:size2 (Results 1 - 21 of 21) sorted by relevance

/xsrc/external/mit/ctwm/dist/
H A Dwin_utils.c756 static void ConstrainRightBottom(int *value, int size1, int border, int size2);
863 ConstrainRightBottom(int *value, int size1, int border, int size2) argument
865 if(*value + size1 > size2 - border) {
867 *value + size1 < size2 - border + Scr->MoveOffResistance) {
868 *value = size2 - size1 - border;
871 *value + size1 >= size2 - border + Scr->MoveOffResistance) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv50/
H A Dnv84_video.c70 int ret, size1, size2 = 0; local in function:nv84_load_firmwares
75 size2 = filesize(fw2);
76 if (size1 < 0 || size2 < 0)
81 ret = nouveau_bo_new(dev, NOUVEAU_BO_VRAM, 0, dec->vp_fw2_offset + size2, NULL, &fw);
90 ret = nv84_copy_firmware(fw2, fw->map + dec->vp_fw2_offset, size2);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/
H A Dnv84_video.c70 int ret, size1, size2 = 0; local in function:nv84_load_firmwares
75 size2 = filesize(fw2);
76 if (size1 < 0 || size2 < 0)
81 ret = nouveau_bo_new(dev, NOUVEAU_BO_VRAM, 0, dec->vp_fw2_offset + size2, NULL, &fw);
90 ret = nv84_copy_firmware(fw2, fw->map + dec->vp_fw2_offset, size2);
/xsrc/external/mit/MesaLib/dist/src/freedreno/decode/
H A Dpgmdump2.c184 uint32_t size2; /* just to be sure? */ member in struct:header
204 X(hdr, size2);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_build_util.cpp339 int size2 = (baseSize2[mask] >> 12) & 0xf; local in function:nv50_ir::BuildUtil::mkClobber
347 if (size2) {
349 reg->reg.size = size2 << unit;
H A Dnv50_ir_peephole.cpp3914 int32_t size1, size2; local in function:nv50_ir::DeadCodeElim::checkSplitLoad
3926 size1 = size2 = 0;
3955 assert(!size2 || !(addr2 & 0x7));
3957 size2 += def2[n2++]->reg.size;
3980 ld2->setType(typeOfSize(size2));
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_build_util.cpp341 int size2 = (baseSize2[mask] >> 12) & 0xf; local in function:nv50_ir::BuildUtil::mkClobber
349 if (size2) {
351 reg->reg.size = size2 << unit;
H A Dnv50_ir_peephole.cpp3992 int32_t size1, size2; local in function:nv50_ir::DeadCodeElim::checkSplitLoad
4004 size1 = size2 = 0;
4033 assert(!size2 || !(addr2 & 0x7));
4035 size2 += def2[n2++]->reg.size;
4058 ld2->setType(typeOfSize(size2));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_emit.c938 unsigned size1, size2, offset1, offset2, stride1, stride2; local in function:r300_emit_vertex_arrays
951 size2 = hw_format_size[i+1];
954 R300_VBPNTR_SIZE1(size2) | R300_VBPNTR_STRIDE1(vb2->stride));
977 size2 = hw_format_size[i+1];
997 R300_VBPNTR_SIZE1(size2) | R300_VBPNTR_STRIDE1(stride2));
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
H A Dr300_emit.c941 unsigned size1, size2, offset1, offset2, stride1, stride2; local in function:r300_emit_vertex_arrays
954 size2 = hw_format_size[i+1];
957 R300_VBPNTR_SIZE1(size2) | R300_VBPNTR_STRIDE1(vb2->stride));
980 size2 = hw_format_size[i+1];
1000 R300_VBPNTR_SIZE1(size2) | R300_VBPNTR_STRIDE1(stride2));
/xsrc/external/mit/xedit/dist/lisp/mp/
H A Dmpi.c1210 BNI size, size1, size2; local in function:mpi_log
1217 size2 = op2->size;
1224 size = MAX(size1, size2);
1250 if (i >= size2)
/xsrc/external/mit/xf86-video-geode/dist/src/cim/
H A Dcim_gp.c2313 unsigned long dstoff2, size2, org2; local in function:gp_mono_expand_blt
2317 size2 = ((width + srcx - 8) << 16) | 1;
2344 WRITE_COMMAND32(GP3_BLT_WID_HEIGHT, size2);
2345 WRITE_COMMAND32(GP3_BLT_CH3_WIDHI, size2);
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
H A Dradv_formats.c2059 unsigned size1, size2; local in function:radv_dcc_formats_compatible
2078 radv_get_dcc_channel_type(desc2, &type2, &size2);
2081 (type1 == dcc_channel_float) != (type2 == dcc_channel_float) || size1 != size2)
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_internal.h1474 IMGUI_API bool SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f, float hover_visibility_delay = 0.0f);
H A Dimgui_widgets.cpp1207 bool ImGui::SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend, float hover_visibility_delay) argument
1237 float size_2_maximum_delta = ImMax(0.0f, *size2 - min_size2);
1249 IM_ASSERT(*size2 - mouse_delta >= min_size2);
1251 *size2 -= mouse_delta;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_internal.h1474 IMGUI_API bool SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f, float hover_visibility_delay = 0.0f);
H A Dimgui_widgets.cpp1207 bool ImGui::SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend, float hover_visibility_delay) argument
1237 float size_2_maximum_delta = ImMax(0.0f, *size2 - min_size2);
1249 IM_ASSERT(*size2 - mouse_delta >= min_size2);
1251 *size2 -= mouse_delta;
/xsrc/external/mit/MesaLib.old/dist/include/CL/
H A Dcl2.hpp5579 NDRange(size_type size0, size_type size1, size_type size2) argument
5584 sizes_[2] = size2;
H A Dcl.hpp4794 NDRange(::size_t size0, ::size_t size1, ::size_t size2) argument
4799 sizes_[2] = size2;
/xsrc/external/mit/MesaLib/dist/include/CL/
H A Dcl2.hpp5723 NDRange(size_type size0, size_type size1, size_type size2) argument
5728 sizes_[2] = size2;
H A Dcl.hpp4794 NDRange(::size_t size0, ::size_t size1, ::size_t size2) argument
4799 sizes_[2] = size2;

Completed in 134 milliseconds