Searched refs:skew (Results 1 - 25 of 25) sorted by relevance

/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DCoordinateSystem.py49 skew = CGAffineTransformMake(1, math.tan(alpha), math.tan(beta), 1, 0, 0)
51 CGContextConcatCTM(context, skew)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DCoordinateSystem.py49 skew = CGAffineTransformMake(1, math.tan(alpha), math.tan(beta), 1, 0, 0)
51 CGContextConcatCTM(context, skew)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DCoordinateSystem.py49 skew = CGAffineTransformMake(1, math.tan(alpha), math.tan(beta), 1, 0, 0)
51 CGContextConcatCTM(context, skew)
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Dpunycode.c43 static const unsigned skew = 38; variable
69 return k + (((base - t_min + 1) * delta) / (delta + skew));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DFontPlatformDataCairoWin.cpp84 cairo_matrix_t skew = {1, 0, syntheticObliqueSkew, 1, 0, 0}; local
85 cairo_matrix_multiply(&fontMatrix, &skew, &fontMatrix);
H A DFontCGWin.cpp171 static float skew = -tanf(syntheticObliqueAngle * piFloat / 180.0f); local
172 matrix = CGAffineTransformConcat(matrix, CGAffineTransformMake(1, 0, skew, 1, 0, 0));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DSkewTransformOperation.h51 transform.skew(m_angleX, m_angleY);
H A DTransformationMatrix.h243 TransformationMatrix& skew(double angleX, double angleY);
244 TransformationMatrix& skewX(double angle) { return skew(angle, 0); }
245 TransformationMatrix& skewY(double angle) { return skew(0, angle); }
H A DAffineTransform.h107 AffineTransform& skew(double angleX, double angleY);
H A DAffineTransform.cpp210 AffineTransform& AffineTransform::skew(double angleX, double angleY) function in class:WebCore::AffineTransform
H A DTransformationMatrix.cpp1001 TransformationMatrix& TransformationMatrix::skew(double sx, double sy) function in class:WebCore::TransformationMatrix
1650 // Apply skew.
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/ntp/
H A Drdate.tcl23 -a Use the adjtime(2) call to gradually skew the local time to the
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dpunyref.c49 enum { base = 36, tmin = 1, tmax = 26, skew = 38, damp = 700, enumerator in enum:__anon1180
121 return k + (base - tmin + 1) * delta / (delta + skew);
/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Di386_timer.c267 timer_resort_threshold(uint64_t skew) { argument
268 if (skew >= TIMER_RESORT_THRESHOLD_ABSTIME)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/freetype/
H A DFontPlatformDataFreeType.cpp320 cairo_matrix_t skew = {1, 0, syntheticObliqueSkew, 1, 0, 0}; local
321 cairo_matrix_multiply(&fontMatrix, &skew, &fontMatrix);
/macosx-10.10/vim-55/runtime/syntax/
H A Ddot.vim46 syn keyword dotType shape shapefile sides skew width
H A Dplaintex.vim82 \ '\\\%([!*,;>{}|_^]\|\%([aA]rrowvert\|[bB]ig\%(g[lmr]\=\|r\)\=\|\%(border\|p\)\=matrix\|displaylines\|\%(down\|up\)bracefill\|eqalign\%(no\)\|leqalignno\|[lr]moustache\|mathpalette\|root\|s[bp]\|skew\|sqrt\)\>\)'
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_getimage.c1030 #define SKEW(r,g,b,skew) { r += skew; g += skew; b += skew; }
1031 #define SKEW4(r,g,b,a,skew) { r += skew; g += skew; b += skew; a+= skew; }
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Dkssl.c1959 krb5_deltat skew; local
1965 skew = get_rc_clockskew(context);
1969 if (atime && labs(atime - now) >= skew) return SSL_R_KRB5_S_TKT_SKEW;
1974 if (start - now > skew) return SSL_R_KRB5_S_TKT_NYV;
1975 if ((now - ttimes->endtime) > skew) return SSL_R_KRB5_S_TKT_EXPIRED;
1979 start, atime, now, skew, ttimes->endtime);
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Dnode.h71 virtual hunits skew();
472 hunits skew();
H A Dnode.cpp1839 hunits skew();
2119 hunits glyph_node::skew() function in class:glyph_node
2602 hunits skew();
2655 hunits italic_corrected_node::skew() function in class:italic_corrected_node
2657 return n->skew() - x/2;
3379 hunits node::skew() function in class:node
5433 hunits left_italic_corrected_node::skew() function in class:left_italic_corrected_node
5435 return n ? n->skew() + x/2 : H0;
/macosx-10.10/Heimdal-398.1.2/tools/
H A Dkdc-log-analyze.pl480 } elsif (/Too large time skew -- (.*)$/) {
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dthread_call.c1437 uint64_t skew = call->tc_call.deadline - call->tc_soft_deadline; local
1443 if (timer_resort_threshold(skew)) {
H A Dtimer_call.c881 int64_t skew = TCE(call)->deadline - call->soft_deadline; local
894 if (timer_resort_threshold(skew)) {
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn.tex1668 is no skew on the least significant bits.

Completed in 253 milliseconds