Lines Matching refs:uint32_t

106     Array<uint32_t> cntrs;          //the contour end points
122 uint32_t alloc;
123 uint32_t size;
156 uint32_t* ctable;
165 uint32_t ptsCnt;
166 uint32_t maxPts;
207 uint32_t cnt = 0;
230 uint32_t* buf32; //for explicit 32bits channels
233 uint32_t w, h, stride;
244 typedef uint32_t(*SwBlender)(uint32_t s, uint32_t d, uint8_t a); //src, dst, alpha
245 typedef uint32_t(*SwJoin)(uint8_t r, uint8_t g, uint8_t b, uint8_t a); //color channel join
300 static inline uint32_t JOIN(uint8_t c0, uint8_t c1, uint8_t c2, uint8_t c3) in JOIN()
305 static inline uint32_t ALPHA_BLEND(uint32_t c, uint32_t a) in ALPHA_BLEND()
311 static inline uint32_t INTERPOLATE(uint32_t s, uint32_t d, uint8_t a) in INTERPOLATE()
326 static inline uint8_t A(uint32_t c) in A()
331 static inline uint8_t IA(uint32_t c) in IA()
336 static inline uint8_t C1(uint32_t c) in C1()
341 static inline uint8_t C2(uint32_t c) in C2()
346 static inline uint8_t C3(uint32_t c) in C3()
351 static inline uint32_t opBlendInterp(uint32_t s, uint32_t d, uint8_t a) in opBlendInterp()
356 static inline uint32_t opBlendNormal(uint32_t s, uint32_t d, uint8_t a) in opBlendNormal()
362 static inline uint32_t opBlendPreNormal(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendPreNormal()
367 static inline uint32_t opBlendSrcOver(uint32_t s, TVG_UNUSED uint32_t d, TVG_UNUSED uint8_t a) in opBlendSrcOver()
373 static inline uint32_t opBlendDifference(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendDifference()
383 static inline uint32_t opBlendExclusion(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendExclusion()
392 static inline uint32_t opBlendAdd(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendAdd()
401 static inline uint32_t opBlendScreen(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendScreen()
410 static inline uint32_t opBlendMultiply(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendMultiply()
419 static inline uint32_t opBlendOverlay(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendOverlay()
429 static inline uint32_t opBlendDarken(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendDarken()
438 static inline uint32_t opBlendLighten(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendLighten()
447 static inline uint32_t opBlendColorDodge(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendColorDodge()
457 static inline uint32_t opBlendColorBurn(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendColorBurn()
467 static inline uint32_t opBlendHardLight(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendHardLight()
475 static inline uint32_t opBlendSoftLight(uint32_t s, uint32_t d, TVG_UNUSED uint8_t a) in opBlendSoftLight()
507 void shapeDelOutline(SwShape* shape, SwMpool* mpool, uint32_t tid);
526 void imageDelOutline(SwImage* image, SwMpool* mpool, uint32_t tid);
536 void fillLinear(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, SwMask mask…
537 void fillLinear(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, uint8_t* cm…
538 void fillLinear(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender …
539 void fillLinear(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender …
540 void fillLinear(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, uint8_t* c…
542 void fillRadial(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, SwMask op, …
543 void fillRadial(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, uint8_t* cm…
544 void fillRadial(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender …
545 void fillRadial(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender …
546 void fillRadial(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, uint8_t* c…
556 SwMpool* mpoolInit(uint32_t threads);
572 bool rasterClear(SwSurface* surface, uint32_t x, uint32_t y, uint32_t w, uint32_t h, pixel_t val = …
573 void rasterPixel32(uint32_t *dst, uint32_t val, uint32_t offset, int32_t len);
574 void rasterGrayscale8(uint8_t *dst, uint8_t val, uint32_t offset, int32_t len);
575 void rasterXYFlip(uint32_t* src, uint32_t* dst, int32_t stride, int32_t w, int32_t h, const SwBBox&…