Home
last modified time | relevance | path

Searched refs:dim_y (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/groff/src/preproc/pic/
HDcommon.cpp129 double dim_y = dim.y / 2; in dashed_ellipse() local
164 z = position(dim_x * cos(phi), dim_y * sin(phi)); in dashed_ellipse()
174 double psi = atan2(zdot.y / dim_y, zdot.x / dim_x); in dashed_ellipse()
175 zdot = position(dim_x * cos(psi), dim_y * sin(psi)); in dashed_ellipse()
188 double dim_y = dim.y / 2; in dotted_ellipse() local
216 z = position(dim_x * cos(phi), dim_y * sin(phi)); in dotted_ellipse()
226 double psi = atan2(zdot.y / dim_y, zdot.x / dim_x); in dotted_ellipse()
227 zdot = position(dim_x * cos(psi), dim_y * sin(psi)); in dotted_ellipse()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
HDRenderScriptRuntime.cpp2109 uint32_t dim_y = alloc->dimension.get()->dim_2; in JITAllocationSize() local
2118 if (dim_y == 0) in JITAllocationSize()
2119 dim_y = 1; in JITAllocationSize()
2123 alloc->size = dim_x * dim_y * dim_z * *alloc->element.datum_size.get(); in JITAllocationSize()
2135 dim_y = dim_y == 0 ? 0 : dim_y - 1; in JITAllocationSize()
2139 *alloc->address.get(), dim_x, dim_y, dim_z); in JITAllocationSize()
3248 uint32_t dim_y = alloc->dimension.get()->dim_2; in DumpAllocation() local
3249 dim_y = dim_y == 0 ? 1 : dim_y; in DumpAllocation()
3266 for (uint32_t y = 0; y < dim_y; ++y) { in DumpAllocation()