Home
last modified time | relevance | path

Searched refs:pos_ex (Results 1 – 7 of 7) sorted by relevance

/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dtilebuf.cc126 float pos_ex, pos_ey, tex_sx, tex_sy, tex_ex, tex_ey; in add_unscaled() local
129 pos_sx, pos_sy, pos_ex, pos_ey, in add_unscaled()
136 GLWPrim rect(pos_sx, pos_sy, pos_ex, pos_ey); in add_unscaled()
146 float pos_ex, pos_ey, tex_sx, tex_sy, tex_ex, tex_ey; in add() local
149 pos_sx, pos_sy, pos_ex, pos_ey, in add()
156 GLWPrim rect(pos_sx, pos_sy, pos_ex, pos_ey); in add()
192 float pos_ex, pos_ey, tex_sx, tex_sy, tex_ex, tex_ey; in add() local
195 pos_sx, pos_sy, pos_ex, pos_ey, in add()
216 GLWPrim rect(pos_sx, pos_sy, pos_ex, pos_ey, pos_z); in add()
297 GLWPrim rect(pos_sx, pos_sy, pos_ex, pos_ey); in add()
[all …]
H A Dtiletex.h59 float &pos_ex, float &pos_ey,
78 float &pos_ex, float &pos_ey, in get_coords() argument
110 pos_ex = pos_sx + (inf.ex - inf.sx) / tile_x; in get_coords()
H A Dglwrapper.h76 pos_sx(sx), pos_sy(sy), pos_ex(ex), pos_ey(ey), pos_z(z), in pos_sx()
100 float pos_sx, pos_sy, pos_ex, pos_ey, pos_z; variable
H A Dtilereg-map.cc88 float pos_ex = (m_win_end.x - m_min_gx); in pack_buffers() local
92 m_buf_lines.add_square(pos_sx*dx, pos_sy*dy, pos_ex*dx + 1, pos_ey*dy + 1, in pack_buffers()
H A Dglwrapper-ogl.cc598 m_position_buffer[last + 2].set(rect.pos_ex, rect.pos_sy, rect.pos_z); in add_rect()
599 m_position_buffer[last + 3].set(rect.pos_ex, rect.pos_ey, rect.pos_z); in add_rect()
661 m_position_buffer[last + 1].set(rect.pos_ex, rect.pos_ey, rect.pos_z); in add_line()
H A Dfontwrapper-ft.cc838 float pos_ex = pos_sx + this_width * density_mult; in store() local
847 GLWPrim rect(pos_sx, pos_sy, pos_ex, pos_ey); in store()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/xfeatures2d/samples/
H A Dbagofwords_classification.cpp2312 int pos_ex = (int)std::count( objectPresent.begin(), objectPresent.end(), (char)1 ); in removeBowImageDescriptorsByCount() local
2322 … if( (static_cast<float>(pos_ex)/static_cast<float>(neg_ex+pos_ex) < svmParamsExt.targetRatio) && in removeBowImageDescriptorsByCount()
2326 { pos_ex--; } in removeBowImageDescriptorsByCount()
2342 int pos_ex = countNonZero(responses == 1); in setSVMParams() local
2344 …cout << pos_ex << " positive training samples; " << neg_ex << " negative training samples" << endl; in setSVMParams()
2356 …class_wts.at<float>(0) = static_cast<float>(pos_ex)/static_cast<float>(pos_ex+neg_ex); // weightin… in setSVMParams()
2357 …class_wts.at<float>(1) = static_cast<float>(neg_ex)/static_cast<float>(pos_ex+neg_ex); // weightin… in setSVMParams()
2361 class_wts.at<float>(0) = static_cast<float>(neg_ex)/static_cast<float>(pos_ex+neg_ex); in setSVMParams()
2362 class_wts.at<float>(1) = static_cast<float>(pos_ex)/static_cast<float>(pos_ex+neg_ex); in setSVMParams()