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

/haiku/src/libs/agg/src/
H A Dagg_image_filters.cpp51 int flip = 1; local
79 flip ^= 1;
80 unsigned idx = flip ? m_diameter/2 + j/2 : m_diameter/2 - j/2;
/haiku/headers/libs/agg/
H A Dagg_renderer_raster_text.h46 void render_text(double x, double y, const CharT* str, bool flip=false) argument
51 m_glyph->prepare(&r, x, y, *str, flip);
55 if(flip)
110 void render_text(double x, double y, const CharT* str, bool flip=false) argument
115 m_glyph->prepare(&r, x, y, *str, !flip);
119 if(flip)
214 void render_text(double x, double y, const CharT* str, bool flip=false) argument
219 m_glyph->prepare(&r, x, y, *str, flip);
224 if(flip)
H A Dagg_glyph_raster_bin.h76 void prepare(glyph_rect* r, double x, double y, unsigned glyph, bool flip) argument
89 if(flip)
H A Dagg_gsv_text.h49 void flip(bool flip_y) { m_flip = flip_y; } function in class:agg::gsv_text
H A Dagg_renderer_markers.h309 int flip = 0; local
321 dx += flip;
322 flip ^= 1;
344 int flip = 0; local
356 dx += flip;
357 flip ^= 1;
379 int flip = 0; local
391 dx += flip;
392 flip ^= 1;
414 int flip local
449 int flip = 0; local
[all...]
/haiku/src/add-ons/translators/raw/
H A DLibRAW.h31 int flip; member in struct:image_meta_info
50 uint32 flip; member in struct:image_data_info
H A DLibRAW.cpp313 info.output_width = S.flip > 4 ? S.iheight : S.iwidth;
314 info.output_height = S.flip > 4 ? S.iwidth : S.iheight;
315 info.flip = S.flip;
H A DRAW.h28 int flip; member in struct:image_meta_info
47 uint32 flip; member in struct:image_data_info
87 int32 _FlipIndex(uint32 row, uint32 col, uint32 flip);
H A Dmain.cpp76 printf("flip: %d\n", meta.flip);
H A DRAWTranslator.cpp277 if (meta.flip != 1) {
281 settings->AddInt32("exif:orientation", meta.flip);
H A DRAW.cpp265 DCRaw::_FlipIndex(uint32 row, uint32 col, uint32 flip) argument
267 if (flip > 4)
269 if (y_flipped(flip))
271 if (x_flipped(flip))
627 fMeta.flip = fRead.Next<uint16>();
2682 uint32 width = image.flip > 4 ? fOutputHeight : fOutputWidth;
2683 uint32 height = image.flip > 4 ? fOutputWidth : fOutputHeight;
2696 int32 sourceOffset = _FlipIndex(0, 0, image.flip);
2697 int32 colStep = _FlipIndex(0, 1, image.flip) - sourceOffset;
2698 int32 rowStep = _FlipIndex(1, 0, image.flip)
[all...]
/haiku/headers/cpp/
H A Dbitset617 // for b[i].flip();
618 reference& flip() {
670 // Versions of single-bit set, reset, flip, test with no range checking.
701 // Set, reset, and flip.
735 bitset<_Nb,_WordT>& flip() {
741 bitset<_Nb,_WordT>& flip(size_t __pos) {
749 return bitset<_Nb,_WordT>(*this).flip();
H A Dstl_bvector.h65 void flip() { *_M_p ^= _M_mask; } function in struct:_Bit_reference

Completed in 102 milliseconds